Premium

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



Question : How would you print entire detail of a user defined format?

 : How would you print entire detail of a user defined format?
1. CATALOG

2. ALLFORMAT

3. Access Mostly Uused Products by 50000+ Subscribers

4. FMTLIB


Correct Answer : Get Lastest Questions and Answer :
Explanation: Use below syntax to know all the user defined formats.
Check All the User Defined Format:
libname hetrain '/folders/myfolders/hadoopexam';
proc format library=hetrain fmtlib;
run;





Question : By default MEANS procedure generates which of the following statistics?
A. Number of missing variables
B. Mean
C. Standard Deviation
D. RANGE
E. MINIMUM

 : By default MEANS procedure generates which of the following statistics?
1. A,B,C,E
2. B,C,D,E
3. Access Mostly Uused Products by 50000+ Subscribers
4. A,B,D,E

Correct Answer : Get Lastest Questions and Answer :
Explanation: By default MEANS procedure generates descriptive statistics which contain followings
A. Number of missing variables
B. Mean
C. Standard Deviation
D. MAXIMUM VALUE
E. MINIMUM VALUE





Question : You have a dataset named hadoopexam.dat, with various columns like course_name, fee, location, date, students etc. Now while using the
MEANS procedure you want that descriptive analysis can be done only for two variables course_name and fee, which of the following statement can be
helpful in that case?

 : You have a dataset named hadoopexam.dat, with various columns like course_name, fee, location, date, students etc. Now while using the
1. By course_name fee;

2. Class course_name fee;

3. Access Mostly Uused Products by 50000+ Subscribers

4. Var course_name fee;


Correct Answer : Get Lastest Questions and Answer :
Explanation: As you wanted to do the descriptive analytics for the selected variables than use var statement.
Class and By statement will be helpful for categorization



Related 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



Question :



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



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



Question :
The following SAS program is submitted:
What is the initial value of the variable Total in the following program?
  :
1. 0
2. Missing
3. Access Mostly Uused Products by 50000+ Subscribers
4. Cannot be determined from the information given



Question :
Consider the following data step:
data WORK.NEW;
set WORK.OLD;
Count+1;
run;
The varaible Count is created using a sum statement. Which statement regarding this variable is true?
  :
1. It is assigned a value 0 when the data step begins execution.
2. It is assigned a value of missing when the data step begins execution.
3. Access Mostly Uused Products by 50000+ Subscribers
4. It is assigned a value of missing at compile time.



Question :
The data set WORK.REALESTATE has the variable LocalFee with a format of 9. and a variable
CountryFee with a format of 7.;
The following SAS program is submitted:

What are the formats of the variables LOCALFEE and COUNTRYFEE in the output dataset?
  :
1. LocalFee has format of 9. and CountryFee has a format of 7.
2. LocalFee has format of 9. and CountryFee has a format of percent7.2
3. Access Mostly Uused Products by 50000+ Subscribers
4. The data step fails execution; there is no format for LocalFee.