Practice Free A00-420 Exam Online Questions
Question #51
Which CAS action is used to export data from the CAS environment?
- A . EXPORT
- B . OUTPUT
- C . WRITE
- D . SAVE
Correct Answer: A
Question #52
How can you rename a CAS table in CAS?
- A . Using the RENAME action
- B . Using the MODIFY action
- C . Using the EXPORT action
- D . Using the ALTER TABLE action
Correct Answer: D
Question #53
Employees is a 5,000 row table.
Which program executes in CAS using a single thread?
- A . data casuser.employees /single=yes;
set work.employees;
totcomp = sum(salary,bonus);
run; - B . data casuser.employees;
set work.employees;
by department;
totcomp = sum(salary,bonus);
run; - C . data casuser.employees;
set casuser.employees;
by department;
totcomp = sum(salary,bonus);
run; - D . data casuser.employees /single=yes;
set casuser.employees;
totcomp = sum(salary,bonus);
run;
Correct Answer: D
Question #54
In SAS Viya, what is the purpose of the SAS Studio application?
- A . To create interactive reports
- B . To perform data visualization
- C . To write and execute SAS programs
- D . To build machine learning models
Correct Answer: C
Question #55
What is the main purpose of the DATA step in SAS Viya?
- A . Creating plots and graphs
- B . Importing and exporting data
- C . Performing statistical analysis
- D . Transforming and manipulating data
Correct Answer: D
Question #56
Which statement is true for the table.copyTable action?
- A . Both the table= and casout= parameters are required to use the copyTable action.
- B . The table= parameter specifies the name of the table that you want to replace.
- C . The table= parameter allows you to create calculated columns.
- D . The casout= parameter is required, but the table= parameter is not required.
Correct Answer: C
Question #57
Which SAS Viya component is responsible for distributed data processing?
- A . SAS Studio
- B . SAS Data Preparation
- C . SAS Cloud Analytic Services (CAS)
- D . SAS Visual Analytics
Correct Answer: C
Question #58
In PROC CASUTIL, what does the LOAD FILE= statement do?
- A . It loads files from a file path on the CAS server to a CAS table.
- B . It loads a file from a file location on the Compute Server to the CAS controller file system.
- C . It loads a file from a file path on the Compute Server to a CAS table.
- D . It loads the data from a CAS table to a file on the Compute Server.
Correct Answer: C
Question #59
Which CAS-enabled procedure is used to perform text analytics?
- A . CASTEXT
- B . CASPROC
- C . CASTAT
- D . CASSENT
Correct Answer: A
Question #60
Complete the CASL statement below to save the result stored in r to a SAS data set named class in the mylib library.
saveresult r _________ =mylib.class;
Correct Answer: Dataout