SASInstitute SAS Viya Fundamentals of Programming - A00-415무료 덤프문제 풀어보기
Which CAS action is used to convert a character variable to a numeric variable in a CAS table?
정답: A
Which statement is true about the order of the rows in an output table produced by a DATA step running in CAS?
정답: D
What are two valid data types for a CAS table column?
(choose two)
(choose two)
정답: C,D
Which statement about the CASL language is true?
정답: D
Which PROC CAS step will transpose the CLASS table so that the values of the NAME column are used to create the column names in the output table?
정답: B
Which CAS action is used to calculate the correlation matrix for numeric variables in a CAS table?
정답: C
Which CAS action is used to calculate summary statistics for variables in a CAS table?
정답: A
In the following code, complete the PRINT statement to print only rows where column begins with MPG:
proc cas;
simple.summary result=res / table={name="cars"};
resultTable = res.summary;
print <insert code segment here>;
run;
proc cas;
simple.summary result=res / table={name="cars"};
resultTable = res.summary;
print <insert code segment here>;
run;
정답: D
Select the CASL statement that correctly removes the key named region from the dept dictionary.
정답: B
What is the purpose of the SAS Explorer in SAS Studio?
정답: B
Which program will successfully load cars.csv from the casuser caslib data source to an in-memory table named cars?
정답: D
Which CAS action is used to format the values of a numeric variable in a CAS table?
정답: C
Which data format should be used when saving a CAS table so that it will later load into CAS memory the fastest?
정답: A
Which operator is used for assignment in SAS Viya?
정답: C
Which SAS Viya component allows users to create and manage machine learning models?
정답: C
Given an array cars with an unknown number of elements, use a CASL function to complete the following program segment to complete the DO loop:
do i=1 to _________
;
print cars[i];
end;
do i=1 to _________
;
print cars[i];
end;
정답:
dim(cars)
Which CAS action is used to remove duplicate records from a CAS table?
정답: D
Which CAS-enabled procedure is used for descriptive statistics and data summarization?
정답: C
Which CASL program correctly runs two DATA step programs that are stored in separate source blocks named Program1 and Program2?
정답: A