[2024年更新]早速ゲットしてトップランクのSASInstitute A00-415試験問題集 [Q145-Q168]

Share

[2024年更新]早速ゲットしてトップランクのSASInstitute A00-415試験問題集

パスする秘訣はA00-415をゲットして認証された試験エンジンPDF


SASInstitute A00-415認定試験は、SAS Viyaで作業するプロフェッショナルがプログラミングスキルを向上させたい場合に有益です。この認定は、グローバルに認められ、業界で高く評価されています。個人がSASプログラミングの熟練度を証明し、SAS Viyaの知識とスキルを正当化するのに役立ちます。認定はまた、他の認定プロフェッショナルとのネットワーク機会、専用リソースとトレーニングへのアクセス、およびキャリアの機会を向上させることもできます。

 

質問 # 145
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?

  • A. The DATA step produces an error.
  • B. The DATA step runs in CAS, but the WHERE= data set option is ignored.
  • C. The DATA step runs in CAS.
  • D. The DATA step runs on the Compute Server.

正解:D


質問 # 146
Which CAS action is used to execute a DATA step program in SAS CAS?

  • A. RUN
  • B. SUBMIT
  • C. EXECUTE
  • D. DATA

正解:B


質問 # 147
What is the main purpose of the DATA step in SAS Viya?

  • A. Performing statistical analysis
  • B. Transforming and manipulating data
  • C. Importing and exporting data
  • D. Creating plots and graphs

正解:B


質問 # 148
Which PROC CASUTIL statement will save the in-memory table cars in the casuser caslib to a SAS data set named carsin the public caslib?

  • A. save incaslib='casuser' casdata='cars' casout='cars.sas7bdat' outcaslib='public';
  • B. savedata caslib='casuser' casdata='cars' dataout='cars.sas7bdat' outcaslib='public';
  • C. savedata incaslib='casuser' casdata='cars' casout='cars.sas7bat' library='public';
  • D. save caslib='casuser' casdata='cars' out='public.cars';

正解:A


質問 # 149
Which code can be used to load a SAS data set, sashelp.cars, into caslib public?

  • A. data public.cars / sessref=casuser;
    set sashelp.cars;
    run;
  • B. proc casutil;
    load data=sashelp.cars caslib=public;
    quit;
  • C. proc casutil;
    load data=sashelp.cars outcaslib="public";
    quit;
  • D. libname public cas sessref=public;
    data public.cars;
    set sashelp.cars;
    run;

正解:C


質問 # 150
Which CAS action is used to calculate the correlation matrix for numeric variables in a CAS table?

  • A. cas.association
  • B. cas.correlation
  • C. cas.relationship
  • D. cas.covariance

正解:B


質問 # 151
Which CAS server component distributes data and code for processing?

  • A. the CAS Administration Server
  • B. the CAS Worker
  • C. the CAS Compute Server
  • D. the CAS Controller

正解:D


質問 # 152
What is the purpose of the GROUP BY clause in SQL programming?

  • A. To define the output columns
  • B. To sort the result set
  • C. To filter rows based on conditions
  • D. To group rows based on common values

正解:D


質問 # 153
Which function is used to calculate the mean of a variable in SAS Viya?

  • A. SUM
  • B. AVG
  • C. MEAN
  • D. MEDIAN

正解:C


質問 # 154
Given the following CASL program:
proc cas;
table.tableInfo result=res / caslib="casuser";
do row over res.tableInfo;
print row;
end;
run;
quit;
Which statement best describes the variable row in the above program?

  • A. Row is a dictionary containing key=value pairs with information on each table in caslib casuser.
  • B. Row is string type variable that contains the name of a table in caslib casuser.
  • C. Row is comma separated string containing name and additional information of tables in caslib casuser.
  • D. Row is an array containing the values with information on each table in caslib casuser.

正解:A


質問 # 155
Which CAS action is used to merge two or more CAS tables based on a common key variable?

  • A. cas.combine
  • B. cas.append
  • C. cas.merge
  • D. cas.union

正解:C


質問 # 156
Which CAS action is used to delete a CASLIB?

  • A. DROP TABLE
  • B. EXPORT
  • C. CASLIB
  • D. ALTER TABLE

正解:C


質問 # 157
Which SAS Viya component is responsible for storing and managing user-defined formats?

  • A. SAS Data Connector
  • B. CAS server
  • C. SAS Studio
  • D. SAS Metadata Server

正解:D


質問 # 158
Complete the code below to create an in-memory table named cars_cas in the casuser caslib.
proc casutil;
load data=sashelp.cars outcaslib="casuser" casout=__________;
run;

正解:

解説:
"cars_cas"


質問 # 159
Which CAS action is used to perform data profiling to analyze the distribution of values in a CAS table?

  • A. cas.statistics
  • B. cas.inspect
  • C. cas.summarize
  • D. cas.profile

正解:D


質問 # 160
Which CAS action is used to append rows to an existing CAS table?

  • A. APPEND
  • B. LOAD
  • C. EXPORT
  • D. ALTER TABLE

正解:A


質問 # 161
Which CAS action is used to create a new CAS table based on specified conditions?

  • A. FILTER
  • B. WHERE
  • C. SELECT
  • D. SUBSET

正解:B


質問 # 162
Select the correct way to define formats and labels in a FedSQL CREATE TABLE statement.

  • A. Customer_Name char(35) having format $35. label "Customer Name"
  • B. Customer_Name char(35) format=$35. label='Customer Name'
  • C. Customer_Name char(35) having format $35. label 'Customer Name'
  • D. Customer_Name char(35) format=$35. label="Customer Name"

正解:C


質問 # 163
You want to use the MEANS procedure to summarize data using the CAS server.
Which statement is true?

  • A. You must specify a CAS engine libref with the input table name.
  • B. Statistics that are supported by PROC MEANS are also supported on the CAS server.
  • C. All PROC MEANS statements are supported for CAS processing.
  • D. You must sort the data before using BY-group processing on the CAS server.

正解:A


質問 # 164
Which CAS action is used to perform outlier detection on numeric variables in a CAS table?

  • A. cas.identify
  • B. cas.detect
  • C. cas.anomaly
  • D. cas.outlier

正解:D


質問 # 165
In SAS Viya, what is the purpose of the SAS Studio application?

  • A. To perform data visualization
  • B. To create interactive reports
  • C. To write and execute SAS programs
  • D. To build machine learning models

正解:C


質問 # 166
Which CAS-enabled procedure is used for frequency analysis and cross-tabulations?

  • A. PROC GLM
  • B. PROC MEANS
  • C. PROC SQL
  • D. PROC FREQ

正解:D


質問 # 167
Which CAS-enabled procedure is used for data exploration and visualization?

  • A. PROC FREQ
  • B. PROC MEANS
  • C. PROC SQL
  • D. PROC SGPLOT

正解:D


質問 # 168
......


SASINSTITUTE A00-415(SAS VIYA Fundamentals of Programming)認定試験は、SASプログラマーがSASプログラミングのスキルと知識を検証する絶好の機会です。この認定により、SASプログラミングの習熟度を実証し、この分野でのキャリアの見通しを強化することができます。

 

A00-415試験問題は練習は2024年最新の257問題:https://jp.fast2test.com/A00-415-premium-file.html


弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

我々の働いている時間: ( GMT 0:00-15:00 )
月曜日から土曜日まで

サポート: 現在連絡 

English Deutsch 繁体中文 한국어