Multiple Choice
Consider a queue represented by a circular array of 10 elements and front and back the two instance variables representing the indexes of the front and the back of the queue, respectively. If the value of front is 0 and the value of back is 9, what can you tell about the queue?
A) It is empty.
B) It is full.
C) It is neither empty nor full.
D) It is either empty or full.
Correct Answer:

Verified
Correct Answer:
Verified
Q11: When inserting an element in the middle
Q12: When deleting an element in the middle
Q13: Consider a stack represented by an array
Q14: When using an identifier, for example T,
Q15: A tail reference can be used to:<br>A)
Q17: What is the return value of the
Q18: The number of available elements for the
Q19: It is good practice to define your
Q20: We cannot use recursion in linked lists.
Q21: In an empty list, head is null.