Quiz title : Set - 001 - Part 12
Question 1 of 8
Given the following SAS data sets ONE and TWO:;
ONE TWO
OBS COMMON X OBS COMMON Y
--------------------------- -----------------------------
1 A 10 1 A 1
2 A 13 2 A 3
3 A 14 3 B 4
4 B 9 4 B 2
5 C 8 5 C 5
6 C 14
The following SAS DATA step is submitted:;
data combine;
merge one two;
by common;
run;
Which one of the following represents the data values stored in data set COMBINE?