oops concept is used for?
Answers were Sorted based on User's Feedback
Answer / yj
OOP concepts were introduced to overcome the limitations of POP(Procedure Oriented Programming). The first and foremost aim of OOP was to secure the data by encapsulating it in class and providing the only way to access them i.e., through functions which are in the same class.
Secondly, it reduces the complexity.
Thirdly, it reuses the code and hence uses memory efficiently.
There are 3 main OOP concepts :
1. Encapsulation.
2. Polymorphism.
3. Inheritance.
| Is This Answer Correct ? | 34 Yes | 1 No |
secureity as well as to increase the execution speed by
providing data and functions together with in an object
| Is This Answer Correct ? | 9 Yes | 8 No |
char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output
what is virtual function?
What is the correct syntax for inheritance? 1) class aclass : public superclass 2) class aclass inherit superclass 3) class aclass <-superclass
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
What are generic functions and generic classes?
What is abstraction and encapsulation?
write string class as your own class in java without using any built-in function
What is solid in oops?
In what situation factory design patterns,DAO design patterns,singleton design patterns should be applied.?
What is the difference between pass by value,pass by pointer,pass by reference in the catch block in the exception handling in c++
what is data abstraction with example.
Why do we use class?