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 |
Hi Friends, Am Priya,new to your forum. am looking for Interview questions on SAS Platform Administration. I searched everywhere but I couldn't find them,please can anyone help me with complete interview questions normally everyone will face in the interviews on SAS Administration. am really facing problems in the interviews,am not able to answer any of their questions. I would really appreciate all your help if you can email the complete Interview Questions to priyafeb84@gmail.com Kindly awaiting for your reply with eager
Explain the difference between informat and format with an example.
What is LAG function?How is it used? can any one explain
3 Answers TRE, Verinon Technology Solutions,
what is business intelligence? : Sas-bi
Which is the best place to learn SAS clinicals and Oracle clinical in hyderabad?
explain the difference between proc means and proc summary?
what do the pad and dim functions do? : Sas programming
What is univariate n where it can be used n how...?
How do you download a flat file from Mainframe to your local PC using SAS?
Do you know the features of sas?
what is picture format? give any one example?
How do you specify the number of iterations and specific condition within a single do loop?