최신 A00-415 무료덤프 - SASInstitute SAS Viya Fundamentals of Programming
Which CAS action is used to import data into CAS?
정답: A
Which CAS action is used to sort data based on one or more variables?
정답: C
Which PROC MDSUMMARY step produces results?
정답: B
In SQL programming, which statement is used to filter rows based on conditions?
정답: D
Which CAS action is used to delete a CAS table from memory?
정답: D
In the space below, add 1 character to complete the syntax.
proc cas;
table.tableDetails Answer
aslib="casuser", name=employees";
quit;
proc cas;
table.tableDetails Answer
aslib="casuser", name=employees";
quit;
정답:
/
Which statement is used to define a user-defined format in SAS Viya?
정답: B
Which CAS action is used to merge two or more CAS tables based on common variables?
정답: B
Which CAS-enabled procedure is used for frequency analysis and cross-tabulations?
정답: A
Which CAS action is used to calculate the standard deviation, variance, and range for numeric variables in a CAS table?
정답: A
Which PROC CASUTIL step suppresses error messages if the table is not found in-memory?
정답: D
Which CAS action is used to identify potential duplicate records in a CAS table?
정답: B
Which variables must be included in the CAS table that stores DATA step code to be executed by the dataStep.runCodeTable action?
정답: B
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
Which CAS-enabled procedure is used to perform decision tree analysis on CAS tables?
정답: C
What is the purpose of the SET statement in the DATA step?
정답: B