A00-420試験無料問題集「SASInstitute SAS Viya Intermediate Programming 認定」

Which CAS action is used to create a new CAS table based on specified conditions?

Which DATA step function is supported in CAS?

Given the dictionary inTable : {caslib="casuser",name="cars"}
Which CASL statement will successfully add a where parameter to subset the data?

Which CAS-enabled procedure is used to fit regression models?

Which SAS procedure is used for generating descriptive statistics?

Given the following SAS program:
data casuser.national;
set casuser.baseball(where=(league='National'));
r=ranuni(625);
drop league;
run;
Why is the above program processed by the Compute Server rather than the CAS server?

Which CAS statement is used to select specific columns from a CAS table?

Using the altertable action, which is the correct statement to rename the make column to veh_make in a CAS table?
proc cas;
table.altertable / caslib="casuser", name="cars",
<enter code segment here>;
quit;

Which statement is true regarding BY group processing in the CAS DATA step?

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

Which CAS-enabled procedure is used to perform market basket analysis?

What data types does FedSQL support in CAS?

Which CAS action is used to perform aggregations and summary statistics in the DATA step?

In the space provided, enter the text for ensuring the table is available to any subsequent CAS session.
table.loadTable / caslib="public", path="sales.xlsx",
casOut={caslib="public", name="sales",______=true};
正解:
promote
Which CAS action is used to calculate the sum, minimum, maximum, and mean for numeric variables in a CAS table?

Which CAS action is used to import data into CAS?