Priyanka Yadavpriyanka488.hashnode.net·Oct 20, 2020FeaturedUnderstand Procedural vs OOPS Programming - once and for allI recently noticed that Hashnode calls its write-ups as stories!! So here's my effort of bringing up the concept of Traditional Procedural Programming vs Object-Oriented Programming in the form of a story. There were 2 associates - Harvey and Louis(...Shad Mirza and 9 others are discussing this10 people are discussing thisDiscuss·132 likes·770 readsLow Level Design2Articles1Week
Payal Kherajanipayalkherajani.hashnode.net·Jun 28, 2021All IN ONE! OOPS, IN JSExcited! Let's start then... What is Object? An object is a collection of related data and functionality. Object in JS is used to model real-world objects for eg: car, birds etc with properties and behaviour. For example, const person = { na...Discuss·78 likes·1.6K readsJavaScript
Utsav Kumaryouteee.hashnode.net·Aug 20, 2021Introduction to JavaScript PrototypesObjects are pretty foundational in many programming languages. In this article, we will look at a few of the programming patterns for instantiating JavaScript objects, and while doing that we will try to understand the concept of JavaScript Prototype...Discuss·39 likes·420 readsJavaScript BasicsclassesPretty Insightful. 3
Meeta HaldarforMeeta Haldar's blogmeetahaldar.hashnode.net·Apr 25, 2023C++ OOPS concepts in briefWelcome to my first blog!! Give it a go 🎉 What is oops? OOPs stands for Object-Oriented Programming, which is a programming paradigm that focuses on objects that have properties and behaviors. C++ is an object-oriented programming language, which me...DiscussOOPS
Lizaliza786.hashnode.net·Apr 24, 2023Inheritance in OOPsInheritance is a very important concept in Object Oriented Programming language (OOPs). Object Oriented Programming Language is a paradigm of programming that deals with classes and objects. Generally, what does Inheritance mean? Inheritance is nothi...Discussinheritance
Manik Mehtadmanika27.hashnode.net·Apr 24, 2023Designing a Car in Java (Interfaces Explained)Today we will design a car in Java by using Interfaces. Firstly I should define What interface is and How to use it. As we know that in Java we cannot have two parent classes of a single child class, having two parent is called Multiple Inheritance. ...Discusskunalkushwaha
Manik Mehtadmanika27.hashnode.net·Apr 24, 2023Abstract Classes in JavaAssume a real-life problem that you want to create a parent class in which a function is declared and now it's children classes want to take the same function that is name and arguments remain same but the body is to be different. Take a small exampl...Discusskunalkushwaha
Manik Mehtadmanika27.hashnode.net·Apr 23, 2023Polymorphism in JavaAnother very useful property of OOPs is Polymorphism. Today we will try to get familiar with it. What does Polymorphism mean in very general case? It’s just occurrence in different forms. It has similar meaning. When we were using constructor, a type...Discuss·2 likesJava
Manik Mehtadmanika27.hashnode.net·Apr 23, 2023Inheritance In JavaToday we will learn about Inheritance in Java. What is Inheritance in a general way or non-programming way? It’s basically the transfer of some properties from parent generation to child generation. But is child exact copy of parent generation? No! c...Discuss·1 likekunalkushwaha
Manik Mehtadmanika27.hashnode.net·Apr 23, 2023Creating a Singleton Class in JavaAssume you want a class for which only one object can be created. This type of class is known as Singleton Class. How can you create that class? Before jumping to this topic let me recall the way for creating an object. The method is: className_objec...Discusskunalkushwaha
keshav dkwaughkes.hashnode.net·Apr 22, 2023OOPs Concepts in Python LanguageIntroduction Object-Oriented Programming, also known as OOPs concepts in Python. In this article, I will explain the basic concepts of Object-Oriented Programming in Python programming, oop fundamentals, and features of oops. Developers often choose ...DiscussPython
Shubham Sharmashubhamsharma.hashnode.net·Apr 16, 2023Basics of object oriented programming:Object-oriented programming referred to the language that uses objects in programming. Oops, aim to implement real-world entities like inheritance, hiding, polymorphism etc... The main name of Oops is to bind the data members and the member function ...Discuss·1 likeC++
Rohit Pimpaleblogrohit.hashnode.net·Apr 14, 2023Python OOP ConceptsHey welcome to my blogs To give you a summary of myself and why I am starting to blogging I am Rohit Pimpale 2nd year in IT engineering and I am enthusiastic about ML. So I decided to blog because I wanted to share knowledge and document my ML engine...DiscussPython