SAS Base Programming for SAS (r) 9 Exam (A00-211) - SASI Actual Exam Questions
Last updated on May 01, 2026
The SAS data sets WORK.EMPLOYEE and WORK.SALARY are listed below: WORK.EMPLOYEE WORK.SALARY fname age fname salary Bruce 30 Bruce 25000 Dan 40 Bruce 35000 Dan 25000 The following SAS program is submitted: data work.empdata; merge work.employee work.salary; by fname; totsal + salary; run; How many variables are output to the WORK.EMPDATA data set?
3
4
5
No variables are output to the data set as the program fails to execute due to errors
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
Given the raw data file ‘DEPENDENTS.TXT’: The following SAS program is submitted: What will be the value of _ERROR_ in the Program Data Vector for each iteration of the DATA step?
Option
Option
Option
Option
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
The following SAS program is submitted: What is the value of the variable Diff?
1
0
-99
-1
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
The following SAS program is submitted: data work.passengers; if OrigPassengers = . then' OrigPassengers = 100; TransPassengers = 100; OrigPassengers = .; TotalPassengers = sum (OrigPassengers, TransPassengers) +0; run; What is the value of the TOTALPASSENGERS variable in the output data set?
0
100
200
(missing numeric value)
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
The following SAS program is submitted: data one; addressl = ‘214 London Way’; run; data one; set one; address = tranwrd(address1, ‘Way’, ‘Drive’); run; What are the length and value of the variable ADDRESS?
Length is 14; value is ‘214 London Dri’.
Length is 14; value is ‘214 London Way’.
Length is 16; value is ‘214 London Drive’.
Length is 200; value is ‘214 London Drive’.
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
Finish Practice?
Are you sure you want to finish? This will end your practice session.