nerdexam
SAS_Institute

A00-212 · Question #9

Given the SAS data sets ONE and TWO: The following SAS program is submitted: proc sql; select two.*, budget from one <insert JOIN operator here> two on one.year = two.year; quit; The following…

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

Question

Given the SAS data sets ONE and TWO:

The following SAS program is submitted:

proc sql; select two.*, budget from one <insert JOIN operator here> two on one.year = two.year; quit; The following output is desired:

Which JOIN operator completes the program and generates the desired output?

Exhibits

A00-212 question #9 exhibit 1
A00-212 question #9 exhibit 2

Options

  • ALEFT JOIN
  • BRIGHT JOIN
  • CFULL JOIN
  • DINNER JOIN

How the community answered

(22 responses)
  • A
    9% (2)
  • B
    5% (1)
  • C
    73% (16)
  • D
    14% (3)

Community Discussion

No community discussion yet for this question.

Full A00-212 Practice