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 15, 2024 No Comments READ MORE +

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...

August 15, 2024 No Comments READ MORE +

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

August 14, 2024 No Comments READ MORE +

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

August 14, 2024 No Comments READ MORE +

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

August 14, 2024 No Comments READ MORE +

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

August 14, 2024 No Comments READ MORE +

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

August 14, 2024 No Comments READ MORE +

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

August 14, 2024 No Comments READ MORE +

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

August 13, 2024 No Comments READ MORE +

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

August 13, 2024 No Comments READ MORE +