Multiple Choice
Which of the following is a self-referential object?
A) class SelfRefer {
Int* xPtr;
};
B) class selfRefer {
SelfRefer x;
};
C) class SelfRefer {
SelfRefer* xPtr;
};
D) class SelfRefer1 {
SelfRefer2 x;
};
Class SelfRefer2
{
SelfRefer1 x;
};
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q1: In general, linked lists allow:<br>A) Insertions and
Q2: Select the incorrect statement. Binary search trees
Q3: Which of the following statements about stacks
Q5: Which of the following tasks would a
Q6: The pointer member in a self-referential class
Q7: How many pointers are contained as data
Q8: _ is not an advantage of linked
Q9: Which of the following is not a
Q10: Which data structure represents a waiting line
Q11: A queue performs the following commands (in