What is an object?

Answers were Sorted based on User's Feedback



What is an object? ..

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

What is an object? ..

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

What is an object? ..

Answer / rajesh

Basic run time entity

Is This Answer Correct ?    3 Yes 1 No

What is an object? ..

Answer / deepak saini

Object is runtime representation of class in memory.

Is This Answer Correct ?    2 Yes 0 No

What is an object? ..

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

Post New Answer

More C Interview Questions

what is c language.

3 Answers  


a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above

3 Answers  


How can I discover how many arguments a function was actually called with?

0 Answers  


Why is c called c?

0 Answers  


write a program to remove duplicate from an ordered char array? in c

2 Answers  






Write a C Program to display the following menu: Menu 1. Display 2. Copy 3. Append 4. Exit Accept the choice (1-4) from the user, and perform the following tasks: Choice 1: Accept a file name from the user and display the file on screen Choice 2: Accept two file names, and copy first file to the second Choice 3: Accept two file names, and append second file to the first file Choice 4: Terminate the program

1 Answers   Accenture, Concor, DMU, Satyam, Syntel, Tora,


What is the use of sizeof () in c?

0 Answers  


What are keywords c?

0 Answers  


How to set file pointer to beginning c?

0 Answers  


can we execute the program with the object file

1 Answers  


GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA

0 Answers  


void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }

3 Answers   ME, pspl,


Categories