Top 20 coding patterns
The top 20 coding patterns enhance our “ability to map a new problem to an already known problem.” Here are the 20 coding patterns: 1.… Read More »Top 20 coding patterns
The top 20 coding patterns enhance our “ability to map a new problem to an already known problem.” Here are the 20 coding patterns: 1.… Read More »Top 20 coding patterns
Here are some SQL optimization Tips.
Roadmap to Learn DSA (Data Structure and Algorithms) from scratch in 5 steps. The complete process to learn DSA from scratch can be broken into 5… Read More »Roadmap to Learn DSA (Data Structure and Algorithms)
here are the basic Data structures and algorithms questions ARRAYS LINKED LIST STRINGS BINARY TREE MISCELLANEOUS
Learn about API basics in 2 minutes. What is API The API or Application Programming Interface is a set of rules and standards that allow… Read More »API basics
Python Named Tuples are basically like normal tuples but you can access their value with .fildname. Named tuples are also immutable. Named tuples are easy-to-create,… Read More »Python Named Tuples | Infographic
All Keywords in Python language. as as is used to create an alias while importing a module. It means giving a different name (user-defined) to… Read More »Python Keywords | Infographic
Sorting Algorithm is the process of arranging the elements of an array so that they can be placed either in ascending or descending order. Heap… Read More »Sorting Algorithm | Infographic
Avoid these coding mistakes and save this for later. I have made many mistakes while learning in the past. It is how I learned to… Read More »Avoid these coding mistakes | Infographic
OOPS Concepts With Real-Time Abstraction, encapsulation, polymorphism, and inheritance are the four main theoretical principles of object-oriented programming. Inheritance: The cats can have the same… Read More »OOPS Concepts With Real Time Examples | Infographic