What is the meaning of REM in english?

Computer Definitions R - Definitions in Computer Definitions 3 years ago

  4   0   0   0   0 tuteeHUB earn credit +10 pts

5 Star Rating 1 Rating
REM

Short for remark, REM is a statement placed in system files such as the autoexec.bat to skip lines from loading. A remark is created by placing "REM" (FOLLOWED by a SPACE) in front of a line. Doing this remarks the line from loading and with batch files also doesn't show the line if echo is off.

@echo off
REM Example line that will not be seen with echo off.
Echo Hello WORLD!

In the example above, the first line would be skipped, and the batch file would MERELY echo "Hello World!" to the screen.

Alternatively, you can also place TWO colons (::) in front of a line to remark a line in a batch file. With two colons the line will not show regardless if echo off is in the batch file.

::This line is never seen
Echo Hello World!

Posted on 20 May 2022, this text provides information on Computer Definitions related to R - Definitions in Computer Definitions. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.

Take Quiz To Earn Credits!

Turn Your Knowledge into Earnings.

tuteehub_quiz

Tuteehub forum answer Answers

Post Answer

No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.