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 |
Diff between proc sql merge and join?
where will go the observations that were deleted by delete statement?
How can you limit the variables written to output dataset in data step?
Give e an example of..
explain the concepts and capabilities of business object? : Sas-bi
how we can call macros with in data step?
Difference b/n proc means and proc summary procedures?
What was the last computer book you purchased? Why?
Does anybody has lastest SAS certification dumps,if anybody has please mail me at akshara_SAS@ymail.com Thanks Akshara
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
how to display duplicated observations in a data using base sas.
13 Answers HCL, TCS,
how to do user inputs and command line arguments in sas?