SAS Institute A00-415 SAS Viya Fundamentals of Programming Online Training
SAS Institute A00-415 Online Training
The questions for A00-415 were last updated at Nov 19,2024.
- Exam Code: A00-415
- Exam Name: SAS Viya Fundamentals of Programming
- Certification Provider: SAS Institute
- Latest update: Nov 19,2024
Which CAS action is used to load data from an external file into a CAS table?
- A . cas.load
- B . cas.fetch
- C . cas.upload
- D . cas.import
Which CAS action is used to convert a character variable to a numeric variable in a CAS table?
- A . cas.convert
- B . cas.cast
- C . cas.change
- D . cas.transform
Which statement is used to sort a SAS dataset in ascending order?
- A . SORT DESCENDING
- B . PROC SORT
- C . ORDER BY
- D . SORT DSN
Given the following SAS program?
caslib _all_ assign;
proc sgplot data=casuser.cars;
vbar Make;
run;
What will the program do?
- A . Produce an error because the SGPLOT procedure cannot access the CAS table.
- B . Execute the SGPLOT procedure on the CAS server.
- C . Summarize the results in CAS and process the summarized results on the Compute Server.
- D . Transfer the data to the Compute Server and then execute the SGPLOT procedure.
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.
Which CAS action is used to delete a CASLIB?
- A . CASLIB
- B . DROP TABLE
- C . EXPORT
- D . ALTER TABLE
Which programming language is primarily used in SAS Viya?
- A . Python
- B . R
- C . Java
- D . SAS
Which CAS action is used to compute the frequency count of unique values in a column of a CAS table?
- A . cas.count
- B . cas.uniq
- C . cas.distinct
- D . cas.frequency
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."};
Which CAS action is used to delete rows from a CAS table?
- A . DELETE
- B . DROP TABLE
- C . EXPORT
- D . ALTER TABLE