what is prime numbers? how we can get plc write sas code?
Answer Posted / santosh reddy
data prime (drop=j count);
do i=100 to 1 by -1;
count=0;
do j=i to 1 by -1;
if mod(i,j)=0 then count+1;
end;
if count=2 then output;
/* output;*/
end;
run;
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What are the data types in sas?
How would you invoke a macro? : sas-macro
: and & modifiers.
Compare sas with other data analytics tools.
How do you delete duplicate observations in sas?
How do you test for missing values?
how can you put a "trace" in your program? : Sas programming
Name few SAS functions?
How does the internal authentication work in sas? : sas-grid-administration
How we can create SAS USER DEFINED CODE?
What do you know about sas data set?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
What is the difference between SAS functions and procedures?
Intern stastical programmer written test
List down the reasons for choosing sas over other data analytics tools.