What is OOPS and How it is different from Procedural
Programming ?
Answer Posted / test
OOP is programming which is oriented around objects, thus
taking advantages of encapsulation, polymorphism and
inheritance to increase code reuse and decrease code
mantenance.
In procedural program, programming logic follows certain
procedures and intructions are executed one after another.
In OOP unit of program is object which is nothing but
combination of data and code.
| Is This Answer Correct ? | 8 Yes | 11 No |
Post New Answer View All Answers
What is the purpose of polymorphism?
What is and I oop mean?
What is multilevel inheritance?
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 is encapsulation process?
how to get the oracle certification? send me the answer
Question In a class, there is a reference or pointer of an object of another class embedded, and the memory is either allocated or assigned to the new object created for this class. In the constructor, parameters are passed to initialize the data members and the embedded object reference to get inialized. What measures or design change should be advised for proper destruction and avioding memory leaks, getting pointers dangling for the embedded object memory allocation? Please suggest. Question Submitted By :: Sunil Kumar I also faced this Question!! Rank Answer Posted By Re: In a class, there is a reference or pointer of an object of another class embedded, and the memory is either allocated or assigned to the new object created for this class. In the constructor, parameters are passed to initialize the data members and the embedded object reference to get inialized. What measures or design change should be advised for proper destruction and avioding memory leaks, getting pointers dangling for the embedded object memory allocation? Please suggest. Answer # 1 use copy constructors 0 Shanthila There is something to be taken care in destructor, in copy constructor, suppose the memory is assigned to the embedded member object pointer with the parameter passed value, but if some other objects of different class also are pointing to this memory, then if some one deletes the object then this class member pointer object will become dangling, or if the object is not deleted properly then there will be memory leak. Please suggest the design change required to handle or avoid this situation
what is difference between class template and template class?
What is encapsulation with real life example?
What is data binding in oops?
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 is coupling in oops?
Why is static class not inherited?
Why do we need oop?
What is byval and byref? What are differences between them?