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
Why do we use return in c?
Can we assign string to char pointer?
Are the variables argc and argv are always local to main?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
How do I use void main?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
What is table lookup in c?
What is fflush() function?
How can I insert or delete a line (or record) in the middle of a file?
How can you access memory located at a certain address?
What is the difference between a function and a method in c?
Can we replace the struct function in tree syntax with a union?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
What are the different categories of functions in c?
Which of these functions is safer to use : fgets(), gets()? Why?