define oops with class and object
Answer Posted / ananth kumar
object is a real world entity while classes are collection
of classes.
The oops means object oriented programming.It is a
Programming techniques which include features such as data
abstraction, encapsulation, modularity, polymorphism, and
inheritance
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What is abstraction oop?
What is class and object with example?
Why we use classes in oop?
Can you inherit a private class?
Where You Can Use Interface in your Project
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What is object in oop?
What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).
How do you define a class in oop?
i am getting an of the type can not convert int to int *. to overcome this problem what we should do?
What does and I oop and sksksk mean?
Why multiple inheritance is not possible?
write knight tour problem which is present in datastructure