Multiple choice technology programming languages

The contents of Dataset Emp is as follows {Ename} {Babu} {arun} proc sort data = Emp; by ename; run; The output will be: NOTE: { } are added for readability

  1. Babu arun

  2. Syntax Error

  3. arun Babu

  4. No observations

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

PROC SORT with BY ename sorts the data. In ASCII sorting, uppercase 'B' comes before lowercase 'a', so 'Babu' sorts before 'arun'.