What are the OOPS concepts?
Answer Posted / aakritybuxy
Its a concept,used to describe a computer application that
is composed of multiple objects,which are connected to each
other. Three of the most basic concept for OOPS are:
* Classes
* Objects
* Methods...
There are few more concepts :
* Inheritance
* Abstraction
* Polymorphism
* Encapsulation.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What causes polymorphism?
What do you mean by variable?
Why is polymorphism used?
What are properties in oop?
what is different between oops and c++
What is difference between oop and pop?
What is stream in oop?
Why do we use inheritance?
What is object and class in oops?
Can enum be null?
what is difference between class template and template class?
What is oops and its features?
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.
Why is abstraction needed?
What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?