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

· What are some good SAS programming practices for processing very large data sets?

6 Answers   Quintiles,


How can I remove header from output data set?

0 Answers  


what is SAS/Graph?

1 Answers   CitiGroup, NTPC,


explain about various caches available in data integrator? : Sas-di

0 Answers  


Hi, I need to create a SAS Map of USA using SAS Graphs(Proc Gmap).The data i have dosent contain any co-ordinates of USA cities or counties or states, and the zip codes are diffrent in the data i have from the zip code in the Maps.US dataset in the Maps Library for SAS MAPS. the data i have is a sales report. i have to generate the maps according to the states,cities aligned in the sales data, HELP Appriciated

1 Answers  






sas macros

12 Answers   TCS,


In this question, I rename the numeric variable phone to numphone and then try use phone=put(numphone,comma16.) to store the numeric value numphone as a string value in phone. But I get a warning tha numphone already exists and in the data sat phone doesnt exist and numphone is set to missing. Why? data names_and_more; input Name $20. Phone : comma16. Height & $10. Mixed & $8.; Name = tranwrd(Name,' ',' '); rename phone = numphone; phone = put(numphone,comma16.); datalines; Roger Cody 9,087,821,234 5ft. 10in. 50 1/8 Thomas Jefferson 3,158,488,484 6ft. 1in. 23 1/2 Marco Polo 8,001,234,567 5Ft. 6in. 40 Brian Watson 5,183,551,766 5ft. 10in 89 3/4 Michael DeMarco 4,452,322,233 6ft. 76 1/3 ;

1 Answers  


How many tiers in sas architecture?

2 Answers  


what is the difference between infile and input? : Sas-administrator

0 Answers  


/*i have the following dataset.*/ data score; input marks ; datalines; 10 20 30 40 50 60 70 80 90 100 ; run; Now i should get the result as sum of 1 to 5 i.e(10+20+30+40+50)=150 and 2 to 6 i.e(20+30+40+50+60)=200 and 3 to 7 i.e(30+40+50+60+70)=250 and so on. how to get it. thanks in advance

2 Answers   Eval Source,


what are some differences between proc summary and proc means? : Sas programming

0 Answers  


How to specify variables to be processed by the freq procedure?

0 Answers  


Categories