Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

6. When the program runs normally (when not in debug mode), which statement is t

ID: 3857695 • Letter: 6

Question

        6. When the program runs normally (when not in debug mode), which statement is true about breakpoints? (Which is correct) Breakpoints will stop program execution at the last breakpoint. Breakpoints will not have any effect on program execution. Breakpoints will stop program execution at the first breakpoint. Any Breakpoint will stop program execution. 7. Which of the following 2 statements are true about whitespace? (Choose all correct answers) Whitespace reduces the performance of the program. Whitespace makes your code more readable. Whitespace eliminates typing mistakes while programming. Whitespace helps to keep your code organized. Whitespace increases execution time of your program. 8. A breakpoint can be set by clicking a number in the left margin of the IDE. Clicking again removes the breakpoint. True False 9. Code within curly braces is called a “Block of code”. True False 10. Which of the following are considered Whitespace? (Choose all correct answers) Blank lines in the code. Indentation before the code. Space between the [ ] braces. Space between words. Space in the print statements.

Explanation / Answer

6.Breakpoint will not have any effect on the program since the program is not in the debug mode.

7.Whitespaces is mainly used to make the code look more organized

White spaces makes the code readable.

8.False Breakpoint cannot be set by the clicking a number in left margin

9.True The code within the curly braces is also a block of code

10.Blank lines in the code

Indention before the code

space between the words