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 Feb 10,2025.
- Exam Code: A00-415
- Exam Name: SAS Viya Fundamentals of Programming
- Certification Provider: SAS Institute
- Latest update: Feb 10,2025
Which CAS action is used to append rows to an existing CAS table?
- A . APPEND
- B . LOAD
- C . EXPORT
- D . ALTER TABLE
What is the purpose of the BY statement in CAS language programming?
- A . To specify the output format
- B . To merge multiple tables
- C . To subset the data
- D . To group data by one or more variables
DATA step performance in CAS is most affected:
- A . when the NOTSORTED option is used in the BY statement.
- B . when the DESCENDING option is used in the BY statement.
- C . by the cardinality of the first variable listed in the BY statement.
- D . when data is not sorted prior to using a BY statement.
A CAS table has a CHAR column called FirstName with a length of 10.
How many bytes are used to store the value "Inez" in the column FirstName?
- A . 4 bytes
- B . 8 bytes
- C . 10 bytes
- D . 20 bytes
Given the following program:
data casuser.noInput / sessref=casauto;
x=1;
run;
Which statement is true?
- A . The DATA step runs on the SAS Compute Server.
- B . The DATA step runs in CAS.
- C . The DATA step runs on the SAS Workspace Server.
- D . The DATA step produces an error.
Which programming language is primarily used in CAS?
- A . Python
- B . R
- C . Java
- D . SAS
Which CAS action is used to filter rows in a CAS table based on specified conditions?
- A . cas.select
- B . cas.filter
- C . cas.where
- D . cas.subset
Which statement will show all available caslibs in the log?
- A . caslib listall;
- B . caslib all list;
- C . caslib list;
- D . caslib _all_ list;
Complete the code below to create an in-memory table named cars_cas in the casuser caslib.
proc casutil;
load data=sashelp.cars outcaslib="casuser" casout=__________;
run;
Which CAS action is used to create a new variable in a CAS table based on a conditional expression?
- A . cas.derive
- B . cas.calculate
- C . cas.transform
- D . cas.generate