Shubham Jhashubhamkumarjha.hashnode.dev·a day agoObjects and Classes in JavaJava, a versatile and powerful programming language, is built on the principles of Object-Oriented Programming (OOP). At the core of OOP lie "objects" and "classes". This blog post will delve into the fundamentals of objects and classes in Java, expl...DiscussObject Oriented Programming
Md Nayeemmd5nayeem.hashnode.dev·Sep 29, 2023Functional Programming vs. Object-Oriented Programming: A Simple ComparisonIntroduction: Functional Programming and Object-Oriented Programming (OOP) are two different ways of writing computer code. They both have their strengths and weaknesses, and in this article, we'll explain the key differences in a way that's easy to ...DiscussFunctional Programming
Edun Omobolanlesuperbemiloju.hashnode.dev·Sep 27, 2023Object oriented programming concepts in Python with examples.Introduction What is OOP? Object-oriented programming refers to a programming practice/concept that represents real-world entities like An Employee, A Product, etc. as objects, to ensure that the data and attributes associated with these entities are...Discussoop
Grut grut.hashnode.dev·Sep 25, 2023Debunking Object-Oriented Programming23|09|2023 It is Day 5, today, in my coding interview preparation. I will write about programming paradigms and specifically object-oriented programming today. Let us understand programming paradigms. We will try to understand what is a programming p...Discuss#180DaysOfDSAoop
Noreen Sulehrynoreensulehry.hashnode.dev·Sep 25, 2023Iterators in C++An iterator acts like a pointer to an element inside a container (e.g, maps, vector, list). You can use iterators to navigate through the items, read them, and modify them. Types of Iterators: Input Iterators: Can read from a position Output Iterst...Discusscpp
Ratish Jaindevcon.hashnode.dev·Sep 21, 2023Object Oriented Programming in JavascriptJavaScript, often referred to as the "language of the web," is a versatile and powerful programming language. One of its key strengths is its support for Object-Oriented Programming (OOP) principles. In this blog post, we'll dive into the world of OO...Discuss·12 likesHashnode
Saksham Aggarwalwebdv.hashnode.dev·Sep 21, 2023Demystifying 'this' in JavaScript: A Comprehensive GuideINTRODUCTION Welcome to my article on this keyword in JavaScript. If you've ever found 'this' to be a bit perplexing, you're not alone. In this article, we'll demystify this and help you conquer it. So, let's dive in and unravel the mysteries of this...DiscussJavaScript
Jorge Leonardo Cespedes Tapiajorgecespedes.hashnode.dev·Sep 20, 2023La Importancia de Aprender Programación Orientada a Objetos (POO)La Programación Orientada a Objetos, comúnmente conocida como POO, es un paradigma de programación que se ha convertido en la base de la mayoría de los desarrollos de software modernos. Aprender POO no es simplemente una opción, sino una habilidad es...Discussoop
Dev Leaderhashnode.devleader.ca·Sep 20, 2023OOP And Interfaces In C#: How To Use Them EffectivelyObject-Oriented Programming (OOP) is a common programming paradigm used in software development. C# is one of the languages that supports OOP, providing developers with tools to design and structure their applications effectively. One of the essentia...DiscussObject Oriented Programming
ABDU RAVOOFabduravoof.hashnode.dev·Sep 18, 2023Javascript Concepts Every Programmer Should KnowJavaScript is a widely used programming language primarily used for creating dynamic and interactive web applications. These concepts form the foundation for writing efficient, maintainable, and effective JavaScript code. Let and Const Declarations E...DiscussJavaScript