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 11,2025.
- Exam Code: A00-415
- Exam Name: SAS Viya Fundamentals of Programming
- Certification Provider: SAS Institute
- Latest update: Feb 11,2025
Which CAS statement is used to assign a CAS table to a CAS library?
- A . CASLIB
- B . CASDATA
- C . CASTABLE
- D . CASSET
Which CAS action is used to import data into CAS?
- A . CASLIB
- B . LOAD
- C . EXPORT
- D . ALTER TABLE
In the deduplication.deduplicate action, which parameter eliminates rows with duplicate group-by variable values?
- A . noUniqueKeys
- B . noDuplicateKeys
- C . groupBy
- D . uniqueOut
Which statement correctly creates a global caslib called mycas that is connected to the /workshop/data location?
- A . caslib mycas path="/workshop/data" global;
- B . caslib path="/workshop/data" mycas global;
- C . caslib path="/workshop/data" mycas promote;
- D . caslib mycas path="/workshop/data" promote;
What data types does FedSQL support in CAS?
- A . BIGINT, CHAR(n), DATE, DOUBLE, DECIMAL, VARBINARY
- B . CHAR(n), DOUBLE, VARCHAR(n), TIMESTAMP, DATE, TIME
- C . INT64, CHAR(n), DOUBLE, INT32, VARCHAR(n), FLOAT
- D . INT64, CHAR(n), DOUBLE, INT32, VARBINARY, VARCHAR(n)
Which CASL program will fetch all 428 rows from the cars table?
- A . proc cas;
table.fetch /
table={name="cars", caslib="casuser"},
from=1,
to=1000;
quit; - B . proc cas;
table.fetch /
table={name="cars", caslib="casuser"},
from=1,
to=_all_;
quit; - C . . proc cas;
table.fetch /
table={name="cars", caslib="casuser"},
from=1,
to=_maxrows_;
quit; - D . proc cas;
table.fetch /
table={name="cars", caslib="casuser"},
from=1;
quit;
Which SAS Viya component is responsible for executing CAS-enabled procedures?
- A . CAS server
- B . SAS Studio
- C . SAS Metadata Server
- D . SAS Data Connector
Which CAS action is used to create a new CAS table based on specified conditions?
- A . FILTER
- B . SELECT
- C . WHERE
- D . SUBSET
If a dictionary named res contains a table named fetch, which statement will print the table?
- A . if res="fetch" then print res.fetch;
- B . if res contains "fetch" then print res.fetch;
- C . if dim(res, "fetch") > 0 then print res.fetch;
- D . if exists(res, "fetch") then print res.fetch;
Which table.update parameter specifies the column to update?
- A . Assign
- B . Update
- C . Set
- D . ComputedVars