Question 36: You have been given below raw data
You need to read it correctly which of the following code fragment is correct
1. filename course35 '/folders/myfolders/hedata/course35.txt';
data data35;
length course_name $ 16;
infile course35 ;
input course_name $ (Fee1-Fee4 ) (comma7.);
2. Get all Questions and Answer from here
3. You need to have paid subscription to access all questions
4.Thanks for considering SAS Certification Material
Correct Answer : 1 Exp : As you can see in the raw data values are not fixed column. Hence, you cannot use column format. You can read blank space
separated value using list input.
You can access to full explanation to question and answer from this page.