Which programming language is primarily used in SAS Viya?

Which programming language is primarily used in SAS Viya?A . PythonB . RC . JavaD . SASView AnswerAnswer: D

August 3, 2024 No Comments READ MORE +

In which situation is it best to leverage the CAS server?

In which situation is it best to leverage the CAS server?A . When you need to use the LASR procedure to access data.B . When executing BY statements with high cardinality variables.C . When using large data and computationally complex code.D . When you need to SORT all of your...

August 2, 2024 No Comments READ MORE +

Which procedure can run in CAS?

Which procedure can run in CAS?A . PROC SQLB . PROC GCHARTC . PROC SGRENDERD . PROC MEANSView AnswerAnswer: D

August 2, 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

August 2, 2024 No Comments READ MORE +

What is the purpose of the BY statement in CAS language programming?

What is the purpose of the BY statement in CAS language programming?A . To specify the output formatB . To merge multiple tablesC . To subset the dataD . To group data by one or more variablesView AnswerAnswer: D

August 2, 2024 No Comments READ MORE +

DATA step performance in CAS is most affected:

DATA step performance in CAS is most affected:A . when the NOTSORTED option is used in the BY statement.B . when the DESCENDING option is used in the BY statement.C . by the cardinality of the first variable listed in the BY statement.D . when data is not sorted prior...

August 2, 2024 No Comments READ MORE +

Which statement about the CASL language is true?

Which statement about the CASL language is true?A . All CAS-enabled procedures are converted to CASL behind the scenes to run in CAS.B . CASL runs actions on both the SAS Compute Server and in CAS.C . Actions in CASL are grouped into PROCs, and optional information is provided with...

August 2, 2024 No Comments READ MORE +

Which CASL program correctly runs two DATA step programs that are stored in separate source blocks named Program1 and Program2?

Which CASL program correctly runs two DATA step programs that are stored in separate source blocks named Program1 and Program2?A . proc cas; dataStep.RunCode / code=("Program1", "Program2"); quit;B . proc cas; dataStep.RunCode / code=Program1; dataStep.RunCode / code=Program2; quit;C . proc cas; dataStep.RunCode / code=source(Program1, Program2); quit;D . proc cas; dataStep.RunCode / code=source(Program1, Program2); quit;View AnswerAnswer: B

August 2, 2024 No Comments READ MORE +

Which CAS action is used to delete a CASLIB?

Which CAS action is used to delete a CASLIB?A . CASLIBB . DROP TABLEC . EXPORTD . ALTER TABLEView AnswerAnswer: A

August 2, 2024 No Comments READ MORE +

Which CAS action is used to create a new variable in the DATA step?

Which CAS action is used to create a new variable in the DATA step?A . DROPB . ALTER TABLEC . COMPUTED . FORMATView AnswerAnswer: C

August 1, 2024 No Comments READ MORE +