What are the OOPS concepts?
Answer Posted / vaibhav munde
Object oriented programming organizes a program around it's
data i.e objects and a set of well defined interface to
that data. An Object-oriented program can be characterized
as data controlling access to code.
OOPs concepts are
1)object
2)class
3)encapsulation
4)abstraction
5)polymorphism
6)inheritance
7)message passing
8)dynamic binding
These all are partially supported by c++,java supports
all the above features
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Get me a number puzzle game-program
write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory
design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)
how to get the oracle certification? send me the answer
What are the important components of cohesion?
How can you overcome the diamond problem in inheritance?
What polymorphism means?
Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.
What are the benefits of oop?
What is destructor in oop?
What is an advantage of polymorphism?
Get me an image implementation program.
Why do we use class?
Can enum be null?
How do you explain polymorphism?