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