A00-215 SAS Certified Associate: Programming Fundamentals Using SAS 9.4

Loading demo links...

Showing 1–3 of 10 questions

Question 1

Which statement is true regarding variable names?

Select an option, then click Submit answer.

  • Variable names are case sensitive.

  • Variable names are from 1 to 32 characters in length.

  • Variable names are optional when you create a data set

  • Variable names can start with a number or an underscore


Question 2

Given the following assignment statement:

BirthDate = 15DEC2005’d;

Which statement is true?

Select an option, then click Submit answer.

  • 15DEC2005 'd is a character constant

  • BirthDate is a numeric variable.

  • The byte size of BirthDate is 9.

  • The assignment statement contains a syntax error.


Question 3

Given the input data sets EMPLOYEES and DONATIONS, and the output data set

NODONATIONS below:

EMPLOYERS

DONATIONS

NODONATIONS

 

Select an option, then click Submit answer.

  • data nodonations; merge employees (in-inE) donations (in=inD); by employee_id; if inE=0 and inD-0; run;
     

  • data nodonations;
    merge employees (in-inE) donations (in=inD); by employee_id; run;
     

  • data nodonations; merge employees (in-inE) donations (in=inD); by employee_id; if inE=1 and inD-0; run;
     

  • data nodonations; merge employees (in-inE) donations (in=inD); by employee_id; if inE=1 and inD-1;
    run;