If you liked this question/asnwer, make sure you
Subscribe to KyaPoocha.com RSS feed!
BOOKMARK THIS : BlinkList | del.icio.us | Digg it | Furl | reddit | StumbleUpon | Yahoo MyWeb |
Related Interview Questions
What are different types of inner classes? 31.07.07
Nested top-level classes, Member classes, Local classes, Anonymous classes Nested top-level classes- If you declare a class within a class and specify the stat...What modifiers may be used with an inner class that is a member of an outer class? 20.05.07
A (non-local) inner class may be declared as public, protected, private, static, final, or abstract....What are the differences between a C++ struct and C++ class? 04.05.07
The default member and base class access specifiers are different. The C++ struct has all the features of the class. The only differences are that a struct defa...What is “this” pointer? 01.05.07
The this pointer is a pointer accessible only within the member functions of a class, struct, or union type. It points to the object for which the member functi...Describe the main characteristics of static functions. 09.02.07
The main characteristics of static functions include, It is without the a this pointer, It can’t directly access the non-static members of its class It c...What is name mangling? 09.02.07
Name mangling is the process through which your c++ compilers give each function in your program a unique name. In C++, all programs have at-least a few functio...What does it mean that a method or field is “static”? 26.09.06
Static variables and methods are instantiated only once per class. In other words they are class variables, not instance variables. If you change the value of a...What are different types of inner classes? 30.08.06
Nested top-level classes, Member classes, Local classes, Anonymous classes Nested top-level classes- If you declare a class within a class and specify the st...What is static in java? 30.08.06
Static means one per class, not one for each object no matter how many instance of a class might exist. This means that you can use them without creating an ins...What are the differences between a C++ struct and C++ class? 09.03.06
The default member and base-class access specifiers are different. This is one of the commonly misunderstood aspects of C++. Believe it or not, many programmer...