B. pivot table................................................
Answer:
for (char outerChar='a'; outerChar<='e'; outerChar++){
for (char innerChar='a'; innerChar<='e'; innerChar++){
cout << outerChar << innerChar << "\n";
}
}
Answer:
the output of that code would be invalid syntax since the line,
>>> numA = numA * 5
is not indented.
The output of
>>> numA = 2
>>> while numA < 30:
>>> numA = numA * 5
>>> print(numA)
would be 50.