What happens if an exception is throws from an, object's
constructor and object's destructor?
Answer
Is This Answer Correct ? | 3 Yes | 0 No |
Question { 6671 }
why we cant create array of refrences
Answer
Is This Answer Correct ? | 0 Yes | 0 No |
Can we remove an element in a single linked list without
traversing?
Lets suppose the link list is like this
1 2 3 4 5 6
We need to remove 4 from this list (without traversing from
beginning) and the final link list shud be 1 2 3 5 6
only thing we know is the pointer to element "4". How can
we remove "4" and link "3" to "5"?
Answer
Is This Answer Correct ? | 1 Yes | 4 No |
Question { 5019 }
What is the difference in size of this two clasees?
Class A
{
int a;
char c;
float f;
}
Class B
{
float f;
char c;
int a;
}
Answer
Is This Answer Correct ? | 3 Yes | 0 No |
Question { 5266 }
Difference between linked list and array?
Answer
Is This Answer Correct ? | 8 Yes | 1 No |
difference between structure and union.
Answer
Is This Answer Correct ? | 24 Yes | 0 No |
in the following, A D
B G E
C F
Each of the seven digits from 0,1,2,3,4,5,6,7,8,9 is:
a)Represented by a different letter in abov fig:
b)Positioned in the fig abov so tht A*B*C,B*G*E,D*E*F are
equal. wch does g represents?
C
Answer
Is This Answer Correct ? | 7 Yes | 1 No |