Quiz
Test yourself on what you've learned so far.
We'll cover the following...
1
Which statement is true about data structures?
A)
An implementation of a data structure includes the operations supported by that data structure and its semantics.
B)
An interface defines the internal representation of the data structure.
C)
The operations supported by the Queue
interface are add(x)
and add(y)
.
D)
A Deque
can be implemented using only addLast(x)
and removeLast()
.
Question 1 of 50 attempted
...