Object Oriented Technologies

Tushar B Kute
Tushar B KuteResearcher at http://mitu.co.in
Object Oriented Technologies,[object Object],Tushar B Kute,[object Object],Assistant Professor in I.T.,[object Object],Sandip Institute of Technology & Research Centre, Nashik,[object Object]
Programming Paradigms,[object Object],Procedure Oriented ,[object Object],Object Oriented,[object Object]
3R,[object Object],Readability,[object Object],Reusability,[object Object],Reliability,[object Object]
Procedure Oriented Programming,[object Object],Procedures / Functions are used to form a modular program.,[object Object],For example:,[object Object],C,[object Object],Pascal,[object Object],Cobol,[object Object]
Example: C Program,[object Object],#include<stdio.h>,[object Object],int main( ),[object Object],{,[object Object],. . . . . . ,[object Object],},[object Object],void display( ),[object Object],{,[object Object],. . . . . .,[object Object],},[object Object],intaddme(int a, int b),[object Object],{,[object Object],. . . . . .,[object Object],},[object Object]
Object Oriented Techniques,[object Object],ADT,[object Object],Polymorphism,[object Object],Inheritance,[object Object]
Abstract Data Type,[object Object],Denotes the essential characteristics of an object that distinguish it from all other kinds of things.,[object Object],ADT = data representation + its operations,[object Object],Information hiding,[object Object],Encapsulation,[object Object]
Abstract Data Type,[object Object],state, implemented by attributes,[object Object],behaviour, implemented by operation,[object Object],identity,[object Object]
Abstract Data Type,[object Object],class,[object Object],object,[object Object],instance,[object Object],encapsulation,[object Object],method,[object Object],message,[object Object],protocol,[object Object]
Abstract Data Type,[object Object],Class A class is a blueprint for creating objects. It is like a data type in traditional language.,[object Object],Instance An instance is a particular element of a class. It is like a variable in traditional language.,[object Object]
Polymorphism ,[object Object],Monomorphismevery values & variables is interpreted to be of one and only one type.,[object Object],Polymorphism some variables may have more than one type.,[object Object]
Polymorphism ,[object Object],Binding,[object Object],static or early bindingaddInt(x, y)addFloat(x, y),[object Object],dynamic or lateadd(x, y),[object Object]
Polymorphism ,[object Object],universal polymorphism1. parametric    (ex) generic function2. inclusion    (ex) subtyping, inheritance mechanism,[object Object],ad hoc. polymorphism1. overloading    (ex) +2. coercion           (ex)  3 + 4.5,[object Object]
Example:,[object Object],int add (int a, int b),[object Object],float add (float a, int b),[object Object],float add (float a, float b),[object Object],int add (int a, int b, int c),[object Object],float add (int a, float b, int c),[object Object]
Inheritance ,[object Object],vehicle,[object Object],land,[object Object],vehicle,[object Object],water,[object Object],vehicle,[object Object],air,[object Object],vehicle,[object Object],car,[object Object],truck,[object Object],canoe,[object Object],submarine,[object Object],jet,[object Object],rocket,[object Object],18-wheeler,[object Object],pickup,[object Object]
Inheritance ,[object Object],Kind-of,[object Object],Part-of,[object Object]
Inheritance ,[object Object],A room is a part of a house.A kitchen is a kind of room.,[object Object],A boat is a part of a fleet.A cruiser is a kind of a boat.,[object Object],A child is a part of a family.A son is a kind of a child.,[object Object],A word is a part of a sentence.A noun is a kind of a word.,[object Object]
Problem Solving using OOP,[object Object],Behaviour of a system (otherwise the state of the system) is exposed through the change of some characteristics.,[object Object],paint new color,[object Object],Property name : surface-color,[object Object],Property value ; green,[object Object],Property name : surface-color,[object Object],Property value ; red,[object Object],The force  that change surface-color is PAINT action,[object Object]
Class ,[object Object],Class Describes an object, description includes properties (attributes) and methods the object can perform,[object Object],CD_Drive {,[object Object],boolean _latchState,[object Object],boolean _contentState,[object Object],openLatch(),[object Object],closeLatch(),[object Object],	insert(),[object Object],	eject(),[object Object],},[object Object],Object,[object Object],Each object consume its own space (Identity),[object Object],Description about CD-Driver,[object Object]
Abstraction ,[object Object],Class wraps necessary details of the object and  expose few through interface,[object Object],Interface or method is communication point.,[object Object],Interface or method can be invoked on an object.,[object Object],CD_Drivelg,[object Object],CD_Drivesegate,[object Object],lg.openLatch();,[object Object]
Object Oriented Languages,[object Object],Objects are supported.,[object Object],Objects are organized into classes.,[object Object],Classes are organized into hierarchies using inheritance.,[object Object],An object communicates by sending messages to invoke the operations of other objects,[object Object],Objects of varying types respond to the same message differently using polymorphism.,[object Object]
Object Oriented Programming Languages ,[object Object],First object-oriented language, Simula at 1967.,[object Object],Proved by Smalltalk at 1976. ,[object Object],C++, Effiel, Common Lisp, Object-Pascal, ... appeared at late 1970s. ,[object Object],Object-oriented programming environments matured at 1980s. ,[object Object],User interface (1980s) : WIMP, Dynabook, Apple Lisa and Macintosh, Window systems..,[object Object]
Object Oriented Programming Languages ,[object Object],Java appeared at 1995,[object Object],C# by Microsoft at 2001,[object Object]
Object Oriented Languages,[object Object],Ada,[object Object],CLU,[object Object],C++,[object Object],Modula-2,[object Object],Objective-C,[object Object],Smalltalk,[object Object],CLOS (Lisp),[object Object],Java ,[object Object],C#,[object Object]
Object Oriented Languages,[object Object],C++,[object Object],AT&Tdesigned by BjarneStroustrup,[object Object],ANSI-C compatible,[object Object],OOP ,[object Object]
Object Oriented Languages,[object Object],JAVA,[object Object],Designed at SUNby James Gosling and team,[object Object],C/C++syntax compatible,[object Object],True OOP,[object Object],ByteCode,[object Object],JVM,[object Object]
Industrial Importance of OOT,[object Object],Java ,[object Object],J2SE,[object Object],J2EE,[object Object],J2ME,[object Object],Microsoft Visual Studio.net,[object Object],PHP,[object Object]
Market Share in I.T.,[object Object],62 percent technologies are based on Java,[object Object],22 percent are on .net,[object Object],16 percent are on others… ,[object Object]
Thank You,[object Object],tbkute@gmail.com,[object Object]
1 of 29

Recommended

Python decorators by
Python decoratorsPython decorators
Python decoratorsAlex Su
2.2K views36 slides
UML Diagrams by
UML DiagramsUML Diagrams
UML DiagramsKartik Raghuvanshi
32.6K views37 slides
Object Oriented Programming Using C++ by
Object Oriented Programming Using C++Object Oriented Programming Using C++
Object Oriented Programming Using C++Muhammad Waqas
11.1K views32 slides
Software Engineering concept by
Software Engineering concept Software Engineering concept
Software Engineering concept Atamjitsingh92
9.1K views43 slides
Object Oriented Analysis and Design by
Object Oriented Analysis and DesignObject Oriented Analysis and Design
Object Oriented Analysis and DesignHaitham El-Ghareeb
74.4K views30 slides
Formal Specification in Software Engineering SE9 by
Formal Specification in Software Engineering SE9Formal Specification in Software Engineering SE9
Formal Specification in Software Engineering SE9koolkampus
30.3K views40 slides

More Related Content

What's hot

Organization and team structures by
Organization and team structuresOrganization and team structures
Organization and team structuresNur Islam
42.1K views20 slides
Token, Pattern and Lexeme by
Token, Pattern and LexemeToken, Pattern and Lexeme
Token, Pattern and LexemeA. S. M. Shafi
10.6K views2 slides
Basic concepts of object oriented programming by
Basic concepts of object oriented programmingBasic concepts of object oriented programming
Basic concepts of object oriented programmingSachin Sharma
50.7K views12 slides
Object-Oriented Analysis & Design (OOAD) Domain Modeling Introduction by
  Object-Oriented Analysis & Design (OOAD)  Domain Modeling Introduction  Object-Oriented Analysis & Design (OOAD)  Domain Modeling Introduction
Object-Oriented Analysis & Design (OOAD) Domain Modeling IntroductionDang Tuan
24.8K views61 slides
Software Engineering (Project Planning & Estimation) by
Software Engineering (Project Planning &  Estimation)Software Engineering (Project Planning &  Estimation)
Software Engineering (Project Planning & Estimation)ShudipPal
2.3K views29 slides
Oop Presentation by
Oop PresentationOop Presentation
Oop PresentationGhaffar Khan
11.8K views11 slides

What's hot(20)

Organization and team structures by Nur Islam
Organization and team structuresOrganization and team structures
Organization and team structures
Nur Islam42.1K views
Token, Pattern and Lexeme by A. S. M. Shafi
Token, Pattern and LexemeToken, Pattern and Lexeme
Token, Pattern and Lexeme
A. S. M. Shafi10.6K views
Basic concepts of object oriented programming by Sachin Sharma
Basic concepts of object oriented programmingBasic concepts of object oriented programming
Basic concepts of object oriented programming
Sachin Sharma50.7K views
Object-Oriented Analysis & Design (OOAD) Domain Modeling Introduction by Dang Tuan
  Object-Oriented Analysis & Design (OOAD)  Domain Modeling Introduction  Object-Oriented Analysis & Design (OOAD)  Domain Modeling Introduction
Object-Oriented Analysis & Design (OOAD) Domain Modeling Introduction
Dang Tuan24.8K views
Software Engineering (Project Planning & Estimation) by ShudipPal
Software Engineering (Project Planning &  Estimation)Software Engineering (Project Planning &  Estimation)
Software Engineering (Project Planning & Estimation)
ShudipPal2.3K views
Oop Presentation by Ghaffar Khan
Oop PresentationOop Presentation
Oop Presentation
Ghaffar Khan11.8K views
Inheritance in c++ ppt (Powerpoint) | inheritance in c++ ppt presentation | i... by cprogrammings
Inheritance in c++ ppt (Powerpoint) | inheritance in c++ ppt presentation | i...Inheritance in c++ ppt (Powerpoint) | inheritance in c++ ppt presentation | i...
Inheritance in c++ ppt (Powerpoint) | inheritance in c++ ppt presentation | i...
cprogrammings31.6K views
Inheritance in c++ by Vineeta Garg
Inheritance in c++Inheritance in c++
Inheritance in c++
Vineeta Garg28.7K views
Dag representation of basic blocks by Jothi Lakshmi
Dag representation of basic blocksDag representation of basic blocks
Dag representation of basic blocks
Jothi Lakshmi19.1K views
Control structure C++ by Anil Kumar
Control structure C++Control structure C++
Control structure C++
Anil Kumar18.1K views
Object model by James Wong
Object modelObject model
Object model
James Wong19K views
Introduction to Software Project Management by Reetesh Gupta
Introduction to Software Project ManagementIntroduction to Software Project Management
Introduction to Software Project Management
Reetesh Gupta14.9K views
Oop lec 2(introduction to object oriented technology) by Asfand Hassan
Oop lec 2(introduction to object oriented technology)Oop lec 2(introduction to object oriented technology)
Oop lec 2(introduction to object oriented technology)
Asfand Hassan1.9K views
C++ Inheritance Tutorial | Introduction To Inheritance In C++ Programming Wit... by Simplilearn
C++ Inheritance Tutorial | Introduction To Inheritance In C++ Programming Wit...C++ Inheritance Tutorial | Introduction To Inheritance In C++ Programming Wit...
C++ Inheritance Tutorial | Introduction To Inheritance In C++ Programming Wit...
Simplilearn2.1K views

Viewers also liked

Object Oriented Technologies by
Object Oriented TechnologiesObject Oriented Technologies
Object Oriented TechnologiesUmesh Nikam
700 views139 slides
Object oriented techniques by
Object oriented techniquesObject oriented techniques
Object oriented techniquesLearnNowOnline
8.8K views94 slides
Oops ppt by
Oops pptOops ppt
Oops pptabhayjuneja
70.7K views55 slides
Object oriented software engineering concepts by
Object oriented software engineering conceptsObject oriented software engineering concepts
Object oriented software engineering conceptsKomal Singh
42.3K views69 slides
Data Flow Modeling by
Data Flow ModelingData Flow Modeling
Data Flow ModelingPadmanaban Kalyanaraman
2.3K views25 slides
Communication ppt. by
Communication ppt.Communication ppt.
Communication ppt.Tapish Pandey
48.3K views25 slides

Viewers also liked(20)

Object Oriented Technologies by Umesh Nikam
Object Oriented TechnologiesObject Oriented Technologies
Object Oriented Technologies
Umesh Nikam700 views
Object oriented techniques by LearnNowOnline
Object oriented techniquesObject oriented techniques
Object oriented techniques
LearnNowOnline8.8K views
Object oriented software engineering concepts by Komal Singh
Object oriented software engineering conceptsObject oriented software engineering concepts
Object oriented software engineering concepts
Komal Singh42.3K views
Communication ppt. by Tapish Pandey
Communication ppt.Communication ppt.
Communication ppt.
Tapish Pandey48.3K views
COM2304: Introduction to Computer Vision & Image Processing by Hemantha Kulathilake
COM2304: Introduction to Computer Vision & Image Processing COM2304: Introduction to Computer Vision & Image Processing
COM2304: Introduction to Computer Vision & Image Processing
Oops Concepts by guest1aac43
Oops ConceptsOops Concepts
Oops Concepts
guest1aac431.3K views
Open source technology by aparnaz1
Open source technologyOpen source technology
Open source technology
aparnaz17.5K views
Module 3 Object Oriented Data Models Object Oriented notations by Taher Barodawala
Module 3  Object Oriented Data Models Object Oriented notationsModule 3  Object Oriented Data Models Object Oriented notations
Module 3 Object Oriented Data Models Object Oriented notations
Taher Barodawala6.4K views
Electronic and mobile banking by Bilal Malick
Electronic and mobile bankingElectronic and mobile banking
Electronic and mobile banking
Bilal Malick19.4K views
Desktop publishing (power point) by kuromi12
Desktop publishing (power point)Desktop publishing (power point)
Desktop publishing (power point)
kuromi1221.4K views
OPEN SOURCE SEMINAR PRESENTATION by Ritwick Halder
OPEN SOURCE SEMINAR PRESENTATIONOPEN SOURCE SEMINAR PRESENTATION
OPEN SOURCE SEMINAR PRESENTATION
Ritwick Halder77.9K views
Ieee paper format by Sameer Hudli
Ieee paper formatIeee paper format
Ieee paper format
Sameer Hudli92.1K views
Bpr examples from indian corporate world by RiTu Karn
Bpr  examples from indian corporate worldBpr  examples from indian corporate world
Bpr examples from indian corporate world
RiTu Karn42.4K views
Trends in communication technology by Vishal Langthasa
Trends in communication technologyTrends in communication technology
Trends in communication technology
Vishal Langthasa51.1K views
Artificial Intelligence Presentation by lpaviglianiti
Artificial Intelligence PresentationArtificial Intelligence Presentation
Artificial Intelligence Presentation
lpaviglianiti118.1K views

Similar to Object Oriented Technologies

Object Oriented Language by
Object Oriented LanguageObject Oriented Language
Object Oriented Languagedheva B
2.8K views25 slides
香港六合彩 &raquo; SlideShare by
香港六合彩 &raquo; SlideShare香港六合彩 &raquo; SlideShare
香港六合彩 &raquo; SlideSharebiyu
747 views21 slides
Lecture 2 by
Lecture 2Lecture 2
Lecture 2emailharmeet
19.7K views26 slides
Week1 by
Week1Week1
Week1Siya Agarwal
324 views35 slides
Object oriented programming by
Object oriented programmingObject oriented programming
Object oriented programmingFahad Abbasi
49 views3 slides
Week1 by
Week1Week1
Week1Uzma Qureshi
218 views21 slides

Similar to Object Oriented Technologies(20)

Object Oriented Language by dheva B
Object Oriented LanguageObject Oriented Language
Object Oriented Language
dheva B2.8K views
香港六合彩 &raquo; SlideShare by biyu
香港六合彩 &raquo; SlideShare香港六合彩 &raquo; SlideShare
香港六合彩 &raquo; SlideShare
biyu747 views
Object oriented programming by Fahad Abbasi
Object oriented programmingObject oriented programming
Object oriented programming
Fahad Abbasi49 views
Object oriented programming by sana younas
Object oriented programmingObject oriented programming
Object oriented programming
sana younas110 views
From Java to Python: beating the Stockholm syndrome by Javier Arias Losada
From Java to Python: beating the Stockholm syndromeFrom Java to Python: beating the Stockholm syndrome
From Java to Python: beating the Stockholm syndrome
Javier Arias Losada2.6K views
Introduction to object oriented programming by Abzetdin Adamov
Introduction to object oriented programmingIntroduction to object oriented programming
Introduction to object oriented programming
Abzetdin Adamov3.2K views
Master in javascript by Robbin Zhao
Master in javascriptMaster in javascript
Master in javascript
Robbin Zhao791 views
TI1220 Lecture 14: Domain-Specific Languages by Eelco Visser
TI1220 Lecture 14: Domain-Specific LanguagesTI1220 Lecture 14: Domain-Specific Languages
TI1220 Lecture 14: Domain-Specific Languages
Eelco Visser2K views
Object oriented programming using c++ by Hoang Nguyen
Object oriented programming using c++Object oriented programming using c++
Object oriented programming using c++
Hoang Nguyen522 views

More from Tushar B Kute

Apache Pig: A big data processor by
Apache Pig: A big data processorApache Pig: A big data processor
Apache Pig: A big data processorTushar B Kute
3.2K views50 slides
01 Introduction to Android by
01 Introduction to Android01 Introduction to Android
01 Introduction to AndroidTushar B Kute
868 views15 slides
Ubuntu OS and it's Flavours by
Ubuntu OS and it's FlavoursUbuntu OS and it's Flavours
Ubuntu OS and it's FlavoursTushar B Kute
1.7K views34 slides
Install Drupal in Ubuntu by Tushar B. Kute by
Install Drupal in Ubuntu by Tushar B. KuteInstall Drupal in Ubuntu by Tushar B. Kute
Install Drupal in Ubuntu by Tushar B. KuteTushar B Kute
893 views25 slides
Install Wordpress in Ubuntu Linux by Tushar B. Kute by
Install Wordpress in Ubuntu Linux by Tushar B. KuteInstall Wordpress in Ubuntu Linux by Tushar B. Kute
Install Wordpress in Ubuntu Linux by Tushar B. KuteTushar B Kute
739 views26 slides
Share File easily between computers using sftp by
Share File easily between computers using sftpShare File easily between computers using sftp
Share File easily between computers using sftpTushar B Kute
2.2K views29 slides

More from Tushar B Kute(20)

Apache Pig: A big data processor by Tushar B Kute
Apache Pig: A big data processorApache Pig: A big data processor
Apache Pig: A big data processor
Tushar B Kute3.2K views
01 Introduction to Android by Tushar B Kute
01 Introduction to Android01 Introduction to Android
01 Introduction to Android
Tushar B Kute868 views
Ubuntu OS and it's Flavours by Tushar B Kute
Ubuntu OS and it's FlavoursUbuntu OS and it's Flavours
Ubuntu OS and it's Flavours
Tushar B Kute1.7K views
Install Drupal in Ubuntu by Tushar B. Kute by Tushar B Kute
Install Drupal in Ubuntu by Tushar B. KuteInstall Drupal in Ubuntu by Tushar B. Kute
Install Drupal in Ubuntu by Tushar B. Kute
Tushar B Kute893 views
Install Wordpress in Ubuntu Linux by Tushar B. Kute by Tushar B Kute
Install Wordpress in Ubuntu Linux by Tushar B. KuteInstall Wordpress in Ubuntu Linux by Tushar B. Kute
Install Wordpress in Ubuntu Linux by Tushar B. Kute
Tushar B Kute739 views
Share File easily between computers using sftp by Tushar B Kute
Share File easily between computers using sftpShare File easily between computers using sftp
Share File easily between computers using sftp
Tushar B Kute2.2K views
Signal Handling in Linux by Tushar B Kute
Signal Handling in LinuxSignal Handling in Linux
Signal Handling in Linux
Tushar B Kute10.4K views
Implementation of FIFO in Linux by Tushar B Kute
Implementation of FIFO in LinuxImplementation of FIFO in Linux
Implementation of FIFO in Linux
Tushar B Kute3.3K views
Implementation of Pipe in Linux by Tushar B Kute
Implementation of Pipe in LinuxImplementation of Pipe in Linux
Implementation of Pipe in Linux
Tushar B Kute5.2K views
Basic Multithreading using Posix Threads by Tushar B Kute
Basic Multithreading using Posix ThreadsBasic Multithreading using Posix Threads
Basic Multithreading using Posix Threads
Tushar B Kute1.5K views
Part 04 Creating a System Call in Linux by Tushar B Kute
Part 04 Creating a System Call in LinuxPart 04 Creating a System Call in Linux
Part 04 Creating a System Call in Linux
Tushar B Kute3.8K views
Part 03 File System Implementation in Linux by Tushar B Kute
Part 03 File System Implementation in LinuxPart 03 File System Implementation in Linux
Part 03 File System Implementation in Linux
Tushar B Kute3.4K views
Part 02 Linux Kernel Module Programming by Tushar B Kute
Part 02 Linux Kernel Module ProgrammingPart 02 Linux Kernel Module Programming
Part 02 Linux Kernel Module Programming
Tushar B Kute3.6K views
Part 01 Linux Kernel Compilation (Ubuntu) by Tushar B Kute
Part 01 Linux Kernel Compilation (Ubuntu)Part 01 Linux Kernel Compilation (Ubuntu)
Part 01 Linux Kernel Compilation (Ubuntu)
Tushar B Kute3.7K views
Open source applications softwares by Tushar B Kute
Open source applications softwaresOpen source applications softwares
Open source applications softwares
Tushar B Kute1K views
Introduction to Ubuntu Edge Operating System (Ubuntu Touch) by Tushar B Kute
Introduction to Ubuntu Edge Operating System (Ubuntu Touch)Introduction to Ubuntu Edge Operating System (Ubuntu Touch)
Introduction to Ubuntu Edge Operating System (Ubuntu Touch)
Tushar B Kute5.6K views
Unit 6 Operating System TEIT Savitribai Phule Pune University by Tushar B Kute by Tushar B Kute
Unit 6 Operating System TEIT Savitribai Phule Pune University by Tushar B KuteUnit 6 Operating System TEIT Savitribai Phule Pune University by Tushar B Kute
Unit 6 Operating System TEIT Savitribai Phule Pune University by Tushar B Kute
Tushar B Kute3.9K views
Technical blog by Engineering Students of Sandip Foundation, itsitrc by Tushar B Kute
Technical blog by Engineering Students of Sandip Foundation, itsitrcTechnical blog by Engineering Students of Sandip Foundation, itsitrc
Technical blog by Engineering Students of Sandip Foundation, itsitrc
Tushar B Kute870 views
Chapter 01 Introduction to Java by Tushar B Kute by Tushar B Kute
Chapter 01 Introduction to Java by Tushar B KuteChapter 01 Introduction to Java by Tushar B Kute
Chapter 01 Introduction to Java by Tushar B Kute
Tushar B Kute3K views
Chapter 02: Classes Objects and Methods Java by Tushar B Kute by Tushar B Kute
Chapter 02: Classes Objects and Methods Java by Tushar B KuteChapter 02: Classes Objects and Methods Java by Tushar B Kute
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
Tushar B Kute8.4K views

Recently uploaded

ANGULARJS.pdf by
ANGULARJS.pdfANGULARJS.pdf
ANGULARJS.pdfArthyR3
51 views10 slides
MercerJesse3.0.pdf by
MercerJesse3.0.pdfMercerJesse3.0.pdf
MercerJesse3.0.pdfjessemercerail
152 views6 slides
JRN 362 - Lecture Twenty-Three (Epilogue) by
JRN 362 - Lecture Twenty-Three (Epilogue)JRN 362 - Lecture Twenty-Three (Epilogue)
JRN 362 - Lecture Twenty-Three (Epilogue)Rich Hanley
41 views57 slides
PRELIMS ANSWER.pptx by
PRELIMS ANSWER.pptxPRELIMS ANSWER.pptx
PRELIMS ANSWER.pptxsouravkrpodder
50 views60 slides
DISTILLATION.pptx by
DISTILLATION.pptxDISTILLATION.pptx
DISTILLATION.pptxAnupkumar Sharma
65 views47 slides
unidad 3.pdf by
unidad 3.pdfunidad 3.pdf
unidad 3.pdfMarcosRodriguezUcedo
134 views38 slides

Recently uploaded(20)

ANGULARJS.pdf by ArthyR3
ANGULARJS.pdfANGULARJS.pdf
ANGULARJS.pdf
ArthyR351 views
JRN 362 - Lecture Twenty-Three (Epilogue) by Rich Hanley
JRN 362 - Lecture Twenty-Three (Epilogue)JRN 362 - Lecture Twenty-Three (Epilogue)
JRN 362 - Lecture Twenty-Three (Epilogue)
Rich Hanley41 views
Monthly Information Session for MV Asterix (November) by Esquimalt MFRC
Monthly Information Session for MV Asterix (November)Monthly Information Session for MV Asterix (November)
Monthly Information Session for MV Asterix (November)
Esquimalt MFRC107 views
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (FRIE... by Nguyen Thanh Tu Collection
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (FRIE...BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (FRIE...
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (FRIE...
Six Sigma Concept by Sahil Srivastava.pptx by Sahil Srivastava
Six Sigma Concept by Sahil Srivastava.pptxSix Sigma Concept by Sahil Srivastava.pptx
Six Sigma Concept by Sahil Srivastava.pptx
Sahil Srivastava44 views
Parts of Speech (1).pptx by mhkpreet001
Parts of Speech (1).pptxParts of Speech (1).pptx
Parts of Speech (1).pptx
mhkpreet00146 views
The Accursed House by Émile Gaboriau by DivyaSheta
The Accursed House  by Émile GaboriauThe Accursed House  by Émile Gaboriau
The Accursed House by Émile Gaboriau
DivyaSheta251 views
Creative Restart 2023: Atila Martins - Craft: A Necessity, Not a Choice by Taste
Creative Restart 2023: Atila Martins - Craft: A Necessity, Not a ChoiceCreative Restart 2023: Atila Martins - Craft: A Necessity, Not a Choice
Creative Restart 2023: Atila Martins - Craft: A Necessity, Not a Choice
Taste45 views
Retail Store Scavenger Hunt.pptx by jmurphy154
Retail Store Scavenger Hunt.pptxRetail Store Scavenger Hunt.pptx
Retail Store Scavenger Hunt.pptx
jmurphy15452 views
Education of marginalized and socially disadvantages segments.pptx by GarimaBhati5
Education of marginalized and socially disadvantages segments.pptxEducation of marginalized and socially disadvantages segments.pptx
Education of marginalized and socially disadvantages segments.pptx
GarimaBhati543 views
NodeJS and ExpressJS.pdf by ArthyR3
NodeJS and ExpressJS.pdfNodeJS and ExpressJS.pdf
NodeJS and ExpressJS.pdf
ArthyR348 views
Class 9 lesson plans by TARIQ KHAN
Class 9 lesson plansClass 9 lesson plans
Class 9 lesson plans
TARIQ KHAN82 views

Object Oriented Technologies

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.