what is object?
Answers were Sorted based on User's Feedback
Answer / jayesh pawar
OBJECT IS ONE OF THE TYPE OF INSTANCE OF THE CLASS
| Is This Answer Correct ? | 15 Yes | 0 No |
Answer / v.santhoshini
object is an instance of the class
or
object is a real world entity
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / tdurga
OBJECT IS ONE OF THE TYPE OF INSTANCE OF THE CLASS
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / jai
an object is a physical representation of a class.
example:
class - fruit(logical)
object- apple(physical)
| Is This Answer Correct ? | 5 Yes | 5 No |
Answer / sruthi
Objects are Instances of a Class,And Class is an Collection
of Objets.
| Is This Answer Correct ? | 0 Yes | 0 No |
Show the application of a dynamic array with the help of an example.
if there is binary tree which one is the easiest way to delete all child node?
Do vectors start at 0 c++?
What is the purpose of the "delete" operator?
What are the uses of c++ in the real world?
How to declare a function pointer?
Why is it called c++?
Write about the members that a derived class can add?
What is polymorphism and its type in c++?
what are function pointers?
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
Explain register storage specifier.