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 DATA step function is supported in CAS?
- A . SYMGET
- B . CATX
- C . FILEREF
- D . RANUNI
Which code can be used to load a SAS data set, sashelp.cars, into caslib public?
- A . proc casutil;
load data=sashelp.cars caslib=public;
quit; - B . proc casutil;
load data=sashelp.cars outcaslib="public";
quit; - C . libname public cas sessref=public;
data public.cars;
set sashelp.cars;
run; - D . data public.cars / sessref=casuser;
set sashelp.cars;
run;
What is the purpose of the VALUE statement in PROC FORMAT?
- A . To define the range of values for a format
- B . To specify the format name and type
- C . To define the appearance of formatted values
- D . To assign a format to a variable
Which DATA step feature is NOT supported in CAS?
- A . DO Loops
- B . GIT functions
- C . Arrays
- D . IF-THEN/ELSE statements
Which CAS-enabled procedure is used to perform market basket analysis?
- A . CASMINER
- B . CASPROC
- C . CASASSOC
- D . CASSTAT
Which CASL program correctly runs two DATA step programs that are stored in separate source blocks named Program1 and Program2?
- A . proc cas;
dataStep.RunCode /
code=("Program1", "Program2");
quit; - B . proc cas;
dataStep.RunCode / code=Program1;
dataStep.RunCode / code=Program2;
quit; - C . proc cas;
dataStep.RunCode /
code=source(Program1, Program2);
quit; - D . proc cas;
dataStep.RunCode /
code=source(Program1, Program2);
quit;
Which SQL clause is used to calculate summary statistics for variables in a CAS table?
- A . SELECT
- B . FROM
- C . GROUP BY
- D . HAVING
Which CAS action is used to perform a join operation between two CAS tables based on a common key variable?
- A . cas.merge
- B . cas.join
- C . cas.link
- D . cas.combine
Which programming language is used for SQL programming in SAS CAS?
- A . SAS
- B . SQL
- C . R
- D . Python
Which CAS action is used to generate descriptive statistics for numeric variables in a CAS table?
- A . cas.summarize
- B . cas.statistics
- C . cas.describe
- D . cas.profile