최신 A00-420 무료덤프 - SASInstitute SAS Viya Intermediate Programming
Which CAS action is used to execute SQL queries in SAS CAS?
정답: B
Which program will successfully load cars.csv from the casuser caslib data source to an in-memory table named cars?
정답: C
Complete the code below to create an in-memory table named cars_cas in the casuser caslib.
proc casutil;
load data=sashelp.cars outcaslib="casuser" casout=__________;
run;
proc casutil;
load data=sashelp.cars outcaslib="casuser" casout=__________;
run;
정답:
"cars_cas"
Which PROC MDSUMMARY step produces results?
정답: B
Which statement is used to define a user-defined format in SAS Viya?
정답: B
Which statement about CASL is true?
정답: C
Select the CASL statement that correctly removes the key named region from the dept dictionary.
정답: C
Given the following SAS program?
caslib _all_ assign;
proc sgplot data=casuser.cars;
vbar Make;
run;
What will the program do?
caslib _all_ assign;
proc sgplot data=casuser.cars;
vbar Make;
run;
What will the program do?
정답: C
Which statement is used to read data from an external file into a SAS dataset?
정답: A
Which data types are supported by CAS tables?
정답: D
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;
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;
정답: C
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?
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?
정답: A
What is the purpose of the GROUP BY clause in SQL programming?
정답: B
What is the purpose of the APPEND action in CAS language programming?
정답: B
Which table.update parameter specifies the column to update?
정답: D
Which action from the table action set lists the files in a caslib's data source?
정답: B
In the deduplication.deduplicate action, which parameter eliminates rows with duplicate group-by variable values?
정답: B
Which CAS statement is used to perform summary statistics on a CAS table?
정답: C