Question

In: Computer Science

Viewing the code snippet below answer the following questions: int num=10; do {      cout << “Hello”...

  1. Viewing the code snippet below answer the following questions:

int num=10;

do

{

     cout << “Hello” << endl;

     num--;

} while(num > 1);

After the above code is executed:

  1. “Hello” printed how many times: ___________
  2. What is value ofnum:  ____________

language is c++

Solutions

Expert Solution

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


Related Solutions

5C++ Questions 1. What will the following code print? num = 8; cout << --num <<...
5C++ Questions 1. What will the following code print? num = 8; cout << --num << " "; cout << num++ << " "; cout << num; 2.Since the while loop evaluates the condition before executing the statement(s), it is known as a(n)____ loop, whereas the do-while loop evaluates the condition after the statements have been executed, it is known as a(n)____ loop. 3.T/F While loops can only be used when a counter is decremented to zero. If the counter...
Q1: Given the following code, what is returned by tq(4)? int tq(int num){ if (num ==...
Q1: Given the following code, what is returned by tq(4)? int tq(int num){ if (num == 0) return 0; else if (num > 100) return -1; else     return num + tq( num – 1 ); } Group of answer choices: 0 4 -1 10 Q2: Given that values is of type LLNode<Integer> and references a linked list (non-empty) of Integer objects, what does the following code do if invoked as mystery(values)? int mystery(LLNode<Integer> list) {    if (list.getLink() ==...
What will the following code segments print on the screen? int num = 3; switch (num){...
What will the following code segments print on the screen? int num = 3; switch (num){             case 1:                         System.out.println(“Spring”); case 2:                         System.out.println(“Summer”); case 3:                         System.out.println(“Autumn”); case 4:                         System.out.println(“Winter”); }
What is the ouput of the following code? void loop(int num) { for(int i = 1;...
What is the ouput of the following code? void loop(int num) { for(int i = 1; i < num; ++i) { for(int j = 0; j < 5; ++j) { cout << j; } } } int main() { loop(3); return 0; }
Question 31 Given the code snippet below, what prints? void fun(int *p) { int q =...
Question 31 Given the code snippet below, what prints? void fun(int *p) { int q = 10; p = &q; } int main() { int r = 20; int *p = &r; fun(p); cout << *p; return 0; } Question 31 options: 10 20 compiler error Runtime error Question 32 A union’s members are exactly like the members of a Structure. Question 32 options: True False Question 33 Given the code below, what are the errors. #include <iostream> using namespace...
[50%] Code Snippet Given snippet code below that you are required to complete. You are not...
[50%] Code Snippet Given snippet code below that you are required to complete. You are not allowed to make a new function or change any given code. Please complete each section that are marked with the notation “INSERT YOUR CODE HERE”. Once you complete the snippet below, your output should have the same result with the given output below. Descriptions: [15%] isValid() This function is for checking that there is no duplicated employee data in the linked list. This function...
What output is produced by the following code fragment? int num = 0, max = 20;...
What output is produced by the following code fragment? int num = 0, max = 20; while (num < max) { System.out.println(num); num += 4; }
unsigned u =10; int i = -42; cout << i+i <<endl; cout << u+i<<endl;//if int take...
unsigned u =10; int i = -42; cout << i+i <<endl; cout << u+i<<endl;//if int take 32 bit, output 4294967264 I know when unsigned and singed operate together, they need to be converted, but why is the answer 4294967264? What does it have to do with int .…… 32 bit
Using this code snippet: Answer the following questions <div id=”mainContent”>      <p>I’m a cool paragraph <span>...
Using this code snippet: Answer the following questions <div id=”mainContent”>      <p>I’m a cool paragraph <span>     that has some                   <span class=”coolClass”>yellow</span>                   text             </span>      </p>      <p class=”blue”>             I’m just some blue text       </p>       <p class=”coolClass”> I should be un-touched text </p> </div> <div id=”footer”>      <p class=”tagLine”>Copyright &copy; 2014</p> </div> 1. Write the CSS rule (selector/declaration) to change all elements with a class of ‘blue’ to have blue foreground text. Hint:...
I'm having trouble understanding the following code (a snippet of a code). What does it do?...
I'm having trouble understanding the following code (a snippet of a code). What does it do? The whole code is about comparing efficiencies of different algorithms. def partition(list,first,last): piv = list[first] lmark = first+1 rmark = last done = False while not done: while lmark <= rmark and list[lmark]<=piv: lmark=lmark+1 while list[rmark]>=piv and rmark>=lmark: rmark=rmark-1 if rmark<lmark: done = True else: temp = list[lmark] list[lmark]=list[rmark] list[rmark]=temp temp = list[first] list[first]=list[rmark] list[rmark]=temp return rmark
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT