answersLogoWhite

0


Best Answer

Zero plus two is two, and I shall explain:

Say that you have a container, and you want to fill it with cookies. You get container, and place in two cookies. I don't need to tell you: there are two cookies in the container. Now, if you want to add two more cookies, you place in two cookies but you already had two in there, so you now have four. Quite odvious and basic, but that's a really good way to explain it and sometimes math can lose it's practicality.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the sum of 0 plus 2 explain?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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;


What is 0 plus 2?

The sum of 2 plus 0 plus 0 plus 0 plus 0 plus 0 plus 0 plus 0 plus 0 plus 0 plus 0 plus 0 plus 0 plus 0 plus 0 plus 0 equals 2.


Find the sum of 1 plus 2 plus 3 plus . plus n nos using c program?

if (n%2==0) sum=n/2*(n+1); else sum=(n+1)/2*n;


What is the answer to 30 plus 0 plus 60 plus2 plus 4 plus 2 minus two?

The sum is 96.


What is the formula for 1 plus 2 plus 4 plus 8 30 times?

The sum of 2n, for n= 0 to 29.


To write a program that calculates and prints the sum of all even numbers between 0 and 100 in c plus plus?

#include using std::cout;using std::endl;int main(){int sum = 0;cout


When Two vectors have unequal magnitude can their sum be zero explain reason?

No two vectors of unequal magnitude cannot give the sum 0 because for 0 sum the 2 vectors must be equal and in opposite direction


What is the sum of 2 plus 2?

the sum of 2 plus 2 is 4/2+2=44


What is the sum for 2 plus 2?

Sum = Addition 2 + 2 = 4


What is the sum of the difference of 12 and 6 plus the product of 50 and 0 adding the quotient of 72 and 2?

6 + 0 + 36 = 42


How do you find sum of even numbers in c plus plus?

That is an unsolvable problem, because there are an infinite number of even numbers. However, with limits, you could say... int NMax = ...; int Sum = 0; for (N=2; N<=NMax N+=2) Sum += N;


Hoe can you write a programme to claculate 1 plus 2 plus 3..100?

You add the numbers in a loop. Here is an example in Java:int sum = 0;for (int i = 1; i