% 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 |
what the use of proc glm
What is maximum number of rows and cols can be handled in SAS?
what is a post baseline?
what is the function of catx syntax? : Sas-administrator
There is a field containing a date. It needs to be displayed in the format “ddmonyy” if it’s before 1975,”dd mon ccyy” if it’s after 1985, and as ‘disco years’ if its between 1975 and 1985. How would you accomplish this in data step code? Using only PROC FORMAT.
What is the one statement to set the criteria of data that can be coded in any step?
How do you debug macros?
Give some examples where proc report’s defaults are different than proc print’s defaults?
explain what is factor analysis? : Sas-administrator
what are the types of interactive display types? : Sas-bi
What are the different operating system platforms in which we can use sas? : sas-grid-administration
what is conditional processing?