what is oops
Answers were Sorted based on User's Feedback
Answer / prakash
object oriented programming system or sw is nothing but it
is one of the programming paradigm in which a problem can
be treated as a collection of objects and these objects are
representing problems and/or sub-problems. And these
objects are communicating among them to solve the given
task.
thank you
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / abhinav singh
object oriented programming system(software)
| Is This Answer Correct ? | 7 Yes | 0 No |
Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300
Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;
why can't we declare data member of class auto register or extern
How can you say that a template is better than a base class?
What is #include iomanip?
Difference between const char* p and char const* p?
What are different types of polymorphism supported by C++
Do you know what are static and dynamic type checking?
Do class method definitions?
What is iterator in c++?
If dog is a friend of boy and boy is a friend of house, is dog a friend of house?
Explain linear search.