Vedant Gargandroidguide.hashnode.dev·Jan 14, 2025Unlock the Power of Kotlin OOP: Master Classes, Inheritance, and Advanced FeaturesObject Oriented Programming is a programming methodology that involves execution with the help of classes and objects. Introduction Class - Blueprint of an object, class has properties(data members) and member methods(behaviour to that data) Object...Kotlin for AndroidKotlin
Nilajeet Basaknbasak.hashnode.dev·Jan 5, 2025Understanding Classes and Objects in JavaConfused between Objects and Classes no worries!!!!! This article will clear all the concepts of Objects and Classes. Java, being and Object-Oriented Programming language, revolves around the concept of classes and objects. If you’re new to Java, und...20 likesJavaJava
Rupal Singhalrupalsinghal.hashnode.dev·Dec 23, 2024Mastering ES6: The Modern JavaScript Features You Need to KnowWith the advent of ES6 (ECMAScript 2015), JavaScript became more powerful, readable, and developer-friendly than ever before. If you’re a developer looking to brush up on modern JavaScript, mastering ES6 is essential. In this blog post, we’ll walk th...2 likesES6
Isaiah Clifford OpokuforfreeCodeCampfreecodecamp.org·Dec 20, 2024The C# Class Handbook – Types of Classes with Code ExamplesClasses are the fundamental building blocks of object-oriented programming in C#. They allow you to create reusable and modular code by grouping related data and functions. Different types of classes serve various purposes. For instance, organizing y...C#
Nishant Banjadeblog.nishantbanjade.com.np·Dec 17, 2024Mastering C# Part 7.1 Object Oriented ProgrammingObject-Oriented Programming (OOP) is a paradigm that structures software design around data, or objects, rather than functions and logic. In C#, a language inherently designed with OOP principles, this approach facilitates the modeling of real-world ...65 readsC#
Dhruvi Shahdhruvishah.hashnode.dev·Dec 16, 2024Metaclasses Demystified: Building Classes that Build Classes! 🚀What’s a Metaclass? In Python, when you define a class, Python uses a metaclass to determine how the class behaves. By default, the metaclass for all classes in Python is type. Think of metaclasses as the architects of your classes. They don’t buil...4 likes·42 readsOOPS
shashank kumardatasciencecourse-inchennai11.hashnode.dev·Dec 16, 2024Bias in Generative AI: Challenges and Solutions for Ethical AIMachine learning has innovative sources offering possibilities in text and image generation and recommendation services. Nevertheless, bias persists as one of the significant problems. This article highlights three key harms of bias in generative AI ...Data Science
Jyotiprakash Mishrablog.jyotiprakash.org·Dec 11, 2024Introduction to Classes & Objects in JavaIn Java, object-oriented programming (OOP) allows developers to model real-world entities and their interactions. At the heart of OOP lies the class. A class serves as a blueprint for creating objects, which encapsulate both state and behavior. Imagi...3 likes·668 readsclasses
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 5, 2024Variables and Data Types in C#Variables A variable is a named storage location in memory that holds a value. In C#, you must declare a variable before using it. data_type variable_name; Data Types C# has a rich set of data types to represent different kinds of data. 1. Value Type...reference datatypes
Arnab Bhowmikblog.thearnab.tech·Nov 19, 20241.2 Objects , Classes , Data Abstraction , Encapsulation & InheritanceObject-Oriented Programming Object-oriented programming (OOP) is a way to organize and conceptualize a program as a set of interacting objects. The programmer defines the types of objects that will exist. The programmer creates object instances as...OOPM SprintObject Oriented Programming