difference between class and object
Answer Posted / saquib
class is compiled.
class is a keyword which is used to create customise data type.
class without object is logical.
but object never compiled it only executed.
object is a physical representation of a class
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can you inherit a private class?
Which language is pure oop?
State what is encapsulation and friend function?
write a programe to calculate the simple intrest and compund intrest using by function overlading
INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?
any one please tell me the purpose of operator overloading
What are the three main types of variables?
What is overloading and its types?
What is overriding in oop?
What is the diamond problem in inheritance?
What is ambiguity in inheritance?
What is abstract class in oops?
Can abstract class have normal methods?
Can enum be null?
What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?