A00-415試験無料問題集「SASInstitute SAS Viya Fundamentals of Programming 認定」

Which SAS Viya component is used for creating interactive dashboards and reports?

What is the primary advantage of using CAS-enabled procedures in SAS?

Complete the CASL statement below to save the result stored in r to a SAS data set named class in the mylib library.
saveresult r _________ =mylib.class;
正解:
Dataout
Given the following SAS program:
proc mdsummary data=casuser.orders;
var RetailPrice;
output out=casuser.orders_sum;
run;
Which CAS action produces the same result as the code above without ERROR if you run it twice?

Which CAS action is used to generate a summary report of missing values in a CAS table?

Which CAS-enabled procedure is used to import data into a CAS table?

Which statement can execute successfully using PROC FEDSQL?

Which CAS action is used to create a new CAS table by concatenating two or more existing CAS tables?

What is the primary purpose of the DATA step in SAS CAS?

Complete the following FedSQL code to convert the character variable markup to a numeric variable.
proc cas;
session mysess;
fedSql.execDirect /
query="create table casuser.cars_fedsql {options replace=true} as
select make, model, mpg_city, mpg_highway, <insert code segment here> as markup_N from casuser.cars"; run;

Given the following CASL program:
proc cas;
table.tableInfo result=res / caslib="casuser";
do row over res.tableInfo;
print row;
end;
run;
quit;
Which statement best describes the variable row in the above program?

Which programming language is primarily used in the DATA step for CAS programming?

What is the purpose of the WHERE clause in CAS language programming?

Which SAS Viya procedure is used for data summarization and descriptive statistics?