1.
Which command is used to place the cursor on a specific record?
2.
If usage clause is specified on a group, then all the elementary items will have the same usage clause. State whether true or false?
3.
In which division we write logic of the program?
4.
What is the length of PIC S9(7) COMP?
5.
How many times following B-para loop will execute?

IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.

DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-A PIC 9 VALUE 0.

PROCEDURE DIVISION.
A-PARA.
PERFORM B-PARA VARYING WS-A FROM 1 BY 1 UNTIL WS-A=5
STOP RUN.

B-PARA.
DISPLAY 'IN B-PARA ' WS-A.
6.
Moving a Alphabetic field to Numeric is legal?
7.
What is the output of following program?

IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.

DATA DIVISION.
WORKING-STORAGE SECTION.
01 WS-NUMA PIC 9(9) VALUE 10.
01 WS-NUMB PIC 9(9) VALUE 10.
01 WS-NUMC PIC 9(9) VALUE 10.
01 WS-NUMD PIC 9(9) VALUE 100.
01 WS-NUME PIC 9(9) VALUE 10.

PROCEDURE DIVISION.
SUBTRACT WS-NUMA WS-NUMB WS-NUMC FROM WS-NUMD GIVING WS-NUME.
DISPLAY WS-NUME.

STOP RUN.
8.
Can I redefine an X(10) field with a field of X(20)?
9.
What is the position of Area B in COBOL program?
10.
What will happen if you code GO BACK instead of STOP RUN in a stand alone COBOL program?