nerdexam
SAS_Institute

A00-211 · Question #66

The SAS data set BANKS is listed below: BANKS name rate FirstCapital 0.0718 DirectBank 0.0721 VirtualDirect 0.0728 The following SAS program is submitted: data newbank; do year = 1 to 3; set banks…

The correct answer is B. 1 observations and 4 variables. See the full explanation below for the reasoning.

Question

The SAS data set BANKS is listed below:

BANKS name rate FirstCapital 0.0718 DirectBank 0.0721 VirtualDirect 0.0728 The following SAS program is submitted:

data newbank; do year = 1 to 3; set banks; capital + 5000; end; run; Which one of the following represents how many observations and variables will exist in the SAS data set NEWBANK?

Options

  • A0 observations and 0 variables
  • B1 observations and 4 variables
  • C3 observations and 3 variables
  • D9 observations and 2 variables

How the community answered

(66 responses)
  • A
    8% (5)
  • B
    73% (48)
  • C
    15% (10)
  • D
    5% (3)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice