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 Dec 25,2024.
- Exam Code: A00-415
- Exam Name: SAS Viya Fundamentals of Programming
- Certification Provider: SAS Institute
- Latest update: Dec 25,2024
Which Compute Server system option prevents inadvertently moving large in-memory tables to the Compute Server?
- A . MAXDATA=
- B . CASDATALIMIT=
- C . NOCOMPUTE
- D . MAXOBS=
What does CAS stand for in CAS language programming?
- A . Centralized Analytical System
- B . Cloud Analytic Services
- C . Clustered Analytical Server
- D . Computerized Analytical Software
Which CAS-enabled procedure is used to generate descriptive statistics for CAS tables?
- A . CASTATS
- B . CASMEANS
- C . CASUTIL
- D . CASDESCRIBE
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
Given the following array: x={"May", "August", "September"};
What is the correct reference to the element containing the value May?
- A . x[0]
- B . x[1]
- C . x.get(0)
- D . x.get(1)
Which CAS action is used to generate a summary report of missing values in a CAS table?
- A . cas.missing
- B . cas.validate
- C . cas.summary
- D . cas.check
Which procedure can run in CAS?
- A . PROC SQL
- B . PROC GCHART
- C . PROC SGRENDER
- D . PROC MEANS
Given the following SAS program:
data casuser.national;
set casuser.baseball(where=(league=’National’));
r=ranuni(625);
drop league;
run;
Why is the above program processed by the Compute Server rather than the CAS server?
- A . The WHERE option is not supported in the SET statement.
- B . The SESSREF= option is not specified in the DATA statement.
- C . The DROP statement is not supported.
- D . The RANUNI function is not supported.
Which CAS action is used to calculate the frequency and percentage of values for categorical variables in a CAS table?
- A . cas.frequencies
- B . cas.counts
- C . cas.histogram
- D . cas.summary
In the space provided, enter the text for ensuring the table is available to any subsequent CAS session.
table.loadTable / caslib="public", path="sales.xlsx",
casOut={caslib="public", name="sales",______=true};