What is an object?
Answers were Sorted based on User's Feedback
Answer / shruti
An object is the instance of the class..
it is the only gateway to access the entities defined in
the class..
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / abalonesoft
A region of storage with associated semantics.
After the declaration int i; we say that "i is an object of
type int." In OO/C++, "object" usually means "an instance of
a class." Thus a class defines the behavior of possibly many
objects (instances).
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / deepak saini
Object is runtime representation of class in memory.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / noopur
an object is the real instant of a class where class is a user defined datatype and class is a variable of that data type also called complex variable.
| Is This Answer Correct ? | 1 Yes | 0 No |
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
Is there any book to know about Basics of C Language?
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
Explain continue keyword in c
What are pointers? What are different types of pointers?
Which is better malloc or calloc?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
How can you draw circles in C?
Differentiate between new and malloc(), delete and free() ?
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
How to implement variable argument functions ?