maria alex


{ City } nagercoil
< Country > india
* Profession * student
User No # 19352
Total Questions Posted # 0
Total Answers Posted # 3

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 55
Users Marked my Answers as Wrong # 27
Questions / { maria alex }
Questions Answers Category Views Company eMail




Answers / { maria alex }

Question { L&T, 10553 }

what is virtual destructor


Answer

Normally virtual destructor is used to destroy a base class
object without knowing it's type...

Is This Answer Correct ?    0 Yes 3 No

Question { 94046 }

To generate the series 1+3+5+7+... using C program


Answer

#include"stdio.h"
#include"conio.h"
void main()
{
int s=0;
for(int i=1;i<100;i++)
{
if(i%2==0)
continue;
s=s+i;
}
printf("The answer is...%d",s);
getch();
}

Is This Answer Correct ?    35 Yes 21 No


Question { Symphony, 9170 }

What is the differances between a abstract calss and
interface


Answer

An abstract class holds both method prototpypes and method
definitions also...But it is not in the case of
interface..It can contain only protypes.. It should be
defined only where it is implemented...

Is This Answer Correct ?    20 Yes 3 No