✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the Expected Output
int main() {vector<int> arr[2];
arr[0].push_back(10);
arr[1].push_back(20);
arr[1].push_back(30);
cout << arr[1].at(1) << endl;
return 0;
}