<span>slide layout you should change the slide layout hope this helps ................</span>
Your answer would be: a hand pointer.
Answer:
for (char outerChar='a'; outerChar<='e'; outerChar++){
for (char innerChar='a'; innerChar<='e'; innerChar++){
cout << outerChar << innerChar << "\n";
}
}
Answer:
Output:
Income is greater than 3000
Explanation:
In conditional statements, either the if statement is processed or the else if.
In this scenario, both the given conditions fit for the given output but when if block will be processed, the else if block will be skipped by default.
So the output will only be the out phrase of if block which is:
Income is greater than 3000.