Which statement is used to sort a SAS dataset in ascending order?

Which statement is used to sort a SAS dataset in ascending order?A . SORT DESCENDINGB . PROC SORTC . ORDER BYD . SORT DSNView AnswerAnswer: B

August 8, 2024 No Comments READ MORE +

Which function is used to calculate the mean of a variable in SAS Viya?

Which function is used to calculate the mean of a variable in SAS Viya?A . AVGB . MEANC . SUMD . MEDIANView AnswerAnswer: B

August 8, 2024 No Comments READ MORE +

Which CAS action is used to create a new CAS table based on specified conditions?

Which CAS action is used to create a new CAS table based on specified conditions?A . FILTERB . SELECTC . WHERED . SUBSETView AnswerAnswer: C

August 8, 2024 No Comments READ MORE +

Which CAS action is used to import data into CAS?

Which CAS action is used to import data into CAS?A . CASLIBB . LOADC . EXPORTD . ALTER TABLEView AnswerAnswer: B

August 8, 2024 No Comments READ MORE +

Which PROC CASUTIL statement successfully applies the regnm format to the Region column of the sales table in the public caslib?

Which PROC CASUTIL statement successfully applies the regnm format to the Region column of the sales table in the public caslib?A . altertable caslib="public" casdata="sales" columns={name="Region" format="regnm."};B . altertable incaslib="public" table="sales" columns={{name="Region" format="regnm."}};C . altertable incaslib="public" casdata="sales" columns={{name="Region" format="regnm."}};D . altertable caslib="public" table="sales" columns={name="Region" format="regnm."};View AnswerAnswer: C

August 7, 2024 No Comments READ MORE +

Which CAS-enabled procedure is used for data exploration and visualization?

Which CAS-enabled procedure is used for data exploration and visualization?A . PROC MEANSB . PROC SQLC . PROC FREQD . PROC SGPLOTView AnswerAnswer: D

August 7, 2024 No Comments READ MORE +

Which SQL clause is used to calculate summary statistics for variables in a CAS table?

Which SQL clause is used to calculate summary statistics for variables in a CAS table?A . SELECTB . FROMC . GROUP BYD . HAVINGView AnswerAnswer: C

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

Which CAS action is used to convert a character variable to a numeric variable in a CAS table?

Which CAS action is used to convert a character variable to a numeric variable in a CAS table?A . cas.convertB . cas.castC . cas.changeD . cas.transformView AnswerAnswer: B

August 7, 2024 No Comments READ MORE +

Which CASL program segment correctly defines a source block to be run from a subsequent action?

Which CASL program segment correctly defines a source block to be run from a subsequent action?A . source myCode; "data OutData; set casuser.cars; where ""make = 'Honda'""; run;" endsource;B . source myCode; "data OutData; set casuser.cars; where make = 'Honda'; run;" endsource;C . source myCode; data OutData; set casuser.cars; where make = 'Honda'; run; endsource;D . source myCode; "data OutData;" || "set casuser.cars;" || "where make = 'Honda';" || "run;" endsource;View AnswerAnswer:...

August 7, 2024 No Comments READ MORE +