SAS Big Data Professional (A00-221) Certification Exam Sample Questions

A00-221 Dumps Free, A00-221 PDF Download, SAS Big Data Professional Dumps Free, SAS Big Data Professional PDF Download, A00-221 Free DownloadHere are the sample questions which will help you be familiar with SAS Big Data Programming and Loading (A00-221) exam style and structure. We encourage you to try our Demo SAS Big Data Professional Certification Practice Exam to measure your understanding of exam structure in an environment which simulates the SAS Certified Big Data Professional Using SAS 9 Certification test environment.

To make your preparation more easy for SAS Certified Big Data Professional Using SAS 9 (A00-221) exam, we strongly recommend you to use our Premium SAS Big Data Professional Certification Practice Exam. According to our survey with certified candidates, you can easily score 85% in your actual SAS Certification exam if you can score 100% in our premium SAS Big Data Professional Certification practice exams.

SAS A00-221 Sample Questions:

01. Which statement creates a temporary array within DS2?
a) vararray double a[2];
b) vararray double a(2);
c) array a(2) s1-s2;
d) dcl double a[2];
 
02. Refer to the log message shown below:
58 proc ds2;
59 data test;
60 dcl double date;
61 method run();
62 set work.one;
63 mm=2;
64 end;
65 enddata;
66 run;
ERROR: Compilation error.
ERROR: Parse encountered type when expecting identifier.
ERROR: Parse failed on line 60: dcl double >>> date <<< ;
NOTE: PROC DS2 has set option NOEXEC and will continue to prepare statements.
67 quit;
Which of the following changes will fix the errors shown in the log?
a) Replace line 60 with dcl double 'date';
b) Replace line 60 with dcl double "date";
c) Replace line 60 with dcl string date;
d) Replace line 60 with dcl double 'date'n;
 
03. The following SAS program is submitted:
proc ds2;
data work.sasorders;
dcl timestamp order_timestamp;
dcl double order_datetime;
method run();
set orders;
order_timestamp = to_timestamp(order_datetime);
end;
enddata;
run;
quit;
What happens when the program is executed?
a) The variable order_timestamp is created and processed as an ANSI timestamp value in the DS2 program.
The order_timestamp value is converted to a SAS datetime when it is written to the output SAS data set.
b) The variable order_timestamp is created and processed as an ANSI timestamp value in the DS2 program.
The output data set stores the values as a SAS timestamp value.
c) The variable order_timestamp is converted to a SAS time value.
The output data set stores this as the number of seconds since midnight.
d) The program does not execute because order_datetime is a SAS datetime value.
 
04. When working with data stored in Hadoop, which SAS function is NOT passed to Hive by default?
a) DATE
b) HOUR
c) VAR
d) UPCASE
 
05. Which operator is NOT a diagnostic operator for testing a Pig program?
a) DUMP
b) ILLUSTRATE
c) EXPLAIN
d) SPLIT
 
06. This question will ask you to provide a line of missing code.
Which line of code would you insert to get the mean and standard deviation of INCOME and AGE, calculated separately for GENDER variable values F (female) and M (male)?
proc imstat;
table mylasr.bankdata(tag="&TagString");
<insert code here>
run;
a) crosstab income*gender age*gender;
b) summary income age / by=gender;
c) summary income age / groupby=gender;
d) univariate income age / by=gender;
 
07. Many temporary tables may be created in the LASR server by PROC IMSTAT analysis actions. What happens to temporary tables when a PROC IMSTAT session is terminated?
a) All temporary tables are saved to the SAS server WORK library.
b) All temporary tables are purged from the LASR server.
c) The last temporary table created is saved to the SAS WORK library.
d) The last temporary table created is saved to storage in the HDFS.
 
08. Web server logs are written in an HDFS directory. The following lines indicate the format and an example of the comma-separated values for one line in the log file.
# IP address, timestamp, request, status, size
192.168.12.41,24/Nov/2015:10:09:58 -0500, "GET /services/config.xml HTTP/
Which CREATE TABLE statement enables a Hive query to access each of the fields?
a) create external table weblogs (ip string, dt string, req string, status int, sz string) row format delimited fields terminated by ',' location '/data/weblogs';
b) create external table weblogs (ip string, dt string, req string, status int, sz string) fields terminated by ',' location '/data/weblogs';
c) create external table weblogs (ip string, rest string) row format delimited fields terminated by ',' location '/data/weblogs';
d) create external table weblogs (ip string, dt string, req string, status int, sz string) fields delimited fields by ',' location '/data/weblogs';
 
09. In the example below, the input data set is a Hive table accessed using a SAS/ACCESS to Hadoop LIBNAME statement.
proc freq data=hivelib.myhivetable;
class month;
by year;
run;
Which statement is true about this program?
a) The procedure will fail unless the table HIVELIB.MYHIVETABLE is already stored ordered by YEAR.
b) SAS will generate a HiveQL query to return the data to SAS ordered by YEAR so that the procedure receives the data ordered by YEAR as required.
c) BY statements do not require the data be received by the procedure in any specific order.
d) BY statements are not supported for Hive tables because it is not possible to order data that is distributed on different nodes of the Hadoop cluster.
 
10. What is an advantage of using a LIBNAME statement to interact with your Hadoop cluster?
a) It enables you to submit user-written HiveQL code to Hive.
b) The GENERATE_PIG_CODE= option enables you to bypass Hive and generate Pig Latin code.
c) It enables some SAS procedures to push processing into Hive.
d) It ensures that Hive will handle all processing.

Answers:

Question: 1 Answer: d Question: 2 Answer: b
Question: 3 Answer: a Question: 4 Answer: a
Question: 5 Answer: d Question: 6 Answer: c
Question: 7 Answer: b Question: 8 Answer: a
Question: 9 Answer: b Question: 10 Answer: c

Note: Please write us on feedback@analyticsexam.com if you find any data entry error in these SAS Certified Big Data Professional Using SAS 9 (A00-221) sample questions.

Rating: 4.9 / 5 (75 votes)