Multiple choice technology mainframe

Data in IDENTIFICATION-TABLEIDENT-ID IDENT-NAME IDENT-AGE-----------------------------1234 AAAA 231234 ABCD 222345 ACDB 133456 ADSB 254567 DADS 155678 EDSC 20 FIND IDENTIFICATION-TABLE WITH SUPER-ID-NAME-AGE EQ '1234' DISPLAY IDENT-ID IDENT-NAME IDENT-AGELOOPHow 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

SUPER-ID-NAME-AGE comprises IDENT-ID + IDENT-NAME + IDENT-AGE concatenated. The FIND looks for records where this superdescriptor EXACTLY equals '1234'. However, no record has this value - the superdescriptor values are much longer (e.g., '1234AAAA23'). So 0 records match.