Multiple choice technology mainframe

how we position the cursor in a cics pogrem statically

  1. send map() cursor()

  2. cursor()

  3. send ()

  4. none of the above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

To position the cursor statically in a CICS program, use 'SEND MAP() CURSOR()'. This command sends the map to the display and positions the cursor at a specific field. The CURSOR() option specifies where the cursor should be placed. Option B (cursor() alone) is incomplete syntax, and Option C (send()) lacks both the map and cursor specifications.