Premium

Base SAS Certified Associate: Programming Fundamentals Using SAS Questions and Answers (Dumps and Practice Questions)



Question :
Given the SAS data set WORK.PRODUCTS:
How many observations does the WORK.OUTDOOR data set contain?


  :
1. 1
2. 2
3. Access Mostly Uused Products by 50000+ Subscribers
4. 6


Correct Answer : Get Lastest Questions and Answer :

Explanation:





Question :



  :
1. a
2. b
3. Access Mostly Uused Products by 50000+ Subscribers
4. d


Correct Answer : Get Lastest Questions and Answer :

Explanation:







Question :
Given the SAS data set WORK.PRODUCTS:
How many variables does the WORK.REVENUE data set contain?


  :
1. 2
2. 3
3. Access Mostly Uused Products by 50000+ Subscribers
4. 6


Correct Answer : Get Lastest Questions and Answer :

Explanation:





Related Questions


Question :

The following SAS program is submitted and reads 100 records from a raw data file:
data work.total;
infile 'file-specification' end = eof;
input name $ salary;
totsal + salary;

run;
Which one of the following IF statements writes the last observation to the output data set?



  :
1. if end = 0;
2. if eof = 0
3. Access Mostly Uused Products by 50000+ Subscribers
4. if eof = 1;


Question :

The following SAS program is submitted:
libname rawdata1 'location of SAS data library';
filename rawdata2 'location of raw data file';
data work.testdata;
infile
input sales1 sales2;
run;
Which one of the following is needed to complete the program correctly?



  :
1. rawdata1
2. rawdata2
3. Access Mostly Uused Products by 50000+ Subscribers
4. 'rawdata2'


Question :
The contents of the raw data file TYPECOLOR are listed below:
---------10--------20--------30
daisyyellow
The following SAS program is submitted:
data flowers;
infile 'typecolor';
input type $ 1-5 +1 color $;
run;
Which one of the following represents the values of the variables TYPE and COLOR?
  :
1. type color
daisy yellow
2. type color
daisy ellow
3. Access Mostly Uused Products by 50000+ Subscribers
daisyyellow (missing character value)
4. No values are stored as the program fails to execute due to syntax errors.


Question :

The contents of the raw data file PRODUCT are listed below:
--------10-------20-------30
24613____$25.31
The following SAS program is submitted:
data inventory;
infile 'product';
input idnum 5. @10 price;
run;
Which one of the following is the value of the PRICE variable?


  :
1. 25.31
2. $25.31
3. Access Mostly Uused Products by 50000+ Subscribers
4. No value is stored as the program fails to execute due to errors


Question :

The following SAS program is submitted:
proc print data = sasuser.houses;
run;

proc means data = sasuser.shoes;
run;
Which one of the following OPTIONS statements resets the page number to 1 for the second report?


  :
1. options pageno = 1;
2. options pagenum = 1;
3. Access Mostly Uused Products by 50000+ Subscribers
4. options reset pagenum = 1;


Question :

Which one of the following is true of the SUM statement in a SAS DATA step program?

  :
1. It is only valid in conjunction with a SUM function.
2. It is not valid with the SET, MERGE and UPDATE statements.
3. Access Mostly Uused Products by 50000+ Subscribers
4. It does not retain the accumulator variable value from one iteration of the SAS DATA step to the next.