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
what is radio button? Plz show code this! how will select radio buttons to go next window Forms? Supose o radio button1 o radio button2 o radio button3 o radio button4 how will coding this? Plz explain this!
how many types of bytes are there???
I am looking for selenium RC online Training in chennai. can any one tell me the best institute
what is log files in qtp what is use
how does database connection using ADO.NET?
Tag for turning an image into a hyperlink is
which worker is involved in all the phases of SDLC?
what are the differences between CONS, LIST, and APPEND
in a VB application, where the data will be stored after manipulation? what is the syntax for that?
what is adodb??y it is used for connection of V.B and access??what is ado?dao?
what will we require to build project with the help of oracle
Given a Binary Search Tree, write a program to print the kth smallest element without using any static/global variable. You can?t pass the value k to any function also.
How do you initialize a static member of a class with return value of some function?
how do i create my own exception class which will restrict IO exception?
Write a pascal program to calculate the sum of the first 100 even number and odd number