how we position the cursor in a cics pogrem statically
-
send map() cursor()
-
cursor()
-
send ()
-
none of the above
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.