Question 65: You have been given below dataset

 And program as below

 data  course100;

 merge course101 (rename=(FEE=TRAINING_FEE))

 course102 (rename=(FEE=REGISTRATION_FEE)) ;

 by  COURSE_ID;

 run;

 What is the expected once you run above program?

  1. All the observation which does not have same course_id in both the dataset will be discarded.
  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 : 4 Exp : Whenever you use merge match data must be sorted else compile will give the error.

You can access to full explanation to question and answer from this page.