최신 A00-415 무료덤프 - SASInstitute SAS Viya Fundamentals of Programming
Which PROC CASUTIL statement successfully applies the regnm format to the Region column of the sales table in the public caslib?
정답: D
Which CAS action is used to perform a cross-tabulation of two categorical variables in a CAS table?
정답: C
Which CAS action is used to aggregate data at a higher level of granularity in a CAS table?
정답: C
Given the following program:
data casuser.noInput / sessref=casauto;
x=1;
run;
Which statement is true?
data casuser.noInput / sessref=casauto;
x=1;
run;
Which statement is true?
정답: B
Which PROC CASUTIL step suppresses error messages if the table is not found in-memory?


정답: D
Which CAS action is used to create a new variable in a CAS table based on a conditional expression?
정답: B
Which CAS action is used to calculate the total count, distinct count, and missing count for variables in a CAS table?
정답: A
In order to use a user-defined format in CAS, which condition must be true?
정답: C
Which DATA step statement is used to merge two or more CAS tables based on a common key variable?
정답: D
Which CAS action is used to retrieve a subset of rows and columns from a CAS table?
정답: B
What does CAS stand for in CAS language programming?
정답: C
The following code is executed multiple times:
data casuser.eurorders;
set casuser.orders end=eof;
if Continent="Europe" then EurOrders+1;
if eof=1 then output;
keep EurOrders;
run;
proc print data=casuser.eurorders;
run;
Will the rows in the output table be sorted the same way for each execution and why?
data casuser.eurorders;
set casuser.orders end=eof;
if Continent="Europe" then EurOrders+1;
if eof=1 then output;
keep EurOrders;
run;
proc print data=casuser.eurorders;
run;
Will the rows in the output table be sorted the same way for each execution and why?
정답: C
What is the purpose of the SELECT statement in SQL programming?
정답: A
Which of the following statements about the CAS server is true?
정답: C
Which CASL program correctly runs two DATA step programs that are stored in separate source blocks named Program1 and Program2?
정답: D