1)Which is non executable statement used to write some information ?
2) which statement is used to Re-read the data again?
3) Is end a compulsory statement in the program ?
Answers
Answer:
Hello mate
Explanation:
1. Programming command that is not run or executed when being read by the computer. For example, a commonly used nonexecutable statement is REM (remark) used in batch files and other Microsoft Windows and DOS programs. The following is a listing of other text used to remark, comment, or cause the line to be skipped.
3. The END statement is the last line in the main program and in all subroutines or functions. Since an END statement is a non-executable statement, the program cannot branch to an END statement.
Answer:
1. Programming command that is not run or executed when being read by the computer. For example, a commonly used nonexecutable statement is REM (remark) used in batch files and other Microsoft Windows and DOS programs.
3. Some people would argue that one of those is better than the other but I will decline getting involved in that argument. A STOP statement is customarily used but not required, since the END statement will take care of it. Thus we can fall off the end of the program (hit the END statement) and the program also halts.
HOPE IT HELPS..
THANKS..