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
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 |
Answer / aloor
proq sql;
Select * from class where score =(select max(score) from
class);
quit;
| Is This Answer Correct ? | 1 Yes | 0 No |
Name statements that are recognized at compile time only?
sas implimented companies in hyderabad
how to debug and test the sas program? : Sas-administrator
which date function advances a date, time or datetime value by a given interval? : Sas programming
how do u validate sas program
how does sas handle missing values in a merge? : Sas programming
How the date 04oct1994 is stored in SAS,not only give the answer explain in brief?
is QUALCOMM using SAS ?
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming
what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming
Mention some common errors that are usually committed in sas programming.
i have a dataset with 25 obs; 10th obs has like ramu,anji,ramu,azad,ramu like this. i want to know how many times the word repeats in that obs?