compiler compile the program line by line true or false
Answers
Answered by
1
Answer
False
Explanation
- A compiler does not compile the program line by line.
- It compiles the whole source code into machine code at once.
- Any error in the source code / data can be detected only after the program is has been compiled.
Additional information
- It is the interpreter which compiles the program line by line.
- If there is any error in a particular line then the program stops executing there and shows the description of error unlike the compiler which keeps on executing the program till last line and then shows a list of errors.
If understood please mark it as brainliest. If any doubt feel free to ask. Thank you.
Similar questions