98.3k views
1 vote
What objective behaves like a high level array

A. All other answers

b.array chain

C.vector

D. Linked chain

User Meseret
by
7.7k points

1 Answer

6 votes

Answer:

C.Vector

Step-by-step explanation:

Vector is a high level array used in C++.It has the capability of resizing itself when it gets full.it has many functions that increases it's functionality like size(),begin(),end(),erase(),clear(),push_back(),pop_back() and many more and we store any kind of data type in the vector.

syntax for declaring a vector:-

vector<data type> vector name.

User Ahmad Raza
by
7.5k points

No related questions found