What would be displayed after line 8 runs?

```
1 vector vNums;
2 vNums.push_back(10);
3 vNums.push_back(5);
4 vNums.push_back(15);
5 vNums.push_back(25);
6 cout << vNums.size();
7 vNums.pop_back();
8 cout << vNums.at(2);
9 vNums.pop_back();
10 vNums.pop_back();
11 vNums.pop_back();```

A. 10
B. 5
C. 15
D. 25

C

Computer Science & Information Technology

You might also like to view...

________ set is the name used for a collection of related sets of information that are composed of separate elements

A) Field B) Data C) Information D) Variable

Computer Science & Information Technology

The first step in using a lookup function is to define the range of cells that will serve as the table array

Indicate whether the statement is true or false

Computer Science & Information Technology