Checkpoint 15.5.1.
What does parsing mean in the programming sense?
- to scan an entire program for errors
- Incorrect! This is included in the debugging process.
- to run a program start to finish and record the run time
- Incorrect! This is included in the debugging process.
- to analyze the structure of a statement in a formal language
- Correct! The compiler has to parse the program before it can translate it into machine language!
- to search an entire program for a statement
- Incorrect! You can use control (command) + F to find a particular statement.