Consider the following code snippet.
MOVE +80 TO WS-A.
MOVE '10000' TO WS-B.
MOVE 5 TO WS-C.
EXEC CICS READ
FILE ('ABCD')
INTO (WS-D)
LENGTH (WS-A)
RIDFLD (WS-B)
KEYLENGTH (WS-C)
END-EXEC.
EXEC CICS DELETE
FILE('ABCD')
END-EXEC.
Assume that the record with key 10000 exists.
What is deleted when the program containing the above code is executed?