% 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 |
Under what circumstances would you code a SELECT construct instead of IF statements?
where will go the observations that were deleted by delete statement?
Are you involved in writing the inferential analysis plan? Tables specfications?
what is the difference between SET and MERGE?
What is the SAS data set?
i have a null dataset with 20 variables. i want to upload the variables which contain name like a or k or anything in another dataset.how can we create the dataset?
Give some ways by which you can define the variables to produce the summary report (using proc report)?
what is the need of INDEX in datasets?
Name and describe few sas character functions that are used for data cleaning in brief.
what is slowly changing dimension? : Sas-di
How to sort in descending order?
What is the difference between using drop = data set option in data statement and set statement?