MEGA

TABLE

Medium
General Practice
SPSS
Free

A researcher wants to use a variable called "V23" that measures someone's highest level of education. The variable is measured as: 0 = no education, 1 = elementary school, 2 = VMBO / MAVO, 3 = HAVO / VWO, 4 = MBO, 5 = HBO, 6 = WO. She wants to create a new variable called "oplniv" with four categories: no education up to and including VMBO / MAVO; HAVO / VWO and MBO; HBO; and WO. What SPSS syntax accomplishes this? (1 pts)

A

RECODE V23 (0 THRU 2=0) (3 4=1) (5=2) (6=3) INTO oplniv.

B

RECODE oplniv (0 THRU 2=0) (3 4=1) (5=2) (6=3) INTO V23.

C

COMPUTE V23 (0 THRU 2=0) (3 4=1) (5=2) (6=3) = oplniv.