Multiple choice technology programming languages

son,Travis, The following output is desired relation firstname son Travis Which one of the following statements will work correctly as exepcted ?

  1. data family/dlm = ',';

  2. options dlm=',';

  3. infile 'file-specification' dlm=',';

  4. input relation $ firstname $ /dlm=',';

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

The question shows input data 'son,Travis,' and desired output with two columns. The correct approach is using the INFILE statement with DLM=',' option to specify comma as the delimiter. Option A has incorrect syntax (data family/dlm), Option B incorrectly uses 'options' instead of 'infile', and Option D incorrectly puts the delimiter specification on the INPUT statement with wrong syntax.