Tuesday, May 13, 2008

C,C++,C#





Does c++ support multilevel and multiple inheritance?


Yes.


What are the advantages of inheritance?


• It permits code reusability.

• Reusability saves time in program development.

• It encourages the reuse of proven and debugged high-quality software, thus reducing problem after a system becomes functional.


What is the difference between declaration and definition?


The declaration tells the compiler that at some later point we plan to present the definition of this declaration.
E.g.: void stars () //function declaration
The definition contains the actual implementation.

E.g.: void stars () // declarator
{
for(int j=10; j>=0; j--) //function body
cout<<”*”; cout<



What is the difference between an ARRAY and a LIST?


Answer1

Array is collection of homogeneous elements.
List is collection of heterogeneous elements.

For Array memory allocated is static and continuous.
For List memory allocated is dynamic and Random.

Array: User need not have to keep in track of next memory allocation.
List: User has to keep in Track of next location where memory is allocated.

Answer2

Array uses direct access of stored members, list uses sequencial access for members.

//With Array you have direct access to memory position 5
Object x = a[5]; // x takes directly a reference to 5th element of array

//With the list you have to cross all previous nodes in order to get the 5th node:
list mylist;
list::iterator it;

for( it = list.begin() ; it != list.end() ; it++ )
{
if( i==5)
{
x = *it;
break;
}
i++;
}


0 comments: