what is a class
Answers were Sorted based on User's Feedback
Answer / ranjith jayan
a class is a collection of similar objects. ex: orange is
an object for the class fruits
| Is This Answer Correct ? | 16 Yes | 0 No |
Answer / sharad
a class is belong to the any object while an object is
belongs to the single class.a class is stateless but the
object is statefull.a class describe the logically meaning
of the object.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / rajwinder cheema
a class is a user defined data type combines both data and
function.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / sai
class is a collection of members and member functions.The
members or member functions can be called by the object of
the class.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / surabhi
a class is a way to bind data describing an entity(object) and
its associated function together...
| Is This Answer Correct ? | 1 Yes | 0 No |
What is the use of unnamed namespaces in OOPS? The only advantage I know is that they dont need the scope resolution operator while accessing them. I want to know some other advantages of unnamed namespaces...
Why do we use virtual functions?
function overridind means and simple program
What is destructor oops?
Why do we use oop?
I hv a same function name,arguments in both base class and dervied class, but the return type is different. Can we call this as a function overloading? Explain?
what is the usage of clas templates
Which language is pure oop?
Why we are use # in begning of programme of c++.
what is graphics
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).
Precompilation ?