CIS 170C Week 3 Quiz

Published on January 2018 | Categories: Self-Help | Downloads: 119 | Comments: 0 | Views: 821
of 1
Download PDF   Embed   Report

1. (TCO 5) Which structure causes a statement or set of statements to execute repeatedly? 2. (TCO 5) Which repetition structure is designed to have the code execute at least one time? 3. (TCO 10) To halt the execution of a program at a specific spot during debugging, you must use a _____. 4. (TCO 5) Which of the following is true about the for loop? 5. (TCO 5) A loop that is inside another loop is called a(n) _____. 6. (TCO 5) Which of the following does counter-controlled repetition require? 7. (TCO 5) A loop that falls entirely within the body of another is a(n) ____ loop. 8. (TCO 5) How many times will this for loop execute? 9. (TCO 5) The segment of code shown below displays "Hello!" _____ times. int count; const int NUM_LOOPS = 5; count = 0; while( count < NUM_LOOPS) { cout

Comments

Content

1. (TCO 5) Which structure causes a statement or set of statements to execute repeatedly? 2. (TCO 5) Which repetition structure is designed to have the code execute at least one time? 3. (TCO 10) To halt the execution of a program at a specific spot during debugging, you must use a _____. 4. (TCO 5) Which of the following is true about the for loop? 5. (TCO 5) A loop that is inside another loop is called a(n) _____. 6. (TCO 5) Which of the following does counter-controlled repetition require? 7. (TCO 5) A loop that falls entirely within the body of another is a(n) ____ loop. 8. (TCO 5) How many times will this for loop execute? 9. (TCO 5) The segment of code shown below displays "Hello!" _____ times. int count; const int NUM_LOOPS = 5; count = 0; while( count < NUM_LOOPS) { cout

Sponsor Documents

Or use your account on DocShare.tips

Hide

Forgot your password?

Or register your new account on DocShare.tips

Hide

Lost your password? Please enter your email address. You will receive a link to create a new password.

Back to log-in

Close