Question 64: You have two datasets Course101 and Course102 both have the Fee column variables. However, you dont want that Fee column from first

 dataset will be overwritten during match merge. How can you avoid that, select the correct SAS program?

  1. data  course100;

 merge course101 (in=FirstFee)

 course102  ;

 by  COURSE_ID;

 if in_first=1 and in_second=1;

 run;

  1. Get all Questions and Answer from here
  2. You need to have paid subscription to access all questions
  3. Thanks for considering SAS Certification Material

 Correct Answer : 3 Exp : When you use match merging and column with the same name is found in second data set . Than second dataset will overwrite the

 first dataset column in output.

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