SASInstitute SAS Viya Fundamentals of Programming - A00-415 Exam Practice Test

Given the dictionary myDict defined using the following statement: mydict = {age = 16, characteristics = { hair = "dark", eyes = "brown"}}; Which code segment correctly assigns the value brown to the variable x?
Correct Answer: C
What is the primary advantage of using CAS-enabled procedures in SAS?
Correct Answer: D
Which statement is used to apply a user-defined format within a PROC SQL query?
Correct Answer: B
What is a user-defined format in SAS?
Correct Answer: C
What is the purpose of the SET statement in the DATA step?
Correct Answer: B
Which statement will display column name, type, label and format information for the clientes table in the casuser caslib?
Correct Answer: B
What is a CAS table in CAS?
Correct Answer: B
When creating SAS graphs on extremely large CAS tables, the best practice is to:
Correct Answer: D
Given the CAS table casuser.shoes and the following SAS program:
data casuser.shoes2(where=(region="Africa" and Product="Slipper"));
set casuser.shoes;
keep Region Product Sales;
run;
Which statement is true?
Correct Answer: A
Which CAS action is used to generate a random sample from a CAS table?
Correct Answer: C
Which DATA step statement is used to merge two or more CAS tables based on a common key variable?
Correct Answer: A