Multiple choice technology programming languages

Which among the following is correct for the given piece of code? FILE PERSNL FB (150 1800) REGION 1 1 N BRANCH 2 2 N NAME 17 16 A FILE MYFILE FB(150 1800) COPY PERSNL JOB INPUT PERSNL NAME MYPROG MOVE LIKE PERSNL TO MYFILE PUT MYFILE

  1. This statement is used to copy record from PERSNL to MYFILE if the entire record is identical in both the files

  2. This statement moves the like named field values from PERSNL to MYFILE

  3. This statement moves the record from PERSNL to MYFILE if the record-length matches

  4. Both a & c are correct

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

MOVE LIKE in Easytrieve transfers data between files by matching field names. It only moves fields that have identical names in both file layouts, not the entire record.