Skip to main content

Posts

Showing posts from March, 2022

Importants Links of Leetcode

  Here are all the important discussion posts which contain brief descriptions about a topic with its problem list. Recursion:- A.   https://leetcode.com/tag/recursion/discuss/1733447/Become-Master-In-Recursion Binary Tree and Binary Search Tree:- A.   https://leetcode.com/tag/binary-tree/discuss/1212004/Binary-Trees-study-guide B.   https://leetcode.com/tag/binary-tree/discuss/1820334/Become-Master-in-Tree C.   https://leetcode.com/tag/binary-tree/discuss/1094690/Views-and-Traversal-of-binary-tree-or-Important-topics-or-Must-Read-%3A- ) Dynamic Programming:- A.   https://leetcode.com/discuss/study-guide/458695/Dynamic-Programming-Patterns B.   https://leetcode.com/tag/dynamic-programming/discuss/1437879/Dynamic-Programming-Patterns C.   https://leetcode.com/tag/dynamic-programming/discuss/662866/DP-for-Beginners-Problems-or-Patterns-or-Sample-Solutions D.   https://leetcode.com/tag/dynamic-programming/discuss/1050391/Must-do-Dynamic-programm...

OBJECT-ORIENTED PROGRAMMING

  What is OBJECT-ORIENTED PROGRAMMING? Object-oriented programming is a programming paradigm built on the concept of objects. In Other Words, it is an approach to problem-solving where all computations are carried out using objects. Program is divided into small parts called objects. Object-oriented programming follows a bottom-up approach. Have access specifiers like private, public, protected, etc. Adding new data and functions is easy. Provides data hiding so it is more secure than procedural programming. Overloading is possible in object-oriented programming. Data is more important than function. Provides the ability to simulate real-world Examples: C++, Java, Python, C#, JavaScript, Ruby, PHP,   VB.NE TERMINOLOGIES Class   - A class is a group of objects that share common properties and   behavior.It   is a blueprint or template from which objects are created. Object - Object is any real-world entity that can have some characteristics or which can perform s...