Question 49 :

 The following SAS program is submitted:

 data work.one;

 x = 3;

 y = 2;

 z = x ** y;

 run;

 Which one of the following is the value of the variable Z in the output data set?

 

  1. 6
  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 : 2

 Exp : ** = exponentiation

 X**Y raise X to the power of Y

 So 3 at the power of 2 = 9

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