% let A=3+4 what is result
Answers were Sorted based on User's Feedback
%let a=%eval(3+4);
%put &a;
answers is : 7
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / narendra
%let A=3+4;
%put &a;
Answer is 3+4.
If you do like this
%let a=%eval(3+4);
%put &a;
Then answer is 7
| Is This Answer Correct ? | 3 Yes | 0 No |
If reading a variable length file with fixed input, how would you prevent SAS from reading the next record if the last variable didn’t have a value?
In the SAS Data step what is the difference between the subsetting done by Where and subsetting done by If?
What is the difference between informat and format statement?
What is the use of function Proc summary?
Describe the types of SAS programming tasks that you performed like Tables? Listings? Graphics? Ad hoc reports? Other?
What is the maximum and minimum length of macro variable
Why and when do you use proc sql?
How the Excel file enter into the SAS environment without Code of Infile & Import procs,if i have no file Conversion?
what is hierarchy flattening? : Sas-di
how to rearrange the data as our wish by using dataset block?
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
"What is the difference between proc sort nodup and proc sort nodupkey?"