What is the output of the following C++ code? (4)
vector intList(5);
for (int i = 0; i < 5;=””>
intList[i] = i * (i + 1);
for (auto p : intList)
cout < p=””>< “=”” “;=”” cout=””><>
What is the output of the following C++ code? (4)
vector intList(5);
int num = 1;
for (auto &p : intList)
if (num % 2 == num % 3)
p = 2 * num;
else
p = 3 * num;
num = p – 2;
for (auto p : intList)
cout < p=””>< “=”” “;=”” cout=””><>