Online Access Free A00-211 Exam Questions
| Exam Code: | A00-211 |
| Exam Name: | SAS Base Programming for SAS 9 |
| Certification Provider: | SASInstitute |
| Free Question Number: | 275 |
| Posted: | May 29, 2026 |
The contents of the raw data file SIZE are listed below:
--------10-------20-------30
72 95
The following SAS program is submitted:
data test;
infile 'size';
input @1 height 2. @4 weight 2;
run;
Which one of the following is the value of the variable WEIGHT in the output data set?
The SAS data set named WORK.SALARY contains 10 observations for each department, and is currently ordered by Department.
The following SAS program is submitted:
What is the value of the variable Total before the first iteration of the data step?
The contents of the raw data file FURNITURE are listed below:
--------10-------20-------30
chair,,table
chair,couch,table
The following SAS program is submitted:
data stock;
infile 'furniture' dsd;
input item1 $ item2 $ item3 $;
run;
Which one of the following is the value of the variable named ITEM2 in the first observation of the output data set?
Unless specified, which variables and data values are used to calculate statistics in the MEANS procedure?