Which statement is true about the Compute Server?
Which statement is true about the Compute Server?A . It processes programs written in SAS, Python, Java, and other open source client languages.B . It generally outperforms the CAS server for data sources that are larger than 50 Gigabytes.C . It processes distributed data in multiple threads.D . It supports...
Which CAS-enabled procedure is used to perform data exploration and summarization?
Which CAS-enabled procedure is used to perform data exploration and summarization?A . CASUTILB . CASDATAC . CASSTATD . CASPROCView AnswerAnswer: C
Which CAS action is used to retrieve a subset of rows and columns from a CAS table?
Which CAS action is used to retrieve a subset of rows and columns from a CAS table?A . cas.fetchB . cas.sampleC . cas.filterD . cas.selectView AnswerAnswer: A
Which CAS statement is used to load data from an external file into a CAS table?
Which CAS statement is used to load data from an external file into a CAS table?A . CASLIBB . CASTABLEC . CASIMPORTD . CASDATAView AnswerAnswer: C
What is the purpose of the LIBNAME statement in SAS Viya?
What is the purpose of the LIBNAME statement in SAS Viya?A . Defining a library or a location for SAS datasetsB . Declaring and initializing variablesC . Executing SQL queriesD . Controlling the flow of the programView AnswerAnswer: A
Which CAS action is used to create a new CAS table by concatenating two or more existing CAS tables?
Which CAS action is used to create a new CAS table by concatenating two or more existing CAS tables?A . cas.joinB . cas.concatC . cas.combineD . cas.mergeView AnswerAnswer: B
Which statement can execute successfully using PROC FEDSQL?
Which statement can execute successfully using PROC FEDSQL?A . create table work.age12 as select Name, Height, Weight from casuser.class where age=12 ;B . select Species, SepalWidth, SepalLength from casuser.iris where Species ^= "Setosa" ;C . select HouseID, Brand, exp(logPrice) as Price from casuser.margarin where...
Which CAS statement is used to join two or more CAS tables based on a common key variable?
Which CAS statement is used to join two or more CAS tables based on a common key variable?A . CASMERGEB . CASTABLEC . CASJOIND . CASCOMBINEView AnswerAnswer: A
Which CAS-enabled procedure is used for regression analysis and modeling?
Which CAS-enabled procedure is used for regression analysis and modeling?A . PROC MEANSB . PROC SQLC . PROC FREQD . PROC GLMView AnswerAnswer: D
Which CASL program correctly adds the Sales caslib to access data in the /data/sales folder?
Which CASL program correctly adds the Sales caslib to access data in the /data/sales folder?A . proc cas; table.addCaslib / name="sales", path="/data/sales"; run;B . proc cas; table.addCaslib / name="sales", dataSource={srctype="path"}, path="sales"; run;C . proc cas; table.addCaslib / name="/data/sales", dataSource={srctype="path"}; run;D . proc cas; table.addCaslib, name="/data/sales", path="/data/sales"; run;View AnswerAnswer: A