Premium

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



Question :

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



Correct Answer : Get Lastest Questions and Answer :

Explanation:






Question :
Which of the programs correctly invokes the DATA Step Debugger?
  :
1. a
2. b
3. Access Mostly Uused Products by 50000+ Subscribers
4. d

Correct Answer : Get Lastest Questions and Answer :

Explanation:





Question :
Which step sorts the observations of a permanent SAS data set by two variables and stores the sorted
observations in a temporary SAS data set?
  :
1. proc sort out=EMPLOYEES data=EMPSORT;
by Lname and Fname;
run;
2. proc sort data=SASUSER.EMPLOYEES out=EMPSORT;
by Lname Fname;
run;
3. Access Mostly Uused Products by 50000+ Subscribers
run;
4. proc sort data=SASUSER.EMPLOYEES out=SASUSER.EMPSORT; by Lname and Fname;
run;

Correct Answer : Get Lastest Questions and Answer :

Explanation:



Related Questions


Question :

Each data set has a descriptive portion providing useful information about
the data set. Which of the following items would not be found in the
descriptive portion?


  :
1. Creation data and time
2. Set name
3. Access Mostly Uused Products by 50000+ Subscribers
4. Error messages


Question :

Which location pointer identifies the exact line number from which to begin
reading data from?


 :
1. #n pointer
2. input pointer
3. Access Mostly Uused Products by 50000+ Subscribers
4. Column pointer


Question :

The following SAS program is submitted:


proc format;
value score
1 - 50 = 'Fail'
51 - 100 = 'Pass';
run;


proc report data = work.courses nowd;
column exam;
define exam / display format = score.;
run;


The variable EXAM has a value of 50.5.


How will the EXAM variable value be displayed in the REPORT procedure output?



 :
1. Fail
2. Pass
3. Access Mostly Uused Products by 50000+ Subscribers
4. . (missing numeric value)


Question :

The SAS data set named COMPANY.PRICES is listed below:

COMPANY.PRICES

prodid price producttype sales returns

K12S 5.10 NETWORK 15 2
B132S 2.34 HARDWARE 300 10
R18KY2 1.29 SOFTWARE 25 5
3KL8BY 6.37 HARDWARE 125 15
DY65DW 5.60 HARDWARE 45 5
DGTY23 4.55 HARDWARE 67 2

The following SAS program is submitted:

libname company 'SAS-data-library';
data hware inter soft;
set company.prices (keep = producttype price);
if price le 5.00;
if producttype = 'HARDWARE' then output HWARE;
else if producttype = 'NETWORK' then output INTER;
else if producttype = 'SOFTWARE' then output SOFT;
run;

How many observations does the HWARE data set contain?


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


Question :

The following SAS program is submitted:

proc datasets lib = sasuser;
contents data = class varnum;
quit;

Which one of the following is the purpose of the VARNUM option?
  :
1. to print a list of variable names
2. to print the total number of variables
3. Access Mostly Uused Products by 50000+ Subscribers
4. to print a list of the variables in the order they were created


Question :

The following SAS program is submitted:

data work.accounting;
set work.department;
length jobcode $ 12;
jobcode='FAl';
run;

The WORK.DEPARTMENT data set contains a character variable named JOBCODE with a length of 5.
What is the result?

  :
1. The length of the variable JOBCODE is 3
2. The length of the variable JOBCODE is 5.
3. Access Mostly Uused Products by 50000+ Subscribers
4. The program fails to execute due to errors.