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 program associates the format regnm with the region column in the orders table?
The regnm format has been created and stored in an CAS format library. Which program associates the format regnm with the region column in the orders table?A . proc casutil; load data=work.orders casout="orders" outcaslib="public"; format region regnm.; quit;B . proc casutil; load data=work.orders casout="orders" outcaslib="public" format=yes; format region regnm.; quit;C...
Which CAS-enabled procedure is used to perform text analytics?
Which CAS-enabled procedure is used to perform text analytics?A . CASTEXTB . CASPROCC . CASTATD . CASSENTView AnswerAnswer: A
What is the primary advantage of using CAS language programming in SAS?
What is the primary advantage of using CAS language programming in SAS?A . Faster data processingB . Improved visualization capabilitiesC . Easier data explorationD . Advanced statistical modeling techniquesView AnswerAnswer: A
Which CASL program will create the sample2 table in the casuser caslib?
Which CASL program will create the sample2 table in the casuser caslib?A . proc cas; datastep.runCode result=r/ code=" data casuser.sample2; set casuser.class; by age; if first.age then y=age; run; "; quit;B . proc cas; datastep.runCode result=r/ code=" data casuser.sample2; set casuser.class(firstobs=3); run; "; quit;C . proc cas; datastep.runCode result=r/ code=" data casuser.sample1; set casuser.class; y=1; run; data casuser.sample2; set casuser.class; y=2; run; "; quit;D . proc cas; datastep.runCode result=r/ code=" data casuser.sample2; set casuser.class; y=ranuni(123)*100; run; "; run;View AnswerAnswer: A
Which table.update parameter specifies the column to update?
Which table.update parameter specifies the column to update?A . AssignB . UpdateC . SetD . ComputedVarsView AnswerAnswer: C
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 calculate the sum, minimum, maximum, and mean for numeric variables in a CAS table?A . cas.aggregateB . cas.statisticsC . cas.summarizeD . cas.describeView AnswerAnswer: C
Which programming language is used for SQL programming in SAS CAS?
Which programming language is used for SQL programming in SAS CAS?A . SASB . SQLC . RD . PythonView AnswerAnswer: B
Which variables must be included in the CAS table that stores DATA step code to be executed by the dataStep.runCodeTable action?
Which variables must be included in the CAS table that stores DATA step code to be executed by the dataStep.runCodeTable action?A . PgmName CASEngineB . Code TableNameC . Source NameD . DataStepSrc ModelNameE . DataStepSrc ModelNameView AnswerAnswer: D
Which CAS action is used to perform aggregations and summary statistics?
Which CAS action is used to perform aggregations and summary statistics?A . SUMMARYB . AGGREGATEC . DESCRIBED . SUMMARIZEView AnswerAnswer: A