TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About OOP
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Naveed Zaman (7)
Sreenath Kappoor (6)
Md Sarfaraj (5)
Ayush Gupta (4)
Ajay Kumar (3)
Ishika Tiwari (3)
Vijay Kumari (3)
Mukesh Nailwal (3)
Daniel Gomez (2)
Shikha Tiwari (2)
Vijay Yadav (2)
Abhishek Chadha (2)
Shivprasad (2)
Vikas Singh (2)
Darshan Adakane (2)
Abhishek Jaiswal (2)
Hari Lakkakula (2)
Abhishek Khandare (2)
Ashish Bhatnagar (2)
Rasul Huseynov (1)
Rikam Palkar (1)
Sigar Dave (1)
Baibhav Kumar (1)
Kevin Morales (1)
Vivek Kumar (1)
Raj Kumar (1)
Vishal Joshi (1)
Pramod Thakur (1)
Abhishek Yadav (1)
Rajeev Kumar (1)
Kafeel Ahmad (1)
Pankaj Kumar Choudhary (1)
Rajesh Pawde (1)
Pankaj Patel (1)
Mahesh Alle (1)
Kiran Mohanty (1)
Chetan Sanghani (1)
Senthilkumar (1)
Abhishek Saini (1)
David Mccarter (1)
Tahir Ansari (1)
Jaimin Shethiya (1)
Bala S (1)
Suresh Paldia (1)
Ashutosh Singh (1)
Akshay Phadke (1)
Shobana Sundararajan (1)
Rasmita Dash (1)
Pradeep Shet (1)
Sanwar Ranwa (1)
Gurpreet Arora (1)
Tural Suleymani (1)
Rijwan Ansari (1)
Pratik Somaiya (1)
Rafal Wozniak (1)
Matthew Cochran (1)
Abiola David (1)
Mahesh Chand (1)
Banketeshvar Narayan (1)
Jignesh Trivedi (1)
manish Mehta (1)
Ali Sufyan (1)
Daniel Clark (1)
Related resources for OOP
No resource found
Object Oriented Design Balancing with Anti-Single Responsibility
11/5/2024 4:18:47 AM.
This article will change your perspective on working with the Single Responsibility Principle (SRP). The main point is to focus on finding balance when designing object-oriented systems and applying S
Sitecore Pipeline to add rel="noopener noreferrer" to a General Link
11/2/2024 4:09:54 AM.
This guide explores how to utilize the Sitecore pipeline to efficiently add the rel="noopener noreferrer" attribute to general links. This attribute enhances security by preventing potential
Skip loops, use Virtualization in Blazor
11/1/2024 4:30:17 AM.
Let me teach you faster way of loading the list.
Difference Between Break and Continue in JavaScript
10/24/2024 6:58:10 AM.
In JavaScript, both break and continue are control flow statements used in loops. The break statement stops the loop entirely when a condition is met, while continue skips the current iteration and mo
Introduction to Python Classes
10/22/2024 5:14:06 AM.
Learn how to define classes, create objects, and understand key OOP concepts like inheritance and encapsulation. Perfect for new programmers looking to master Python's class-based structure.
Data Structures And Algorithms - Part Three - An Array Of Fun
10/3/2024 11:42:22 AM.
Arrays in computer science are static data structures that store elements in contiguous memory locations. They can be one-dimensional, two-dimensional, or jagged arrays. This article explores how to d
Fibonacci Series : Recursion, Memoization, and Optimal Approach
10/1/2024 8:15:39 AM.
The Fibonacci series is a mathematical sequence starting with 0 and 1, where each subsequent number is the sum of the previous two. This article explores three methods to compute Fibonacci numbers in
Add rel="nofollow noopener noreferrer" to External Links in Sitecore
9/20/2024 9:06:55 AM.
This guide explains how to enhance your Sitecore website's SEO and security by adding the attributes rel="nofollow", rel="noopener", and rel="noreferrer" to external
Looping With Ng-repeat in AngularJS
9/10/2024 10:19:21 AM.
Learn how to display data in AngularJS using ng-init and ng-repeat directives. ng-repeat instantiates an element for each item in a collection, while ng-init allows evaluation of expressions in the cu
Exaplain Copy Constructor in C#
9/10/2024 8:41:21 AM.
A copy constructor in C# allows creating a new object by copying an existing object. It duplicates the values of properties and fields from the original object. This method is useful for creating inde
Bind Data On View Using ng-repeat in AngularJS
9/9/2024 11:50:30 AM.
Learn how to efficiently bind and display data on your view using AngularJS's ng-repeat directive. This guide covers how to use ng-repeat to loop through data collections and dynamically render co
Illustration of Bubble Sorting in one Dimensional Array
8/30/2024 8:29:58 AM.
Bubble Sort is a simple sorting algorithm that arranges elements in an array by repeatedly comparing and swapping adjacent items. It iterates through the array multiple times, moving the largest (or s
Object-Oriented Programming (OOP) in .NET
8/22/2024 5:03:34 AM.
This article explores Object-Oriented Programming (OOP) within the .NET framework, focusing on core concepts such as classes, objects, inheritance, polymorphism, encapsulation, and abstraction.
Recursive CTE: Simplifying Complex Queries with SQL
8/16/2024 7:14:44 AM.
Recursive CTEs in SQL simplify querying hierarchical or recursive data by breaking down queries into anchor and recursive members. They are ideal for traversing structures like organizational charts o
Multithreading in C# Task Creation Using Loop
8/6/2024 5:04:09 AM.
This article introduces multithreading in C# using the Task class from the Task Parallel Library (TPL). It explains creating and executing tasks serially within a loop, ensuring tasks are completed se
Why We Should Avoid Using await in C# Loops
7/31/2024 5:05:57 AM.
Avoid using `await` inside C# loops as it causes sequential execution and resource contention, leading to poor performance. Instead, use alternatives like `Task.WhenAll`, `Parallel.ForEachAsync`, or `
Mask an Aadhar Number into Blocks of 4 Digits Each
7/30/2024 5:51:41 AM.
This C# code demonstrates how to mask sensitive numbers, like Aadhar or account numbers. It validates input length, uses StringBuilder to format Aadhar numbers with spaces, and shows account number ma
Using while and foreach Loops in AngularJS
7/23/2024 10:27:39 AM.
In AngularJS, while and foreach loops are vital for iterating over data collections, facilitating various data manipulations, and processing tasks within applications.
Optimization of Loops in JavaScript
7/19/2024 5:16:47 AM.
Loop optimization is crucial in JavaScript for enhancing performance, particularly in applications requiring intensive computation or handling large data sets. By understanding and applying optimizati
Wrapper Class vs. Object Composition with UseCase
7/18/2024 9:38:59 AM.
Explore Wrapper Classes and Object Composition in object-oriented programming. Learn how wrappers adapt interfaces and enhance functionality without altering code, ideal for legacy systems.
String.Join vs Loops in C#
7/17/2024 12:21:12 PM.
String.Join vs. Loops: C#" explores the efficiency and performance differences between using String.Join and traditional looping methods for string concatenation in C#.
C# Abstract Class with Examples
7/17/2024 10:28:16 AM.
Explore the fundamentals of C# abstract classes through clear examples and detailed explanations. Learn how abstract classes facilitate code reusability and polymorphism in object-oriented programming
Polymorphism Concept OOPS
7/16/2024 6:58:21 AM.
Polymorphism in C# involves method overloading (multiple methods with the same name but different parameters), method overriding (subclass provides specific implementation of a method in the parent cl
Interface Vs Abstract Class
7/10/2024 3:44:36 PM.
This article delves into the differences between interfaces and abstract classes in object-oriented programming. It explores their roles in languages like Java and C#, highlighting key concepts such a
Types Of Relationships In Object Oriented Programming (OOPS)
6/24/2024 9:01:53 AM.
This article explores the key relationships in Object-Oriented Programming (OOP), including inheritance, association, composition, and aggregation. These relationships enable code reuse and flexibilit
Pillars Of OOP/Overview Of OOP
6/17/2024 10:50:44 AM.
In this article you will get an overview of OOP. A programming model which is mainly organized around the objects is called Object Oriented Programming.
Break in C#
6/11/2024 11:42:58 AM.
The "break" statement in C# is a control flow statement that terminates the nearest enclosing loop or switch statement. It is commonly used to exit a loop prematurely when a specific conditi
OOPS Interview Questions - C#
6/7/2024 10:31:18 AM.
Here is a list of the most popular OOPS interview questions and answers explained. These OOPS interview questions are for both beginners and professional C# developers.
Code Execution Process
6/5/2024 5:37:38 AM.
The code execution process involves compilation or interpretation, generating machine code or bytecode, loading into memory, and executing instructions. It includes steps like lexical analysis, parsin
C# Basic OOPs Concepts
6/4/2024 12:47:27 PM.
"Basic OOPs concepts in C# involve classes, objects, inheritance, encapsulation, and polymorphism. It includes access modifiers, constructors, and destructors, along with method overloading and o
Best Practices and Role of a Product Owner
6/3/2024 4:35:08 AM.
The Unsung Hero" delves into the pivotal role of a Product Owner in Agile projects. Explore best practices in stakeholder management, backlog grooming, and iterative development, emphasizing the
Importance of While Loop and Table Variable in SQL Server
5/31/2024 11:52:50 AM.
Explore the significance of while loops and table variables in SQL Server. Harness the power of iterative processing, efficient data manipulation, and performance optimization for enhanced query execu
Do While Loop in C#
5/30/2024 4:45:42 AM.
Do-while loop in C# guarantees execution of code block at least once. Syntax: do { /* Code */ } while (condition);. Steps involve code execution, condition evaluation, loop continuation, and terminati
Learn Object Oriented Programming Using C#: Part 2
5/24/2024 8:57:02 AM.
Discover advanced Object-Oriented Programming techniques in C# with our comprehensive Part 2 guide. Master inheritance, polymorphism, encapsulation, and more. Learn to create robust classes, utilize i
While Loop in C#
5/24/2024 8:36:46 AM.
Explore the power of while loops in C# programming with this comprehensive guide. Learn how to utilize while loops for iterative tasks, control flow, and conditional execution. Master essential syntax
Learn Object Oriented Programming Using C#: Part 6
5/24/2024 7:28:34 AM.
Explore advanced concepts in Object-Oriented Programming (OOP) with C# in Part 6 of this series. Learn about inheritance, polymorphism, interfaces, and abstract classes. Understand method overriding,
Learn Object Oriented Programming Using C#: Part 7
5/24/2024 7:26:51 AM.
Delve deeper into Object-Oriented Programming with C# in Part 7 of our comprehensive tutorial series. Explore advanced concepts like inheritance, polymorphism, and more. Enhance your coding skills and
Learn Object Oriented Programming Using C#: Part 8
5/24/2024 7:17:07 AM.
Dear reader's, this article is the fourth and last pillar of OOP. It's confusing for the beginners of OOP. So we provide an example in very simple words.
Learn Object Oriented Programming Using C#: Part 1
5/24/2024 4:29:44 AM.
Embark on your journey to master Object-Oriented Programming with C# in Part 1. Explore essential concepts like classes, methods, properties, and inheritance, laying the foundation for advanced C# dev
Print * Tree Counts From 1 to 10 and 10 to 1 Using C#
5/24/2024 4:23:48 AM.
In C#, print tree counts from 1 to 10 and 10 to 1 using nested loops for ascending and descending order respectively. Utilize console output and loop control structures for efficient counting and disp
Continue in C#
5/23/2024 6:35:46 AM.
In C#, the continue statement is used within loops (for, while, do-while, and foreach) to skip the current iteration and proceed to the next one. It's useful for bypassing specific conditions with
Common JavaScript Mistakes To Avoid
5/22/2024 5:46:06 AM.
Enhance JavaScript skills by avoiding common mistakes like inefficient looping and mishandling null values, and mastering array manipulation techniques
Learn About Components of a Class in C#
5/20/2024 6:28:23 AM.
In object-oriented programming, a class serves as a blueprint for creating objects. It encapsulates data and behavior, facilitating code organization and abstraction for secure, reusable solutions in
How to Build a Game with React Js?
5/19/2024 7:05:52 AM.
Learn how to build a game with React.js in this step-by-step guide. Explore React's capabilities for game development, including component-based architecture, state management, and hooks. Discover
6 Important .NET Concepts
5/17/2024 10:37:22 AM.
This article will explain 6 important concepts, Stack, heap, value, ref, boxing, and unboxing. Explore the essence of .NET through six pivotal concepts.
Performance Tip - For Vs Foreach In Microsoft .NET
5/16/2024 8:32:19 AM.
Consider loop efficiency: 'for' is faster for arrays, 'for each' for collections. Optimize performance by choosing the right loop type in .NET programming.
7 Easy Ways to Loop in JavaScript
5/16/2024 6:31:15 AM.
JavaScript loops include for, while, do...while, for...in, for...of, forEach, and map, providing versatile iteration and transformation capabilities
For Loop in C#
5/16/2024 4:09:29 AM.
Learn about the versatile "for" loop in C#. Master the syntax and applications of this essential control structure for iterating through arrays, lists, and more. Explore loop optimization, n
Exploring in Depth Of Abstraction in C#
5/14/2024 11:09:13 AM.
Dive deep into abstraction in C#, exploring OOP concepts like encapsulation, inheritance, and polymorphism. Learn about abstract classes, interfaces, generics, and advanced features like delegates and
Object Oriented Programming Using C#: Part 9
5/13/2024 11:52:47 AM.
Explore advanced concepts in C# Object-Oriented Programming (OOP) in this ninth installment. Dive into topics like inheritance, polymorphism, encapsulation, and more. Learn how to leverage these princ
Abstract Class in .NET C#: Syntax, Usage and Example
5/13/2024 5:01:47 AM.
Abstract classes in .NET C# provide a blueprint for other classes to inherit from. They contain abstract methods that must be implemented by derived classes. Learn syntax, usage, and see examples to u
Mastering OOP in C#: A Real-World Project Journey
5/13/2024 4:57:51 AM.
Explore Object-Oriented Programming in C# through a practical journey. Learn key concepts like inheritance, polymorphism, and encapsulation while working on real-world projects. Master C# development
Understanding the Connections Between Classes in OOP
5/10/2024 7:58:52 AM.
Understanding how different tools in a toolbox are used to build something. This guide helps you see how these classes share information and work together to create software, making it easier to under
2D array - Take Input and Print Output Same
5/10/2024 6:55:48 AM.
Utilize 2D arrays to input data, then print the output, maintaining the same structure. Employ nested loops for iteration and array manipulation in your chosen programming language.
What are Classes in Object Oriented Programming (OOP)
5/8/2024 10:20:54 AM.
Classes in OOP serve as blueprints for creating objects. They encapsulate data and behavior, promoting modularity and code reuse through inheritance and polymorphism, essential for building scalable a
3 Important Concepts: - Association, Aggregation and Composition
5/1/2024 11:12:36 AM.
Explore essential OOP concepts like association, aggregation, and composition through real-world examples. Understand their significance in modeling relationships and code maintainability. This artic
Parallel.For Loop in .NET 4
5/1/2024 11:06:50 AM.
Learn efficient parallel programming with the Parallel.For loop in .NET 4. Harness the Task Parallel Library (TPL) to execute iterations concurrently, optimizing performance through multithreading and
Exploring Interface and Abstract Class in C# Programming
4/30/2024 10:07:25 AM.
In C#, both interfaces and abstract classes are powerful tools for designing flexible and reusable code. Let's delve into the concepts of interface and abstract class, explore their differences, a
Adapter Design Pattern In Flutter
4/25/2024 9:50:09 AM.
Explore the Adapter Design Pattern, a popular structural design pattern in software development. Learn its definition, real-world examples, appropriate use cases, potential pitfalls, and more.
C# Programming: Language Fundamentals, OOP, Async, LINQ
4/25/2024 8:39:35 AM.
This guide provides a thorough exploration of the C# language, covering essential topics such as language fundamentals, object-oriented programming concepts, asynchronous programming, and Language Int
AngularJS ng-Repeat Directive
4/19/2024 10:48:11 AM.
AngularJS ng-Repeat Directive simplifies dynamic content rendering by iterating over arrays, enabling efficient data binding and template creation. It's a powerful tool for generating HTML element
Introduction To Azure Logic Apps
4/8/2024 9:01:25 AM.
Learn about Azure Logic Apps for task scheduling and automation in cloud computing. Explore workflow components like triggers, actions, and loops. Discover advantages, connectors, usage scenarios, pri
Difference between break and continue in Java
4/4/2024 10:38:03 AM.
In Java break and continue statements are known as Jump Statements. In this article, you will learn about the break and continue statements in Java and how we can use these statements in Java with cod
Learn about ASP.NET MVC Life Cycle
4/1/2024 6:28:41 AM.
Understand the MVC life cycle from HTTP request to response. Learn about ASP.NET's Page class, IHttpHandler interface, and MVC's Controller. Explore RouteTable and UrlRoutingModule for routing
Method Overloading In C#
3/29/2024 6:44:42 AM.
Method overloading in C# allows defining multiple methods with the same name but different parameters within the same class. This enables flexibility and enhances code readability by providing various
Break and Continue Statements in C#
3/28/2024 10:36:03 AM.
This article elucidates essential concepts of C# programming, specifically focusing on loops, namely the break and continue statements. It presents an example demonstrating the usage and differentiat
Object Oriented Programming With A Real-World Scenario
3/28/2024 10:35:38 AM.
This article explores the significance of real-world scenarios in understanding Object-Oriented Programming (OOP) for young programmers. It discusses the four pillars of OOP - abstraction, encapsulat
Explain Vue.js Conditions & Loops
3/27/2024 9:42:23 AM.
In Vue.js, conditionally render elements with v-if, v-else, v-show, and iterate data using v-for. Detailed explanations and code examples illustrate each aspect of dynamic UIs.
What is the Abstract Class in C#?
3/27/2024 6:45:19 AM.
The abstract class is a special privileged class in the C#, this will provide a blueprint for the derived classes with a setup of rules and instructions to be derived. The abstract class contains both
What is the Virtual Method in C#?
3/26/2024 9:03:13 AM.
In this article, we will provide an explanation about the virtual method with consise answer, which is help full for the people who wants to attends the C# with opps interview.
Singleton Design Pattern In Flutter
3/21/2024 9:25:49 AM.
Learn how and when to use Singletons, implement them effectively, and explore their advantages and limitations. This article also includes a sample implementation using the shared_preferences package
Abstract Factory Design Pattern In Flutter
3/21/2024 9:25:33 AM.
Learn about the Abstract Factory design pattern in Flutter for creating platform-specific widgets. This pattern centralizes the creation of related objects, making it easier to manage and work with m
Factory Method Design Pattern In Flutter
3/21/2024 9:25:05 AM.
Factory Method design pattern! Learn how to create objects dynamically, improve code flexibility, and build platform-specific UIs (like buttons) with ease. Explore a practical payment gateway example
Introduction to Design Patterns in Flutter
3/21/2024 9:12:16 AM.
Explore the importance of design patterns in software development. Learn about different types of patterns, their benefits, and how they can improve code efficiency, readability, and maintainability.
Explain about Spread Operator in C# 12
3/20/2024 6:11:27 AM.
The spread operator, a recent addition to C# in version 12, streamlines working with collections like arrays and dictionaries. It simplifies tasks such as cloning and merging, enhancing code readabili
.NET internals: Learning Object-Oriented .NET IL
3/19/2024 11:12:50 AM.
.NET IL, or Intermediate Language, serves as a bridge between high-level programming languages and machine code. This article delves into object-oriented .NET IL concepts with detailed explanations an
What Is DevOps And Its Key Principles
3/15/2024 6:16:52 AM.
DevOps merges development and operations, emphasizing collaboration, automation, and continuous integration. Key principles include infrastructure as code, agile practices, and a feedback loop for mon
Big Data: Navigating the Digital Ocean of Information
3/5/2024 7:10:20 AM.
In the era of technology, data has become the new currency. Big Data, a term frequently heard across industries, represents the vast expanse of information reshaping our world. The essence of Big Data
Programmatic Installation and Configuration of Microsoft Loopback Adapter
3/4/2024 6:24:06 AM.
This article will show how to programmatically install, configure and manage virtual network adapters such as Microsoft Loopback Adapter using Devcon tool, WMI and netsh command.
Object Oriented Programming In Java
2/29/2024 4:57:24 AM.
Object-oriented programming is the basic term of any programming language like Java. Object-Oriented Programming (OOP) in Java, covering concepts like Class, Object, Inheritance, Abstraction, Encapsul
2D Array with Matrix Multiplication in C Programming
2/28/2024 4:20:43 AM.
A double subscripted variable, also known as a two-dimensional array, is a variable that has two subscripts assigned to it in order to represent a list of items.
Limiting Class Instances in C# with Private Constructor
2/6/2024 5:29:53 AM.
Control class instances in C# by using a counter and private constructor. Explore limiting class instances in C# with a private constructor and a counter variable. Control the instantiation and set a
Deep Dive into Classes and Objects
1/10/2024 7:09:53 AM.
Welcome, fellow programmers! Here, we will dive into the world of classes and objects. Classes and objects are fundamental in programming. This post unravels the essence of classes, abstract data type
Creating a Java Package - Hands-On Guide
1/5/2024 5:27:48 AM.
In my preceding article, we delved into the foundational understanding of Packages and their significance in Java programming. Now, building upon that knowledge, this article aims to provide a practic
The Role of Packages in Java
12/27/2023 7:16:01 AM.
It is possible to runout of unique names for classes in a big programming environment. There may be situations when two or more persons use the same name of their classes.
NavigationView in Android with Java
12/15/2023 10:37:08 AM.
In this article, you will learn and implement NavigationView in Android with Java.
C# Artificial Intelligence (AI) Programming: A Basic Object Oriented (OOP) Framework for Neural Networks
11/15/2023 11:39:44 AM.
A Neural Network is an Artificial Intelligence (AI) methodology that attempts to mimic the behavior of the neurons in our brains. In this article, we’ll be building a basic framework for AI Neural Net
What is Access Modifiers in C#?
11/7/2023 9:21:09 AM.
In this article, we have covered the topic about access modifiers in C# and how many types of access modifiers in C#.
Efficient Data Integration using HSTACK & XLOOKUP Functions
11/7/2023 7:03:07 AM.
This article effectively explains how to integrate data from different sources using Excel's HSTACK and XLOOKUP functions. The step-by-step breakdown and the clear demonstration with sample data m
What are Constructors in OOPS?
11/3/2023 8:20:25 AM.
This article provides a clear and concise explanation of their purpose and functionality in object-oriented programming. The code example and the subsequent explanation effectively demonstrate how con
How C# Continue and Break Statements are Different?
11/2/2023 11:31:46 AM.
Let's know the difference between continue and break statements.This article provides an explanation of the continue and break statements in C# effectively highlights their essential functionaliti
How to loop through all enum values in C#
10/28/2023 11:30:17 AM.
Here is code example of how to iterate through all enum values in C#.
How we can Write Optimized Code in JavaScript
10/26/2023 4:35:20 AM.
In this article, we will see How we can write optimized code in JavaScript
Dynamically Bind HTML Template to JSON Data Without using Loop in SQL
10/17/2023 9:46:41 AM.
How we can dynamically bind html template to json data without using looping sql server
Parallel.ForEach() Vs Foreach() Loop in C#
10/11/2023 5:50:20 AM.
In this article you will learn about the difference between Parallel.ForEach() Vs Foreach() loop in C# language.
Understanding Polymorphism In C#
10/10/2023 11:03:56 AM.
Polymorphism is a key feature of OOP that lets developers use same name methods in different forms. This tutorial explains basics of Polymorphism in C# with C# Polymorphism code examples.
Introduction To JScript.NET
10/9/2023 11:12:44 AM.
We have been hearing the announcement from Microsoft right from PDC2000 that they have realsed new languages viz. C#, VB.NET and JScript.NET.This artice of mine is going to introduce to u JScript.NET.
Simplest Way To Learn Object Oriented Programming
10/6/2023 7:18:47 AM.
This article provides the sImplest way to learn Object Oriented Programming.
C# Performance Of Code - For Loop VS Foreach Loop
9/25/2023 10:42:16 AM.
In this article, you will learn about the performance of the C# code while using for loop versus while using foreach loop.
Inheritance In C#
9/25/2023 10:20:01 AM.
Inheritance is a powerful feature of Object Oriented Programming languages. Using inheritance you create base classes that encapsulate common functionality. The base class is inherited by derived clas