Which CAS-enabled procedure is used for data exploration and visualization?

Which CAS-enabled procedure is used for data exploration and visualization?A . PROC MEANSB . PROC SQLC . PROC FREQD . PROC SGPLOTView AnswerAnswer: D

July 31, 2024 No Comments READ MORE +

In PROC CASUTIL, what does the LOAD FILE= statement do?

In PROC CASUTIL, what does the LOAD FILE= statement do?A . It loads files from a file path on the CAS server to a CAS table.B . It loads a file from a file location on the Compute Server to the CAS controller file system.C . It loads a file...

July 31, 2024 No Comments READ MORE +

Which CAS action is used to perform data profiling to analyze the distribution of values in a CAS table?

Which CAS action is used to perform data profiling to analyze the distribution of values in a CAS table?A . cas.summarizeB . cas.profileC . cas.statisticsD . cas.inspectView AnswerAnswer: B

July 31, 2024 No Comments READ MORE +

Which DATA step feature is NOT supported in CAS?

Which DATA step feature is NOT supported in CAS?A . DO LoopsB . GIT functionsC . ArraysD . IF-THEN/ELSE statementsView AnswerAnswer: B

July 31, 2024 No Comments READ MORE +

Which CAS action is used to execute SQL queries in SAS CAS?

Which CAS action is used to execute SQL queries in SAS CAS?A . SQLB . RUNC . SUBMITD . EXECUTEView AnswerAnswer: A

July 31, 2024 No Comments READ MORE +

Which operator is used for assignment in SAS Viya?

Which operator is used for assignment in SAS Viya?A . =B . ==C . :=D . EQView AnswerAnswer: C

July 31, 2024 No Comments READ MORE +

Which statement is used to sort a SAS dataset in ascending order?

Which statement is used to sort a SAS dataset in ascending order?A . SORT DESCENDINGB . PROC SORTC . ORDER BYD . SORT DSNView AnswerAnswer: B

July 31, 2024 No Comments READ MORE +

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

Which CAS action is used to create a new CAS table based on specified conditions?A . FILTERB . SELECTC . WHERED . SUBSETView AnswerAnswer: C

July 31, 2024 No Comments READ MORE +

Which CAS action is used to calculate the total count, distinct count, and missing count for variables in a CAS table?

Which CAS action is used to calculate the total count, distinct count, and missing count for variables in a CAS table?A . cas.countB . cas.uniqueC . cas.missingD . cas.summaryView AnswerAnswer: A

July 31, 2024 No Comments READ MORE +

Complete the following FedSQL code to convert the character variable markup to a numeric variable.

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;A . put(markup,'best12.')B . inputn(markup,'best12.')C . cast(markup,'best12.')D . input(markup,'best12.')View AnswerAnswer: B

July 31, 2024 No Comments READ MORE +