Latest Answer: C++ is an Object Oriented Programming Language is as we know , perfectly backword compatible with C. Becase of this backword compatibility .. it has got many flaws in it that prevented it to become a really good OOP language. Java was developped by ...
Latest Answer: persistence for permanenet storage, transient for temporary storage, ...
Latest Answer: WELL DESIGNED MODULES ALWAYS HIDES ALL OF ITS IMPLEMENTAIONS DETAILS. MODULES THEN COMMUNICATE WITH EACH OTHER ONLY THROUGH API's UNKNOW TO EACH OTHER INNER IMPLEMENTATIONSPROPER USE OF ACCESS MODIFIERS (PRIVATE,PUBLIC,PROTECTED) IS MUST FOR INFORMATION ...
Latest Answer: Encapsulation is nothing but binding both data members and member functions that operates on that data into single entity called Class. so that One object's data is separated from other object so that is called as Data Hiding that can be achieved using ...
While copying the objects if you say X a = b and asssume that '=' operator is overloaded then what it will call, a copy constructor or operator overloading function
Please suggest use of FO
Latest Answer: It speeds up the execution of programme. ...
The meaning of Polymorphism is something like one name many forms. Polymorphism enables one entity to be used as as general category for different types of actions. The specific action is determined by
Latest Answer: Polymorphism consists of 2 principles: Overloading and Overriding ...
From a practical programming viewpoint, polymorphism exists in three distinct forms in Java: Method overloading Method overriding through inheritance Method overriding through the Java interface
Latest Answer: It holds more than one form, It has two types : -1. compile time polymorphism: - That holds the overloading.2. run time polymorphism: -That holds the overridding. ...
Encapsulation is a process of binding or wrapping the data and the codes that operates on the data into a single entity. This keeps the data safe from outside interface and misuse. One way to think about
Latest Answer: Hidding the details of low level data from other. ...
View page << Previous 2 3 4 5 [6] 7 Next >>

Go Top