0% found this document useful (0 votes)
74 views10 pages

A00-415 Exam Dumps - SAS Viya Fundamentals of Programming

A00-415 Exam Dumps - SAS Viya Fundamentals of Programming

Uploaded by

timblin843
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
74 views10 pages

A00-415 Exam Dumps - SAS Viya Fundamentals of Programming

A00-415 Exam Dumps - SAS Viya Fundamentals of Programming

Uploaded by

timblin843
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 10

A00-415

Exam Name: SAS Viya Fundamentals of Programming

Full version: 254 Q&As

Full version of A00-415 Dumps

Share some A00-415 exam dumps below.

1. Which statement is true for the table.copyTable action?


A. Both the table= and casout= parameters are required to use the copyTable action.
B. The table= parameter specifies the name of the table that you want to replace.
C. The table= parameter allows you to create calculated columns.
D. The casout= parameter is required, but the table= parameter is not required.
Answer: C

2. Which DATA step statement is used to conditionally assign values to variables based on
specified conditions?
A. IF-THEN statement
B. DROP statement
C. RENAME statement
D. LENGTH statement
Answer: A

3. Which CAS action is used to calculate the standard deviation, variance, and range for
numeric variables in a CAS table?
A. cas.stddev
B. cas.variance
C. cas.range
D. cas.statistics
Answer: D

4. Which CAS action is used to load data from an external file into a CAS table?
A. cas.load
B. cas.fetch
C. cas.upload
D. cas.import
Answer: D

5. What is the purpose of the SAS Explorer in SAS Studio?


A. To manage and organize SAS files and folders
B. To visualize data in graphical format
C. To write and execute SAS programs
D. To perform data cleaning and transformation
Answer: A

6. What is the purpose of the APPEND action in CAS language programming?


A. To add new observations to an existing CAS table
B. To append columns to an existing CAS table
C. To concatenate multiple CAS tables vertically
D. To merge multiple CAS tables horizontally
Answer: A

7. Which DATA step function is supported in CAS?


A. SYMGET
B. CATX
C. FILEREF
D. RANUNI
Answer: B

8. Which CAS action is used to append rows to an existing CAS table?


A. APPEND
B. LOAD
C. EXPORT
D. ALTER TABLE
Answer: A

9. In SAS Viya, what is the purpose of the LIBNAME statement?


A. To create a new library
B. To import external data
C. To assign a library reference
D. To delete a library
Answer: C

10. Complete the CASL statement below to save the result stored in r to a SAS data set named
class in the mylib library.
saveresult r _________ =mylib.class;
Answer: Dataout

11. What is a user-defined format in SAS?


A. A format that is created and stored by the user
B. A format that is predefined by SAS
C. A format that is specific to CAS-enabled procedures
D. A format that is used for data visualization
Answer: A
12. Which SAS Viya component is used for creating interactive dashboards and reports?
A. SAS Data Preparation
B. SAS Studio
C. SAS Visual Analytics
D. SAS Cloud Analytic Services (CAS)
Answer: C

13. You want to use the MEANS procedure to summarize data using the CAS server.
Which statement is true?
A. Statistics that are supported by PROC MEANS are also supported on the CAS server.
B. You must specify a CAS engine libref with the input table name.
C. You must sort the data before using BY-group processing on the CAS server.
D. All PROC MEANS statements are supported for CAS processing.
Answer: B

14. What CASL data type is created from the following assignment statement?
half = 1/2;
A. INT32
B. INT64
C. DOUBLE
D. DECIMAL
Answer: C

15. In which situation is it best to leverage the CAS server?


A. When you need to use the LASR procedure to access data.
B. When executing BY statements with high cardinality variables.
C. When using large data and computationally complex code.
D. When you need to SORT all of your data before processing.
Answer: C

16. What is the purpose of the VALUE statement in PROC FORMAT?


A. To define the range of values for a format
B. To specify the format name and type
C. To define the appearance of formatted values
D. To assign a format to a variable
Answer: C
17. Select the correct way to define formats and labels in a FedSQL CREATE TABLE
statement.
A. Customer_Name char(35) format=$35. label='Customer Name'
B. Customer_Name char(35) having format $35. label "Customer Name"
C. Customer_Name char(35) format=$35. label="Customer Name"
D. Customer_Name char(35) having format $35. label 'Customer Name'
Answer: D

18. Which CAS-enabled procedure is used to perform data manipulation operations like filtering
and transforming data?
A. CASDATA
B. CASLIB
C. CASUTIL
D. CASDATAPARTITION
Answer: C

19. Which CAS-enabled procedure is used for data exploration and visualization?
A. PROC MEANS
B. PROC SQL
C. PROC FREQ
D. PROC SGPLOT
Answer: D

20. 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
Answer: A

21. Which CAS-enabled procedure is used to perform time series analysis on CAS tables?
A. CASTIME
B. CASTIMESERIES
C. CASTIMEMINE
D. CASTIMEPROC
Answer: B

22. What is the purpose of the WHERE clause in CAS language programming?
A. To filter rows based on specified conditions
B. To define the input data source
C. To specify the output variables
D. To join multiple tables together
Answer: A

23. Which PROC CASUTIL statement will save the in-memory table cars in the casuser caslib
to a SAS data set named cars?in the public caslib?
A. savedata caslib='casuser' casdata='cars' dataout='cars.sas7bdat' outcaslib='public';
B. save incaslib='casuser' casdata='cars' casout='cars.sas7bdat' outcaslib='public';
C. savedata incaslib='casuser' casdata='cars' casout='cars.sas7bat' library='public';
D. save caslib='casuser' casdata='cars' out='public.cars';
Answer: B

24. Which CAS action is used to convert a character variable to a numeric variable in a CAS
table?
A. cas.convert
B. cas.cast
C. cas.change
D. cas.transform
Answer: B

25. Which SAS program will list tables contained in caslib public?
A. proc casutil;
list tables caslib="public";
quit;
B. proc casutil;
list caslib="public";
quit;
C. proc casutil caslib="public";
contents;
quit;
D. proc casutil incaslib="public";
list tables;
quit;
Answer: D

26. Which CAS action is used to perform data transformations, such as creating new variables
or modifying existing variables?
A. COMPUTE
B. TRANSFORM
C. MODIFY
D. ALTER
Answer: A

27. What is the purpose of the CNTLIN option in PROC FORMAT?


A. To define the format of character variables
B. To define the format of numeric variables
C. To import user-defined formats from an external dataset
D. To export user-defined formats to an external dataset
Answer: C

28. What is the purpose of the EXECUTE action in CAS language programming?
A. To execute a series of CAS actions
B. To execute a SQL query
C. To execute a DATA step program
D. To execute a macro program
Answer: A

29. Which CAS action is used to perform data quality checks on variables in a CAS table?
A. cas.validate
B. cas.check
C. cas.verify
D. cas.quality
Answer: A

30. 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.
Answer: D

31. What is the primary purpose of using the DATA step in CAS programming?
A. Creating plots and graphs
B. Importing and exporting data
C. Performing complex statistical analyses
D. Transforming and manipulating data
Answer: D

32. Which CAS action is used to calculate the total count, distinct count, and missing count for
variables in a CAS table?
A. cas.count
B. cas.unique
C. cas.missing
D. cas.summary
Answer: A

33. Which CAS-enabled procedure is used to perform text mining on CAS tables?
A. CASTEXT
B. CASTEXTMINE
C. CASTEXTPROC
D. CASTEXTSUMMARY
Answer: B

34. When specified on the PROC SUMMARY statement, which statistic causes processing to
occur on the Compute Server?
A. MIN
B. MEAN
C. SKEW
D. STD
Answer: C

35. Which CAS action is used to import data into CAS?


A. CASLIB
B. LOAD
C. EXPORT
D. ALTER TABLE
Answer: B

36. 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
Answer: B

37. In PROC CASUTIL, what does the LOAD FILE= statement do?
A. It loads files from a file path on the CAS server to a CAS table.
B. It loads a file from a file location on the Compute Server to the CAS controller file system.
C. It loads a file from a file path on the Compute Server to a CAS table.
D. It loads the data from a CAS table to a file on the Compute Server.
Answer: C

38. In the deduplication.deduplicate action, which parameter eliminates rows with duplicate
group-by variable values?
A. noUniqueKeys
B. noDuplicateKeys
C. groupBy
D. uniqueOut
Answer: B

39. In SAS Viya, what is the purpose of the DATA step?


A. To import external data into SAS
B. To create and modify SAS datasets
C. To generate statistical reports
D. To perform data visualization
Answer: B

More Hot Exams are available.

350-401 ENCOR Exam Dumps

350-801 CLCOR Exam Dumps

200-301 CCNA Exam Dumps

Powered by TCPDF (www.tcpdf.org)

You might also like