What are the OOPS concepts?
Answers were Sorted based on User's Feedback
Answer / gajanan malode
1 encapsulation - class
2 abstraction - object
3 inheritance
4 poymorphism - compile and run (static and dynamic binding)
5 message passinng
6 delegation
7 reusability
8 Interfaces
9 extensability
10 templates
11 scalability
12 associativity
13 persitence ......etc are OOPs Cocepts
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / m.radha
object oriented programming include:
*objects
*classes
*data abstraction and encapsulation
*inheritance
*polymorphism
*dynamic binding
*message passing
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / siva
Object-oriented programming (OOP) is a computer science
term used to characterize a programming language that began
development in the 1960’s. The term ‘object-oriented
programming’ was originally coined by Xerox PARC to
designate a computer application that describes the
methodology of using objects as the foundation for
computation. By the 1980’s, OOP rose to prominence as the
programming language of choice, exemplified by the success
of C++. Currently, OOPs such as Java, J2EE, C++, C#, Visual
Basic.NET, Python and JavaScript are popular OOP
programming languages that any career-oriented Software
Engineer or developer should be familiar with.
| Is This Answer Correct ? | 191 Yes | 207 No |
Answer / v.rajaram
The concepts of OOPs are Objects Data abstraction Data
Encapsulation Inheritance Overloading .
| Is This Answer Correct ? | 57 Yes | 112 No |
c++ is a purely oop concept?
How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction
what are three tenets of object orinted Systems?Why they call like that ? Please answer me. Advance thanks.
what is object slicing?
Get me an image implementation program.
Round up a Decimal number in c++.. example Note = 3.5 is as 4 3.3 is as 3
3 Answers Accenture, Cognizant, IBM,
what is ltti
Write a c++ program to display pass and fail for three student using static member function
This program numbers the lines found in a text file. Write a program that reads text from a file and outputs each line preceded by a line number. Print the line number right-adjusted in a field of 3 spaces. Follow the line number with a colon, then one space, then the text of the line. You should get a character at a time and write code to ignore leading blanks on each line. You may assume that the lines are short enough to fit within a line on the screen. Otherwise, allow default printer or screen output behavior if the line is too long (i.e., wrap or truncate). A somewhat harder version determines the number of spaces needed in the field for the line numbers by counting lines before processing the lines of the file. This version of the program should insert a new line after the last complete word that will fit within a 72-character line.
explain dynamic binding by drowing
What is overloading in oop?
what is polymorphism?