What is an object?
Answers were Sorted based on User's Feedback
Answer / vikas patel
Object is the block of the memory to derived class...
ex
Rectangle rec = new Rectangle....
rec is the object
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / manoj kumar
Object is an entity with identity,state and behavior.
object is an entity that exist in the real word.
example:
int a;
a=10;
Identity of an object is a.State is represented by data value
i.e. 10 and behavior of the object is that it is integer type.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / vinod
Object is a separate copy of CLASS which has properties and
functions. it has it's own memory space and things. when
the properties are changed it will not affect the other
object of the same class
| Is This Answer Correct ? | 0 Yes | 2 No |
what is the 3 types of system development life cycle
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
Why a "operator=(...)" when there is a copy ctor?
create a c++ program that will ask 10 numbers and display their sum using array.
Can we create object of interface?
Why many objects can working together? How objects working togetherM I want to see example code.
What is the types of inheritance?
write a function that takes an integer array as an input and finds the largest number in the array. You can not sort array or use any API or searching needs?
2 Answers IBMS, Zycus Infotech,
Why do we use oops?
what is the advantage in software? what is the difference between the software developer and Engineer
What is abstract class in oops?
What are the advantanges of modularity