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
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...
Which procedure can run in CAS?
Which procedure can run in CAS?A . PROC SQLB . PROC GCHARTC . PROC SGRENDERD . PROC MEANSView AnswerAnswer: D
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
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
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...
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...
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
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
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