SAS Institute A00-420 SAS Viya Intermediate Programming Online Training
SAS Institute A00-420 Online Training
The questions for A00-420 were last updated at Feb 10,2025.
- Exam Code: A00-420
- Exam Name: SAS Viya Intermediate Programming
- Certification Provider: SAS Institute
- Latest update: Feb 10,2025
Which CAS-enabled procedure is used to perform text analytics?
- A . CASTEXT
- B . CASPROC
- C . CASTAT
- D . CASSENT
What CASL data type is created from the following assignment statement?
half = 1/2;
- A . INT32
- B . INT64
- C . DOUBLE
- D . DECIMAL
Which programming language is used for SQL programming in SAS CAS?
- A . SAS
- B . SQL
- C . R
- D . Python
Which programming language is used in the DATA step of SAS CAS?
- A . SAS
- B . SQL
- C . R
- D . Python
Which statement is used to sort a SAS dataset in ascending order?
- A . SORT DESCENDING
- B . PROC SORT
- C . ORDER BY
- D . SORT DSN
Which CAS action is used to retrieve a subset of rows and columns from a CAS table?
- A . cas.fetch
- B . cas.sample
- C . cas.filter
- D . cas.select
Which CAS action is used to compute the frequency distribution of a categorical variable in a CAS table?
- A . cas.frequency
- B . cas.distribution
- C . cas.histogram
- D . cas.tabulate
Which CAS-enabled procedure is used for data exploration and visualization?
- A . PROC MEANS
- B . PROC SQL
- C . PROC FREQ
- D . PROC SGPLOT
Which CAS-enabled procedure is used for data exploration and visualization?
- A . PROC MEANS
- B . PROC SQL
- C . PROC FREQ
- D . PROC SGPLOT
Which CASL program will create the sample2 table in the casuser caslib?
- A . proc cas;
datastep.runCode result=r/
code="
data casuser.sample2;
set casuser.class;
by age;
if first.age then y=age;
run;
";
quit; - B . proc cas;
datastep.runCode result=r/
code="
data casuser.sample2;
set casuser.class(firstobs=3);
run;
";
quit; - C . proc cas;
datastep.runCode result=r/
code="
data casuser.sample1;
set casuser.class;
y=1;
run;
data casuser.sample2;
set casuser.class;
y=2;
run;
";
quit; - D . proc cas;
datastep.runCode result=r/
code="
data casuser.sample2;
set casuser.class;
y=ranuni(123)*100;
run;
";
run;