SlideShare a Scribd company logo
1 of 27
Disclaimer: This presentation is prepared by trainees of
baabtra as a part of mentoring program. This is not official
document of baabtra –Mentoring Partner
Baabtra-Mentoring Partner is the mentoring division of baabte System Technologies Pvt .
Ltd
Week Target Achieved
1 50 19
2 50 22
3 50
Typing Speed
Jobs Applied
# Company Designation Applied Date Current Status
1
2
3
Oops Concept in C#
Nabeel
nabilmohad@gmail.com
nabilmohad
nabilmohad
nabilmohad
9746477551
POP OOP
In POP, program is divided into small parts
called functions.
In OOP, program is divided into parts
called objects.
POP does not have any proper way for
hiding data so it is less secure.
OOP provides Data Hiding so
provides more security.
Example of POP are : C, VB, FORTRAN,
Pascal.
Example of OOP are : C++, JAVA, VB.NET,
C#.NET.
Oops Concept in C#
• Object Oriented Programming
language(OOPS):-
It is a methodology to write the program
where we specify the code in form of classes
and objects.
Class
• Class is a user defined data type. it is like a
template. In c# variable are termed as instances
of classes. which are the actual objects.
Class classname
{
variable declaration;
Method declaration;
}
Object
• Object is run time entity which has different attribute to identify it
uniquely.
Rectangle rect1=new rectangle();
Rectangle rect1=new rectangle();
Here variable 'rect1' & rect2 is object of the rectangle class.
The Method Rectangle() is the default constructor of the class. we
can create any number of objects of Rectangle class.
Basic Concept of oops:-
• There are main three core principles of any
object oriented languages.
• INHERITANCE
• POLYMORPHISM
• ENCAPSULATION
INHERITANCE:-
• One class can include the feature of another
class by using the concept of inheritance.In c#
a class can be inherit only from one class at a
time.Whenever we create class
that automatic inherit from System.Object
class,till the time the class is not inherited
from any other class.
• class BaseClass
• {
• //Method to find sum of give 2 numbers
• public int FindSum(int x, int y)
• {
• return (x + y);
• }
• //method to print given 2 numbers
• //When declared protected , can be accessed only from inside the derived class
• //cannot access with the instance of derived class
• protected void Print(int x, int y)
• {
• Console.WriteLine("First Number: " + x);
• Console.WriteLine("Second Number: " + y);
• }
• }
• class Derivedclass : BaseClass
• {
• public void Print3numbers(int x, int y, int z)
• {
• Print(x, y); //We can directly call baseclass
members
• Console.WriteLine("Third Number: " + z);
• }
• }
• class Program
• {
• static void Main(string[] args)
• {
• //Create instance for derived class, so that base class members
• // can also be accessed
• //This is possible because derivedclass is inheriting base class
• Derivedclass instance = new Derivedclass();
• instance.Print3numbers(30, 40, 50); //Derived class internally calls base class method.
• int sum = instance.FindSum(30, 40); //calling base class method with derived class instance
• Console.WriteLine("Sum : " + sum);
• Console.Read();
• }
•
• }
• Output:-
• First number:30
• Second number:40
• Third number:50
• Sum:70
ENCAPSULATION:-
• Encapsulation is defined 'as the process of enclosing one or more
items within a physical or logical package'. Encapsulation, in object
oriented programming methodology, prevents access to
implementation details.
• Abstraction and encapsulation are related features in object
oriented programming. Abstraction allows making relevant
information visible and encapsulation enables a programmer
to implement the desired level of abstraction.
• Encapsulation is implemented by using access specifiers. An access
specifier defines the scope and visibility of a class member. C#
supports the following access specifiers:
• Public
• Private
• Protected
POLYMORPHISM:-
• It is also concept of oops. It is ability to take more than
one form. An operation may exhibit
different behaviour in different
situations.
• C# gives us polymorphism through inheritance.
Inheritance-based polymorphism allows us to define
methods in a base class and override them with
derived class implementations
• You can have multiple definitions for the same function
name in the same scope. The definition of the function
must differ from each other by the types and/or the
number of arguments in the argument list.
Function Overloading
• class Printdata
• {
• void print(int i)
• {
• Console.WriteLine("Printing int: {0}", i);
• }
• void print(double f)
• {
• Console.WriteLine("Printing float: {0}", f);
• }
• void print(string s)
• {
• Console.WriteLine("Printing string: {0}", s);
• }
• static void Main(string[] args)
• {
• Printdata p = new Printdata();
• // Call print to print integer
• p.print(5);
• // Call print to print float
• p.print(500.263);
• // Call print to print string
• p.print("Hello C++");
• Console.ReadKey();
• }
• }
• Output:-
• Printing int: 5
• Printing float: 500.263
• Printing string: Hello C++
Override
• class Color
• {
• public virtual void Fill()
• {
• Console.WriteLine("Fill me up with color");
• }
• public void Fill(string s)
• {
• Console.WriteLine("Fill me up with {0}", s);
• }
• }
• class Green : Color
• {
• public override void Fill()
• {
• Console.WriteLine("Fill me up with green");
• }
• }
• class nab
• {
• static void Main()
• {
• Green c1 = new Green();
• c1.Fill();
• c1.Fill("red");
• Console.Read();
• }
•
• }
• Out put:
• Fillup with Green
• Fillup with Red
Dynamic Polymorphism
• C# allows you to create abstract classes that are used
to provide partial class implementation of an interface.
Implementation is completed when a derived class
inherits from it. Abstract classes contain abstract
methods which are implemented by the derived class.
The derived classes have more specialized
functionality.
• Please note the following rules about abstract classes:
• You cannot create an instance of an abstract class
• You cannot declare an abstract method outside an
abstract class
• When a class is declared sealed, it cannot be inherited,
abstract classes cannot be declared sealed.
• abstract class Shape
• {
•
• public abstract int area();
•
• }
• class Rectangle: Shape
• {
• private int length;
• private int width;
• public Rectangle( int a, int b)
• {
• length = a;
• width = b;
• }
• public override int area ()
• {
• Console.WriteLine("Rectangle class area :");
• return (width * length);
• }
• }
• class RectangleTester
• {
• static void Main(string[] args)
• {
• Rectangle r = new Rectangle(10, 7);
• double a = r.area();
• Console.WriteLine("Area: {0}",a);
• Console.ReadKey();
• }
• }
• Out put:
• Rectangle class area :
• Area:70
Abstract Classes and Class Members
• The purpose of an abstract class is to provide a
common definition of a base class that multiple
derived classes can share. For example, a class library
may define an abstract class that is used as a
parameter to many of its functions, and require
programmers using that library to provide their own
implementation of the class by creating a derived class.
• Abstract classes may also define abstract methods. This
is accomplished by adding the keyword abstract before
the return type of the method. For example:
sealed
• When applied to a class, the sealed modifier
prevents other classes from inheriting from it.
• When you define new methods or properties
in a class, you can prevent deriving classes
from overriding them by not declaring them
as virtual.
If this presentation helped you, please visit our
page facebook.com/baabtra and like it.
Thanks in advance.
www.baabtra.com | www.massbaab.com |www.baabte.com
Contact Us
Emarald Mall (Big Bazar Building)
Mavoor Road, Kozhikode,
Kerala, India.
Ph: + 91 – 495 40 25 550
NC Complex, Near Bus Stand
Mukkam, Kozhikode,
Kerala, India.
Ph: + 91 – 495 40 25 550
Start up Village
Eranakulam,
Kerala, India.
Email: info@baabtra.com

More Related Content

What's hot

Inheritance in java
Inheritance in javaInheritance in java
Inheritance in java
Tech_MX
 

What's hot (20)

Inheritance in java
Inheritance in javaInheritance in java
Inheritance in java
 
Static Data Members and Member Functions
Static Data Members and Member FunctionsStatic Data Members and Member Functions
Static Data Members and Member Functions
 
Introduction to c#
Introduction to c#Introduction to c#
Introduction to c#
 
Java class,object,method introduction
Java class,object,method introductionJava class,object,method introduction
Java class,object,method introduction
 
Operator overloading
Operator overloadingOperator overloading
Operator overloading
 
Basic Concepts of OOPs (Object Oriented Programming in Java)
Basic Concepts of OOPs (Object Oriented Programming in Java)Basic Concepts of OOPs (Object Oriented Programming in Java)
Basic Concepts of OOPs (Object Oriented Programming in Java)
 
Object oriented programming With C#
Object oriented programming With C#Object oriented programming With C#
Object oriented programming With C#
 
Inheritance C#
Inheritance C#Inheritance C#
Inheritance C#
 
9. Input Output in java
9. Input Output in java9. Input Output in java
9. Input Output in java
 
C# basics
 C# basics C# basics
C# basics
 
Basic concept of OOP's
Basic concept of OOP'sBasic concept of OOP's
Basic concept of OOP's
 
Classes and Objects in C#
Classes and Objects in C#Classes and Objects in C#
Classes and Objects in C#
 
C# Arrays
C# ArraysC# Arrays
C# Arrays
 
Classes objects in java
Classes objects in javaClasses objects in java
Classes objects in java
 
Java abstract class & abstract methods
Java abstract class & abstract methodsJava abstract class & abstract methods
Java abstract class & abstract methods
 
ArrayList in JAVA
ArrayList in JAVAArrayList in JAVA
ArrayList in JAVA
 
Applets in java
Applets in javaApplets in java
Applets in java
 
C# Exceptions Handling
C# Exceptions Handling C# Exceptions Handling
C# Exceptions Handling
 
PHP - Introduction to Object Oriented Programming with PHP
PHP -  Introduction to  Object Oriented Programming with PHPPHP -  Introduction to  Object Oriented Programming with PHP
PHP - Introduction to Object Oriented Programming with PHP
 
Java Collections
Java  Collections Java  Collections
Java Collections
 

Viewers also liked

Object Oriented Programming Concepts
Object Oriented Programming ConceptsObject Oriented Programming Concepts
Object Oriented Programming Concepts
thinkphp
 
ROI sofort - Enterprise 2.0 auf Basis von Lotus Notes und Domino
ROI sofort -  Enterprise 2.0 auf Basis von Lotus Notes und DominoROI sofort -  Enterprise 2.0 auf Basis von Lotus Notes und Domino
ROI sofort - Enterprise 2.0 auf Basis von Lotus Notes und Domino
Thomas Bahn
 
Object oriented programming by Waqas
Object oriented programming by WaqasObject oriented programming by Waqas
Object oriented programming by Waqas
Waqas !!!!
 
Project object explain your choice
Project object   explain your choiceProject object   explain your choice
Project object explain your choice
Soren
 
Windows storemindcrcaker23rdmarch
Windows storemindcrcaker23rdmarchWindows storemindcrcaker23rdmarch
Windows storemindcrcaker23rdmarch
Dhananjay Kumar
 
Inline function(oops)
Inline function(oops)Inline function(oops)
Inline function(oops)
Jay Patel
 

Viewers also liked (20)

OOP with C#
OOP with C#OOP with C#
OOP with C#
 
Oops ppt
Oops pptOops ppt
Oops ppt
 
Object Oriented Programming Concepts
Object Oriented Programming ConceptsObject Oriented Programming Concepts
Object Oriented Programming Concepts
 
Object-oriented programming
Object-oriented programmingObject-oriented programming
Object-oriented programming
 
Basic concepts of object oriented programming
Basic concepts of object oriented programmingBasic concepts of object oriented programming
Basic concepts of object oriented programming
 
C# Tutorial
C# Tutorial C# Tutorial
C# Tutorial
 
Introduction to Object Oriented Programming
Introduction to Object Oriented ProgrammingIntroduction to Object Oriented Programming
Introduction to Object Oriented Programming
 
.NET and C# Introduction
.NET and C# Introduction.NET and C# Introduction
.NET and C# Introduction
 
20. Object-Oriented Programming Fundamental Principles
20. Object-Oriented Programming Fundamental Principles20. Object-Oriented Programming Fundamental Principles
20. Object-Oriented Programming Fundamental Principles
 
ROI sofort - Enterprise 2.0 auf Basis von Lotus Notes und Domino
ROI sofort -  Enterprise 2.0 auf Basis von Lotus Notes und DominoROI sofort -  Enterprise 2.0 auf Basis von Lotus Notes und Domino
ROI sofort - Enterprise 2.0 auf Basis von Lotus Notes und Domino
 
Acquiring new skills what you should know
Acquiring new skills   what you should knowAcquiring new skills   what you should know
Acquiring new skills what you should know
 
Simply - OOP - Simply
Simply - OOP - SimplySimply - OOP - Simply
Simply - OOP - Simply
 
Object Oriented Programming Concepts using Java
Object Oriented Programming Concepts using JavaObject Oriented Programming Concepts using Java
Object Oriented Programming Concepts using Java
 
Object oriented programming by Waqas
Object oriented programming by WaqasObject oriented programming by Waqas
Object oriented programming by Waqas
 
Project object explain your choice
Project object   explain your choiceProject object   explain your choice
Project object explain your choice
 
Windows storemindcrcaker23rdmarch
Windows storemindcrcaker23rdmarchWindows storemindcrcaker23rdmarch
Windows storemindcrcaker23rdmarch
 
Basic powershell scripts
Basic powershell scriptsBasic powershell scripts
Basic powershell scripts
 
Inline function(oops)
Inline function(oops)Inline function(oops)
Inline function(oops)
 
C# String
C# StringC# String
C# String
 
OOP Basic
OOP BasicOOP Basic
OOP Basic
 

Similar to Oops concept on c#

Presentation 1st
Presentation 1stPresentation 1st
Presentation 1st
Connex
 
Presentation 3rd
Presentation 3rdPresentation 3rd
Presentation 3rd
Connex
 
I assignmnt(oops)
I assignmnt(oops)I assignmnt(oops)
I assignmnt(oops)
Jay Patel
 
Introduction to objective c
Introduction to objective cIntroduction to objective c
Introduction to objective c
Sunny Shaikh
 
C# (This keyword, Properties, Inheritance, Base Keyword)
C# (This keyword, Properties, Inheritance, Base Keyword)C# (This keyword, Properties, Inheritance, Base Keyword)
C# (This keyword, Properties, Inheritance, Base Keyword)
Umar Farooq
 

Similar to Oops concept on c# (20)

Presentation 1st
Presentation 1stPresentation 1st
Presentation 1st
 
Objective-C for iOS Application Development
Objective-C for iOS Application DevelopmentObjective-C for iOS Application Development
Objective-C for iOS Application Development
 
UNIT3 on object oriented programming.pptx
UNIT3 on object oriented programming.pptxUNIT3 on object oriented programming.pptx
UNIT3 on object oriented programming.pptx
 
introduction to c #
introduction to c #introduction to c #
introduction to c #
 
Presentation 3rd
Presentation 3rdPresentation 3rd
Presentation 3rd
 
Object oriented programming in C++
Object oriented programming in C++Object oriented programming in C++
Object oriented programming in C++
 
I assignmnt(oops)
I assignmnt(oops)I assignmnt(oops)
I assignmnt(oops)
 
Constructor
ConstructorConstructor
Constructor
 
C#2
C#2C#2
C#2
 
Lecture-10_PHP-OOP.pptx
Lecture-10_PHP-OOP.pptxLecture-10_PHP-OOP.pptx
Lecture-10_PHP-OOP.pptx
 
Python_Unit_2 OOPS.pptx
Python_Unit_2  OOPS.pptxPython_Unit_2  OOPS.pptx
Python_Unit_2 OOPS.pptx
 
Learning C++ - Class 4
Learning C++ - Class 4Learning C++ - Class 4
Learning C++ - Class 4
 
Csharp introduction
Csharp introductionCsharp introduction
Csharp introduction
 
Introduction to objective c
Introduction to objective cIntroduction to objective c
Introduction to objective c
 
c++ Unit I.pptx
c++ Unit I.pptxc++ Unit I.pptx
c++ Unit I.pptx
 
Oop(object oriented programming)
Oop(object oriented programming)Oop(object oriented programming)
Oop(object oriented programming)
 
C# (This keyword, Properties, Inheritance, Base Keyword)
C# (This keyword, Properties, Inheritance, Base Keyword)C# (This keyword, Properties, Inheritance, Base Keyword)
C# (This keyword, Properties, Inheritance, Base Keyword)
 
Synapseindia reviews.odp.
Synapseindia reviews.odp.Synapseindia reviews.odp.
Synapseindia reviews.odp.
 
class and object C++ language chapter 2.pptx
class and object C++ language chapter 2.pptxclass and object C++ language chapter 2.pptx
class and object C++ language chapter 2.pptx
 
UNIT-IV WT web technology for 1st year cs
UNIT-IV WT web technology for 1st year csUNIT-IV WT web technology for 1st year cs
UNIT-IV WT web technology for 1st year cs
 

More from baabtra.com - No. 1 supplier of quality freshers

More from baabtra.com - No. 1 supplier of quality freshers (20)

Agile methodology and scrum development
Agile methodology and scrum developmentAgile methodology and scrum development
Agile methodology and scrum development
 
Best coding practices
Best coding practicesBest coding practices
Best coding practices
 
Core java - baabtra
Core java - baabtraCore java - baabtra
Core java - baabtra
 
Baabtra.com programming at school
Baabtra.com programming at schoolBaabtra.com programming at school
Baabtra.com programming at school
 
99LMS for Enterprises - LMS that you will love
99LMS for Enterprises - LMS that you will love 99LMS for Enterprises - LMS that you will love
99LMS for Enterprises - LMS that you will love
 
Php sessions & cookies
Php sessions & cookiesPhp sessions & cookies
Php sessions & cookies
 
Php database connectivity
Php database connectivityPhp database connectivity
Php database connectivity
 
Chapter 6 database normalisation
Chapter 6  database normalisationChapter 6  database normalisation
Chapter 6 database normalisation
 
Chapter 5 transactions and dcl statements
Chapter 5  transactions and dcl statementsChapter 5  transactions and dcl statements
Chapter 5 transactions and dcl statements
 
Chapter 4 functions, views, indexing
Chapter 4  functions, views, indexingChapter 4  functions, views, indexing
Chapter 4 functions, views, indexing
 
Chapter 3 stored procedures
Chapter 3 stored proceduresChapter 3 stored procedures
Chapter 3 stored procedures
 
Chapter 2 grouping,scalar and aggergate functions,joins inner join,outer join
Chapter 2  grouping,scalar and aggergate functions,joins   inner join,outer joinChapter 2  grouping,scalar and aggergate functions,joins   inner join,outer join
Chapter 2 grouping,scalar and aggergate functions,joins inner join,outer join
 
Chapter 1 introduction to sql server
Chapter 1 introduction to sql serverChapter 1 introduction to sql server
Chapter 1 introduction to sql server
 
Chapter 1 introduction to sql server
Chapter 1 introduction to sql serverChapter 1 introduction to sql server
Chapter 1 introduction to sql server
 
Microsoft holo lens
Microsoft holo lensMicrosoft holo lens
Microsoft holo lens
 
Blue brain
Blue brainBlue brain
Blue brain
 
5g
5g5g
5g
 
Aptitude skills baabtra
Aptitude skills baabtraAptitude skills baabtra
Aptitude skills baabtra
 
Gd baabtra
Gd baabtraGd baabtra
Gd baabtra
 
Baabtra soft skills
Baabtra soft skillsBaabtra soft skills
Baabtra soft skills
 

Recently uploaded

Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 

Recently uploaded (20)

2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 

Oops concept on c#

  • 1.
  • 2. Disclaimer: This presentation is prepared by trainees of baabtra as a part of mentoring program. This is not official document of baabtra –Mentoring Partner Baabtra-Mentoring Partner is the mentoring division of baabte System Technologies Pvt . Ltd
  • 3. Week Target Achieved 1 50 19 2 50 22 3 50 Typing Speed
  • 4. Jobs Applied # Company Designation Applied Date Current Status 1 2 3
  • 5. Oops Concept in C# Nabeel nabilmohad@gmail.com nabilmohad nabilmohad nabilmohad 9746477551
  • 6. POP OOP In POP, program is divided into small parts called functions. In OOP, program is divided into parts called objects. POP does not have any proper way for hiding data so it is less secure. OOP provides Data Hiding so provides more security. Example of POP are : C, VB, FORTRAN, Pascal. Example of OOP are : C++, JAVA, VB.NET, C#.NET.
  • 7. Oops Concept in C# • Object Oriented Programming language(OOPS):- It is a methodology to write the program where we specify the code in form of classes and objects.
  • 8. Class • Class is a user defined data type. it is like a template. In c# variable are termed as instances of classes. which are the actual objects. Class classname { variable declaration; Method declaration; }
  • 9. Object • Object is run time entity which has different attribute to identify it uniquely. Rectangle rect1=new rectangle(); Rectangle rect1=new rectangle(); Here variable 'rect1' & rect2 is object of the rectangle class. The Method Rectangle() is the default constructor of the class. we can create any number of objects of Rectangle class.
  • 10. Basic Concept of oops:- • There are main three core principles of any object oriented languages. • INHERITANCE • POLYMORPHISM • ENCAPSULATION
  • 11. INHERITANCE:- • One class can include the feature of another class by using the concept of inheritance.In c# a class can be inherit only from one class at a time.Whenever we create class that automatic inherit from System.Object class,till the time the class is not inherited from any other class.
  • 12. • class BaseClass • { • //Method to find sum of give 2 numbers • public int FindSum(int x, int y) • { • return (x + y); • } • //method to print given 2 numbers • //When declared protected , can be accessed only from inside the derived class • //cannot access with the instance of derived class • protected void Print(int x, int y) • { • Console.WriteLine("First Number: " + x); • Console.WriteLine("Second Number: " + y); • } • }
  • 13. • class Derivedclass : BaseClass • { • public void Print3numbers(int x, int y, int z) • { • Print(x, y); //We can directly call baseclass members • Console.WriteLine("Third Number: " + z); • } • }
  • 14. • class Program • { • static void Main(string[] args) • { • //Create instance for derived class, so that base class members • // can also be accessed • //This is possible because derivedclass is inheriting base class • Derivedclass instance = new Derivedclass(); • instance.Print3numbers(30, 40, 50); //Derived class internally calls base class method. • int sum = instance.FindSum(30, 40); //calling base class method with derived class instance • Console.WriteLine("Sum : " + sum); • Console.Read(); • } • • }
  • 15. • Output:- • First number:30 • Second number:40 • Third number:50 • Sum:70
  • 16. ENCAPSULATION:- • Encapsulation is defined 'as the process of enclosing one or more items within a physical or logical package'. Encapsulation, in object oriented programming methodology, prevents access to implementation details. • Abstraction and encapsulation are related features in object oriented programming. Abstraction allows making relevant information visible and encapsulation enables a programmer to implement the desired level of abstraction. • Encapsulation is implemented by using access specifiers. An access specifier defines the scope and visibility of a class member. C# supports the following access specifiers: • Public • Private • Protected
  • 17. POLYMORPHISM:- • It is also concept of oops. It is ability to take more than one form. An operation may exhibit different behaviour in different situations. • C# gives us polymorphism through inheritance. Inheritance-based polymorphism allows us to define methods in a base class and override them with derived class implementations • You can have multiple definitions for the same function name in the same scope. The definition of the function must differ from each other by the types and/or the number of arguments in the argument list.
  • 18. Function Overloading • class Printdata • { • void print(int i) • { • Console.WriteLine("Printing int: {0}", i); • } • void print(double f) • { • Console.WriteLine("Printing float: {0}", f); • } • void print(string s) • { • Console.WriteLine("Printing string: {0}", s); • } • static void Main(string[] args) • { • Printdata p = new Printdata(); • // Call print to print integer • p.print(5); • // Call print to print float • p.print(500.263); • // Call print to print string • p.print("Hello C++"); • Console.ReadKey(); • } • }
  • 19. • Output:- • Printing int: 5 • Printing float: 500.263 • Printing string: Hello C++
  • 20. Override • class Color • { • public virtual void Fill() • { • Console.WriteLine("Fill me up with color"); • } • public void Fill(string s) • { • Console.WriteLine("Fill me up with {0}", s); • } • } • class Green : Color • { • public override void Fill() • { • Console.WriteLine("Fill me up with green"); • } • } • class nab • { • static void Main() • { • Green c1 = new Green(); • c1.Fill(); • c1.Fill("red"); • Console.Read(); • } • • } • Out put: • Fillup with Green • Fillup with Red
  • 21. Dynamic Polymorphism • C# allows you to create abstract classes that are used to provide partial class implementation of an interface. Implementation is completed when a derived class inherits from it. Abstract classes contain abstract methods which are implemented by the derived class. The derived classes have more specialized functionality. • Please note the following rules about abstract classes: • You cannot create an instance of an abstract class • You cannot declare an abstract method outside an abstract class • When a class is declared sealed, it cannot be inherited, abstract classes cannot be declared sealed.
  • 22. • abstract class Shape • { • • public abstract int area(); • • } • class Rectangle: Shape • { • private int length; • private int width; • public Rectangle( int a, int b) • { • length = a; • width = b; • } • public override int area () • { • Console.WriteLine("Rectangle class area :"); • return (width * length); • } • } • class RectangleTester • { • static void Main(string[] args) • { • Rectangle r = new Rectangle(10, 7); • double a = r.area(); • Console.WriteLine("Area: {0}",a); • Console.ReadKey(); • } • } • Out put: • Rectangle class area : • Area:70
  • 23. Abstract Classes and Class Members • The purpose of an abstract class is to provide a common definition of a base class that multiple derived classes can share. For example, a class library may define an abstract class that is used as a parameter to many of its functions, and require programmers using that library to provide their own implementation of the class by creating a derived class. • Abstract classes may also define abstract methods. This is accomplished by adding the keyword abstract before the return type of the method. For example:
  • 24. sealed • When applied to a class, the sealed modifier prevents other classes from inheriting from it. • When you define new methods or properties in a class, you can prevent deriving classes from overriding them by not declaring them as virtual.
  • 25.
  • 26. If this presentation helped you, please visit our page facebook.com/baabtra and like it. Thanks in advance. www.baabtra.com | www.massbaab.com |www.baabte.com
  • 27. Contact Us Emarald Mall (Big Bazar Building) Mavoor Road, Kozhikode, Kerala, India. Ph: + 91 – 495 40 25 550 NC Complex, Near Bus Stand Mukkam, Kozhikode, Kerala, India. Ph: + 91 – 495 40 25 550 Start up Village Eranakulam, Kerala, India. Email: info@baabtra.com