How to get top scorer student from a class-table having
different sections A,B, C & D? Each section having same
number of students.

Answers were Sorted based on User's Feedback



How to get top scorer student from a class-table having different sections A,B, C & D? Each sec..

Answer / shambhu kumar verma

Proc Sort data = AAA;
by section descending score;
run;

Data BBB;
set AAA;
by section;
if first.section;
run;

Is This Answer Correct ?    5 Yes 0 No

How to get top scorer student from a class-table having different sections A,B, C & D? Each sec..

Answer / aloor

proq sql;
Select * from class where score =(select max(score) from
class);
quit;

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More SAS Interview Questions

How does proc sql work?

0 Answers  


is QUALCOMM using SAS ?

1 Answers  


how we can create optional or required parameters in SAS macro...

5 Answers   TCS,


what is the Population you used in your project, is it ITT or PP?

0 Answers   Accenture, Quintiles,


i want to upload titles and footnotes to excel file?how it is possible?

1 Answers  






explain what is factor analysis? : Sas-administrator

0 Answers  


Is it possible to do sorting tranformation in charecter variable??if can tell me one eg..

1 Answers  


What is data _null_?

0 Answers  


How to create a permanent sas data set?

0 Answers  


what do the sas log messages "numeric values have been converted to character" mean? : Sas programming

0 Answers  


What is the SAS data set?

0 Answers  


What is the difference between class statement and by statement in proc means?

0 Answers  


Categories