asked 94.1k views
5 votes
When using PBASIC, remark statements are used to clarify the program and are not executed by the microcontroller.

a) True
b) False

asked
User RamC
by
9.2k points

1 Answer

3 votes

Final answer:

Remark statements in PBASIC are used for comments in the code to clarify it for humans and are not executed by the microcontroller. This statement is true.

Step-by-step explanation:

The statement regarding PBASIC is true. In PBASIC, or any other programming language, remark statements, often initiated with an apostrophe ('), are used for adding comments or notes to the code which are meant to clarify the program for human readers. These remark statements are not executed by the microcontroller, or in other contexts, by the computer's CPU. They are purely for the programmer's reference and for anyone else reading the code in the future. Properly commenting on code is considered a good programming practice as it greatly improves the understandability and maintainability of the program.

answered
User Meetthe
by
8.6k points