answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is the SUM of these two numbers 6 plus 2?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the algebraic expression for the square of the sum of two numbers equals the sum of their squares plus twice their product?

Equation, not expression. A and B are two numbers. (A + B)2 = A2 + B2 + 2(AB) ----------------------------------


What is the sum of 2 numbers?

The sum of two numbers is an equation. Depends on the two numbers being added what the answer will be.


What is the sum of two numbers?

The sum of two numbers is the result given when the two numbers are added together. For example, the sum of 2 and 3 is 5.


Does the sum of two prime numbers equal a prime number?

If one of the two numbers is 2, the sum of two prime numbers may sometimes be a prime number. Examples of this are 2 + 11 = 13, 2 + 521 = 523, 2 + 281 = 283. There are an infinite number of similar examples where the sum of 2 plus a prime is another prime. However if neither number is 2, then the sum of two prime numbers is always an even number greater than 2 and therefore composite.


What is twice the sum of two numbers?

to sum two numbers you add them together then to get twice that you multiply the sum by 2 e.g. if the two numbers are 5 and 8 the sum = 5 + 8 = 13 twice that is 13 x 2 = 26


What is the sum of 8 plus -6?

2


The average of two numbers is 10 What is the sum of the two numbers?

Avreage = Sum/number of values So 10 = sum/2 Multiply both sides by 2: 20 = sum


When is the sum of 2 numbers a whole number?

The sum of two numbers is a whole number if both of the numbers are whole numbers, or if the sum of two fractions can be simplified to a whole number.


What are the two numbers If the sum of two numbers is 8 The difference of two numbers is 2 What are the two numbers?

5,3


What is sum of the following1 plus 2 plus 4 plus 8 plus 16 plus?

The sum of the numbers given is 31. 1 + 2 + 4 + 8 + ... + 2n = 2n+1 - 1


The sum of two numbers is 18 the difference of the two numbers is 2.what are the two numbers?

10 and 8


Write a program in c plus plus for finding the sum of first 10 even numbers?

int i, sum = 0; for (i=0; i<20; i+=2) sum+=i;