What is the order of evaluation of the comparison && logical
&& relational operators:?

Answers were Sorted based on User's Feedback



What is the order of evaluation of the comparison && logical && relational operator..

Answer / ram kumar

1st arthmetic operators(** * / + -)
2nd comparison operators(= ^= > < >= <= IN)
3rd logical operators(AND OR NOT)

Is This Answer Correct ?    2 Yes 0 No

What is the order of evaluation of the comparison && logical && relational operator..

Answer / kumarravi777

try to give results as soon as possible

Is This Answer Correct ?    1 Yes 5 No

Post New Answer

More SAS Interview Questions

How do you delete duplicate observations in sas?

0 Answers  


how many display types available in sas bi dashboard? : Sas-bi

0 Answers  


what is business intelligence? : Sas-bi

0 Answers  


what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming

0 Answers  


How necessary is it to be creative in your work?

0 Answers   Oracle,






what are input dataset and output dataset options? : Sas programming

0 Answers  


I have 50 variables in one data set, In reports i want to generate every 10 variables in one page how we will write code in proc report.

4 Answers  


/* This is example of age caluculate wihtout to display perfect days and years in output window */ data age; retain dob "12jun2003"d now "24may2011"d; age1=now-dob; age=(now-dob)/365.25; years=int(age); days1=round((age-years)*365.25); months=month(now)-1; if days1 gt 30 and months in(12,10,8,6,4,2)then do; month1=days1/30.4375; month=int(days1/30.4375); if day(now)=1 then days=1; else days=round((month1-month)*30.4375)+1; drop days1 month1 month; end; else if days1 gt 30 and months in (1,3,5,7,9,11)then do; month1=days1/30.4375; month=int(days1/30.4375); if day(now)=1 then days=1; else days=round((month1-month) *30.4375); drop days1 month1 month; end; drop age age1; proc print data=age; format dob now date.; run;

1 Answers   Emerio,


What do you feel about hardcoding?

3 Answers   Pfizer,


How do you generate random samples?

5 Answers  


What is the different between functions and PROCs that calculate the same simple descriptive statistics?

0 Answers   Quintiles,


Explain the purpose of substr functions in sas programming.

0 Answers  


Categories