What is the difference between: x=a+b+c+d; and
x=SUM(a,b,c,d);?sas
Answer Posted / mohana priya.m
x=a+b+c+d --------> This will add the values of a,b,c and d
and finally assign the resulted value into x.
x=sum(a+b+c+d) ---> This will call the library procedure
named sum() in-order to calculate the sum of a,b,c and d.
Both will results in same answer
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
how to study PHP my own? i reffered many sites.. but as being a fresher i couldnt follow those... which site will be the best one?
is it possible to learn sap from book without any tutorial. if yes please mention the beginner,s book of sap and also make your valuable advice for self study of sap .
My Qualification is MCA.My interview is on 5th may.They may ask q as------AS u r MCA...Why u r not tring anywhere else? What can be the ans?
they asked me about srs (software requirement specifcation)? how can i get anydocumentation about srs & other documnts infomation like bdd, in testing? its urgent?
in network security,how we identified threat?some one say we found threat according to it's signature,but how we get signature or pattern of the virus?
Please describe an example where you used object orientation in one of your programs.
Diff between IF and where ?
write a sql qwery which include joining of two tables 4 marks mainframe
can we use commit,rollback in triggers and how?
how can we maintain the previous version scripts to new version.
1. Write a program to create a sentence at runtime and count number of vowels in it ? 2. Write a program to get a string and to convert the 1st letter of it to uppercase ?
ok how would i do the following extract from a file i have ssns = 267907230 which are in column 7 into a separate data set then create a 2nd job step to extract from the data set created the following "fund code" which is in column 31 and is 113 into yet another data set
How does the TCP handle the issue of multiplexing?
how to hide prompts
Can we write a method in JSP.If so how?