InterviewSolution
Saved Bookmarks
| 1. |
What type of access does deque and vector provide?(a) Linear access(b) Parallel access(c) Random access(d) Memory access |
|
Answer» Right answer is (c) Random access Explanation: Because they can manipulate the values on anywhere in the program, So it is providing random access. |
|