To receive input from the screen, we use the command:
-
READ
-
PULL
-
ACCEPT
-
RECEIVE
In JCL (Job Control Language) and mainframe environments, the PULL command is used to receive input from the screen or console. This is distinct from READ which is typically used for file input. ACCEPT and RECEIVE are not standard JCL commands for screen input in this context.
To receive input from the screen, the correct command is typically "ACCEPT" rather than "PULL". The "ACCEPT" command is commonly used in programming languages like COBOL or RPG to read input from the user.
Option A) READ - This option is incorrect because "READ" is not a command commonly used to receive input from the screen. Option B) PULL - This option is incorrect because "PULL" is not a command commonly used to receive input from the screen. Option C) ACCEPT - This option is correct because "ACCEPT" is commonly used to receive input from the screen in programming languages like COBOL or RPG. Option D) RECEIVE - This option is incorrect because "RECEIVE" is not a command commonly used to receive input from the screen.
The correct answer is C) ACCEPT. This option is correct because "ACCEPT" is the command commonly used to receive input from the screen in programming languages.