Multiple choice technology mainframe

Data in IDENTIFICATION-TABLE IDENT-ID IDENT-NAME IDENT-AGE ----------------------------- 1234 AAAA 23 1234 ABCD 22 2345 ACDB 13 3456 ADSB 25 4567 DADS 15 5678 EDSC 20 FIND IDENTIFICATION-TABLE WITH SUPER-ID-NAME-AGE EQ '1234' DISPLAY IDENT-ID IDENT-NAME IDENT-AGE LOOP How many records will be displayed?

  1. 0

  2. 1

  3. 2

  4. 3

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

The SUPER-ID-NAME-AGE is a super descriptor that combines multiple fields (ID, NAME, AGE) into a single composite key. Searching for '1234' alone cannot match the full super descriptor value, which would be something like 'AAAA123423' for the first record. Since no super descriptor equals just '1234', zero records are returned.