Question

Which of the following is a repetition control structures statement in C++? if...else while...do do...while switch
0 0
Add a comment Improve this question Transcribed image text
Answer #1

Answer : do.. while

using do while we can iterate the statements

Wrong Answers:

if.. else : it is not decision structure

while do ; we dont have while do

if : it is not decision structure

switch : selection statement

Note : Please comment below if you have concerns. I am here to help you

If you like my answer please rate and help me it is very Imp for me

Add a comment
Know the answer?
Add Answer to:
Which of the following is a repetition control structure's statement in C++? if...else while...do do...while switch
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • java QUESTION 4 Which of the following statements about a do...while repetition statement is true? A....

    java QUESTION 4 Which of the following statements about a do...while repetition statement is true? A. The body of a do...while loop is executed only if the terminating condition is true. B. The body of a do...while loop is executed only once. C. The body of a do...while loop is always executed at least once. D. None of the above QUESTION 5 To exit out of a loop completely and change the flow of control to the first line after...

  • Q1: Which of the following is a double-selection control statement? do…while for if…else if. Q2: Which...

    Q1: Which of the following is a double-selection control statement? do…while for if…else if. Q2: Which of the following is not a Java keyword? do next while for Q3: What is output by the following Java code segment? int temp; temp = 200; if ( temp > 90 )    System.out.println( "This porridge is too hot." ); if ( temp < 70 )    System.out.println( "This porridge is too cold." ); if ( temp == 80 )    System.out.println( "This...

  • 1) Convert the "Switch" statement to "if/else" 2) Convert from for loop to while loop Convert...

    1) Convert the "Switch" statement to "if/else" 2) Convert from for loop to while loop Convert the following "switch" statement to an equivalent "if/else": switch(x) case 10: cost- 1; break; case 20: cost- 2; break; default: cost 0; 0 if (cost =-1) x = 1; else if (cost-20) x = 2; else x = 0; O if ( x = 10) cost = 1; else if (x = 2) cost-20; else cost = 0; if (case10) cost 1; else if...

  • C programming Rewrite the following code replacing the else-if construct with a switch statement. Make sure...

    C programming Rewrite the following code replacing the else-if construct with a switch statement. Make sure you test your code. Supplied code #include <stdio.h> int main(void) { char ch; int countA = 0; int countE = 0; int countI = 0; printf("Enter in a letter A, E, or I.\n"); scanf(" %c", &ch); //Replace the following block with your switch if(ch == 'E' || ch == 'e') countE++; else if(ch == 'A' || ch == 'a') countA++; else if(ch == 'I'...

  • Java programming For the following problem statement, would you include an if/else statement or a switch...

    Java programming For the following problem statement, would you include an if/else statement or a switch statement? Explain your answer. Be sure to address both types of statements in your answer. (You do not need to write the code.) [3 Points] Write a program that determines the bonus that should be paid to employees. Bonuses are determined based on the year’s production. The bonus is $25 for 1000 units or fewer. The bonus is $50 for 1001 to 3000 units....

  • Which of the following statement is FALSE? When the strike price increases while all else remaining...

    Which of the following statement is FALSE? When the strike price increases while all else remaining the same, puts increase in value while calls decrease in value. When dividends decrease with all else remaining the same, calls increase in value while puts decrease in value. When volatility decreases with all else remaining the same, both calls and puts increase in value. When the stock price increases with all else remaining the same, call increase in value while puts decrease in...

  • Question 7 Java provides four repetition structures (for loop, while loop, do while, and goto loop)...

    Question 7 Java provides four repetition structures (for loop, while loop, do while, and goto loop) True False Question 7 Java provides four repetition structures (for loop, while loop, do while, and goto loop) True False

  • // Lab Homework 12 // Using a switch statement to replace an if...else if...else if...else #include...

    // Lab Homework 12 // Using a switch statement to replace an if...else if...else if...else #include <iostream> #include <cctype> // for toupper() using namespace std; int main() {    /* Create a program that produces the Sample Output shown at the bottom.    You MUST:    - Output all of the lines show below in the Sample Output - spacing, spelling, punctuation, etc. must be exact matches    NOTE: There are THREE different runs of the program shown - do...

  • Re-write the following if statement structure as a SWITCH/CASE statement in C++ and Pseudocode:       X...

    Re-write the following if statement structure as a SWITCH/CASE statement in C++ and Pseudocode:       X ← 1       A ← 3       IF (a is equal to 1) THEN          x ← x + 5       ELSE IF (a is equal to 2) THEN          x ← x + 10       ELSE IF (a is equal to 3) THEN          x ← x + 15       ELSE IF (a is equal to 4) THEN          x ← x +...

  • QUESTION 18 Rewrite this if/else if code segment into a switch statement int num = 0;...

    QUESTION 18 Rewrite this if/else if code segment into a switch statement int num = 0; int a = 10, b = 20, c = 20, d = 30, x = 40; if (num > 101 && num <= 105) { a += 1; } else if (num == 208) { b += 1; X = 8; } else if (num > 208 && num <210) { c=c* 3; } else { d+= 1004;

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT