In: Computer Science
int num=10;
do
{
cout << “Hello” << endl;
num--;
} while(num > 1);
After the above code is executed:
language is c++
a) "Hello" prints 9 times
b) num = 1
// Screenshot of the code
// Sample output
// Code to copy
#include<iostream>
using namespace std;
int main(){
int num=10;
do
{
cout << "Hello" << endl;
num--;
} while(num > 1);
cout<<num;
return 0;
}
Explanation:
The body of Do loop executes until the condition in While becomes false.
initially num=10
after iteration1: Hello prints and num decreases by 1 i.e num=9
after iteration2:Hello prints and num decreases by 1 i.e num=8
---------------------------------------------------------------------------------
------------------------------------------------------------------------------------
after iteration9:Hello prints and num decreases by 1 i.e num=1
now the condition inside While loop 1 > 1 false , so skips the while continues with next statement.
Thus hello prints 9 times & num=1 after all statements executed as initiallally num=10