Sometimes you might use a blank block when you already know what code you wish to use or you want to write a comment talking about your code. In this problem, you will drop each block from the tray into the program and run it. Then determine if the blank and comment blocks do anything when the program is run.
Coding:
Hotkey Shortcuts
Move BlocksUP or DOWN or TAB
Run Program ALT + SHIFT + R
Stop Program ALT + SHIFT + S
Hide Tray ALT + SHIFT + X
Zoom In ALT + +
Zoom Out ALT + -
Open Help ALT + SHIFT + H
Navigate to Tray ALT + 1
Navigate to Blocks ALT + 2
Enter Navigation Mode SHIFT + ENTER
Blocks
Hint
Great job!
Try again
No, a program does not do anything with a blank or comment block, it just ignores the blocks unless you type working code into the blank block. Professional programmers often use blank blocks because they already know the code they need and don't want to take the time to find the block in the tray. Another use of a blank block is to create a comment. Programmers use comments so that other programmers working with their code can understand what the code does. To make a comment, start with the symbols // followed by your comment describing what the code does.