nerdexam
SAS_Institute

A00-202 · Question #56

The following SAS program is submitted: %let value = .5; %let add = 5; %let newval = %eval(&value + &add); Which one of the following is the resulting value of the macro variable NEWVAL?

The correct answer is C. null. See the full explanation below for the reasoning.

Question

The following SAS program is submitted:

%let value = .5; %let add = 5; %let newval = %eval(&value + &add); Which one of the following is the resulting value of the macro variable NEWVAL?

Options

  • A5
  • B.5 + 5
  • Cnull
  • D5.5

How the community answered

(39 responses)
  • A
    8% (3)
  • B
    15% (6)
  • C
    74% (29)
  • D
    3% (1)

Community Discussion

No community discussion yet for this question.

Full A00-202 Practice