Answer Posted / glibwaresoftsolutions
An object is a physical thing with a specific state and behavior. It can be described as a class instance.
A class is a logical entity that specifies the blueprint that may be used to generate or instantiate an object.
An object acquiring all of its parent object's characteristics and actions is referred to as inheritance. It offers the possibility to reuse code.
The idea of polymorphism permits a task to be carried out in various ways. To accomplish polymorphism in Java, we employ method overloading and overriding.
Abstraction is a notion that only displays an application's functionality while concealing its internal workings. Java achieves abstraction through the usage of abstract classes and interfaces.
Encapsulation is a term that describes how data and code are wrapped together into
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
How can you read a directory in a C program?
What is the purpose of 'register' keyword?
Tell us something about keyword 'auto'.
What are the different types of objects used in c?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
please give me some tips for the placement in the TCS.
What is adt in c programming?
What is wild pointer in c with example?
where are auto variables stored? What are the characteristics of an auto variable?
What are the advantage of c language?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is selection sort in c?
Why is sizeof () an operator and not a function?
What is use of null pointer in c?