answersLogoWhite

0

Yes, but better to say the sum etc.

User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

Given two arrays A and B Array 'A' contains all the elements of 'B' but one more element extra.Find out the extra element?

Sum(All elements in B) - Sum(All elements in A)


How are chemicals related to atomic mass?

The molar mass of a compound is the sum of atomic weights of the contained elements in the molecule.The expression atomic weight is correct for elements; for isotopes is correct atomic mass.


What is the average sum of the elements divided by number of elements?

the sum of the elements divided by the number of elements is the average


K is a set of five consecutive prime numbers such that the sum of all the elements in K is greater than 200 and less than 300. what cannot be the sum of the elements in the set K?

K is a set of five consecutive prime numbers such that the sum of all the elements in K is greater than 200 and less than 300. Which of the following cannot be the sum of the elements in the set K?


What is a molecular mass?

it is the sum of the atomic masses of all the elements present in a molecule.


Sum of all elements in array?

#include using std::cout;using std::endl;int main(){int myArrayNumberOfElements(5);double myArray[myArrayNumberOfElements] = {1.1, 4.5, 5.7, 7.9, 10};double sum(0);for (int i(0); i < myArrayNumberOfElements; i++){sum +=myArray[i];}cout


Write a C program using dynamic memory allocation to find the sum of elements of a matrix?

Did you know that memory allocation is not needed to display the matrix? However, the C program is to find the sum of all the elements.


What is Comprehension and extension in logic?

the comprehension of an idea is the sum total of all the attributes or thought elements which constitute the idea. The extension is the sum total of all the individuals and groups to which an idea can be applied.


Is it correct English to write the yearly sum would be 300 million or the yearly sum would be 300 millions?

Neither form is correct..The correct form is either:The yearly sum would be 300 million dollarsorThe yearly sum would be $300 million.Note that:The yearly sum would be $300,000,000is also correct.


Can you give a sentence with the word sum?

I keeping getting the wrong sum! The correct sum is what I am seeking.


What is the minimum unique array sum that can be achieved?

The minimum unique array sum that can be achieved is when all elements in the array are different, resulting in the sum of the array being equal to the sum of the first n natural numbers, which is n(n1)/2.


Java code to find the sum in all integer?

The following will sum all integers from 1-100. Adjust according to your needs.int sum = 0;for (int i = 1; i