Indicate which of the following is not a PROCEDURE DIVISION verb?

  1. START

  2. RERUN

  3. MOVE

  4. DELETE


Correct Option: B
Explanation:

To solve this question, the user needs to know about the PROCEDURE DIVISION verbs in COBOL programming language.

The PROCEDURE DIVISION is the section in a COBOL program where the actual processing of data takes place. It contains a set of COBOL statements that are executed sequentially when the program runs. The PROCEDURE DIVISION contains a number of COBOL verbs, which are used to manipulate data and control program flow.

Now, let's go through each option and explain why it is right or wrong:

A. START: This option is a valid PROCEDURE DIVISION verb in COBOL. It is used to initiate the execution of another program or a specific section within a program.

B. RERUN: This option is not a valid PROCEDURE DIVISION verb in COBOL. It is not a standard COBOL verb and is not recognized by the compiler.

C. MOVE: This option is a valid PROCEDURE DIVISION verb in COBOL. It is used to move data from one variable to another.

D. DELETE: This option is a valid PROCEDURE DIVISION verb in COBOL. It is used to delete a record from a file.

Therefore, the answer is:

The Answer is: B

Find more quizzes: