What is the difference between: x=a+b+c+d; and
x=SUM(a,b,c,d);?sas
Answer Posted / tathagata
x=a+b+c+d will result in a missing value if any one of the
value in a,b,c or d is missing.
x=sum(a,b,c,d) will give the sum assuming the missing value
as '0'
Is This Answer Correct ? | 22 Yes | 0 No |
Post New Answer View All Answers
When we delete logfiles such as screenshots how does it affect the ldf file? Ive seen huge change while adding screenshots in the ldf file but a very minor one deleting them.Please Explain
why not instantiating servet using new operator?
Write a program to find factorial of a number using functions
What is Negative testing?
smal talk is pure object oriented or not?
what is web configuration file
Find out the list of roles which gives access to GUI activities? thanks in advance
As per interoperatbility programs written in one language can be used by other language. How can we restrict the features of one language (say C#) in the programmer written in another language (say VB)..for example we have some features like operator overloading which is possible C#.NET (not in VB.NET), how can we restrict that when we are using this code in VB.NET.
What's the difference b/w Table & Templete in Smartform?
5.Call by value and Call by reference with program?
Hi all... I had completed MSC(Computer) and had join the construction company based on sap.they want me to work on abap.but software company is totally different from construction company and they want me 2 grasp it as fast i can.i am finding it difficult.what should i do??????
what is the difference between Windows application and Unix application?
Explain the difference between an expert and a novice user. How would your strategy for designing user interfaces for an expert user differ from that for designing user interfaces for a novice user.
what is the BAM? where we can use it in BizTalk server?
through which algorithm does the garbage collector works? how the garbage collector will understand that the object will going to be deleted?