Question 46: You have been given below program

 If course_name=SAS then fee=7000;

 If course_name=HADOOP then FEE=8000;

 If course_name^=HADOOP and COURSE_NAME^=SAS  then FEE=5000;

 Which of the following SAS program will be the same as given above?

  1. IF COURSE_NAME=SAS then FEE=7000;

 Else if COURSE_NAME=HADOOP then FEE=8000;

 Else FEE=5000;

  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 : 1 Exp : Its all about which expression result in same result. Difference between forst option and given program is that. Given in

 question will evaluate each condition and will make program slower to execute.

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