How can you define a user-defined format in SAS?

How can you define a user-defined format in SAS?A . Using the FORMAT statement in the DATA stepB . Using the DEFINE statement in PROC SQLC . Using the OPTIONS statement in PROC FORMATD . Using the FORMAT procedure in SAS StudioView AnswerAnswer: A

August 14, 2024 No Comments READ MORE +

Which CAS statement is used to load data from an external file into a CAS table?

Which CAS statement is used to load data from an external file into a CAS table?A . CASLIBB . CASTABLEC . CASIMPORTD . CASDATAView AnswerAnswer: C

August 14, 2024 No Comments READ MORE +

Which SAS component enables CAS-enabled procedures?

Which SAS component enables CAS-enabled procedures?A . SAS StudioB . SAS Data PreparationC . SAS Visual AnalyticsD . SAS Cloud Analytic Services (CAS)View AnswerAnswer: D

August 14, 2024 No Comments READ MORE +

Which statement is true for the table.copyTable action?

Which statement is true for the table.copyTable action?A . Both the table= and casout= parameters are required to use the copyTable action.B . The table= parameter specifies the name of the table that you want to replace.C . The table= parameter allows you to create calculated columns.D . The casout=...

August 14, 2024 No Comments READ MORE +

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

Which CAS action is used to generate a summary report of missing values in a CAS table?A . cas.missingB . cas.validateC . cas.summaryD . cas.checkView AnswerAnswer: A

August 13, 2024 No Comments READ MORE +

Which CAS statement is used to assign a CAS table to a CAS library?

Which CAS statement is used to assign a CAS table to a CAS library?A . CASLIBB . CASDATAC . CASTABLED . CASSETView AnswerAnswer: A

August 13, 2024 No Comments READ MORE +

Which statement will show all available caslibs in the log?

Which statement will show all available caslibs in the log?A . caslib listall;B . caslib all list;C . caslib list;D . caslib _all_ list;View AnswerAnswer: D

August 13, 2024 No Comments READ MORE +

Why is the above program processed by the Compute Server rather than the CAS server?

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?A . The WHERE option is not supported in the SET statement.B . The SESSREF= option is not specified in the DATA...

August 13, 2024 No Comments READ MORE +

Which DATA step function is supported in CAS?

Which DATA step function is supported in CAS?A . SYMGETB . CATXC . FILEREFD . RANUNIView AnswerAnswer: B

August 13, 2024 No Comments READ MORE +

In the deduplication.deduplicate action, which parameter eliminates rows with duplicate group-by variable values?

In the deduplication.deduplicate action, which parameter eliminates rows with duplicate group-by variable values?A . noUniqueKeysB . noDuplicateKeysC . groupByD . uniqueOutView AnswerAnswer: B

August 12, 2024 No Comments READ MORE +