Multiple choice technology programming languages

If you a variable containing data like,1984,00,1996,1945. Then which will be best option to make SAS read that variable properly(1984,2000,1996,1945)

  1. options yearcutoff=950;

  2. options yearcutoff=1950;

  3. options yearcut=1950;

  4. All of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The SAS yearcutoff option defines a 100-year span for interpreting 2-digit years. With yearcutoff=1950, years 00-49 become 2000-2049, while 50-99 become 1950-1999. This correctly interprets '00' as 2000 in your data.