KyaPoocha.com

Huge Collection of Interview Questions


Archive for May, 2007

What is a dangling pointer? 

A dangling pointer arises when you use the address of an object after its lifetime is over. This may occur in situations like returning addresses of the automatic... Read more »

What is an Iterator class? 

A class that is used to traverse through the objects maintained by a container class. There are five categories of iterators: input iterators, output iterators,... Read more »

What problem does the namespace feature solve? 

Multiple providers of libraries might use common global identifiers causing a name collision when an application tries to link with two or more such libraries. The... Read more »

What is Memory alignment?? 

The term alignment primarily means the tendency of an address pointer value to be a multiple of some power of two. So a pointer with two byte alignment has a zero... Read more »

What is pure virtual function? or What is abstract class? 

When you define only function prototype in a base class without and do the complete implementation in derived class. This base class is called abstract class and... Read more »

Page 11 of 11« First...«7891011