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 statement is used to create a new variable in SAS Viya?
- A . IF-THEN statement
- B . DROP statement
- C . RENAME statement
- D . LENGTH statement
Which PROC MDSUMMARY step produces results?
- A . proc mdsummary data=casuser.orders;
var profit;
output out=casuser.sumorders;
run; - B . proc mdsummary data=casuser.orders;
var profit;
out casuser.sumorders;
run; - C . proc mdsummary data=casuser.orders;
var profit /
out=casuser.sumorders;
run; - D . proc mdsummary data=casuser.orders;
var profit;
run;
Which SAS component enables CAS-enabled procedures?
- A . SAS Studio
- B . SAS Data Preparation
- C . SAS Visual Analytics
- D . SAS Cloud Analytic Services (CAS)
Which CAS-enabled procedure is used to perform data exploration and summarization?
- A . CASUTIL
- B . CASDATA
- C . CASSTAT
- D . CASPROC
Which CAS action is used to rename variables in a CAS table?
- A . cas.rename
- B . cas.modify
- C . cas.alter
- D . cas.change
Which CAS action is used to validate the integrity of relationships between variables in a CAS table?
- A . cas.integrity
- B . cas.relationship
- C . cas.validate
- D . cas.link
Which CAS-enabled procedure is used to combine multiple CAS tables based on a common key variable?
- A . CASMERGE
- B . CASCOMBINE
- C . CASTABLE
- D . CASEJOIN
Which CAS action is used to execute SQL queries in SAS CAS?
- A . SQL
- B . RUN
- C . SUBMIT
- D . EXECUTE
Which CAS action is used to remove duplicate records from a CAS table?
- A . cas.distinct
- B . cas.unique
- C . cas.dedup
- D . cas.remove
Which SAS procedure is used for generating descriptive statistics?
- A . PROC SUMMARY
- B . PROC REPORT
- C . PROC MEANS
- D . PROC TABULATE