int number = 0;
cout << "Number: ";
cin >> number;
if (number <= 100)
number = number * 2;
else
if (number > 500)
number = number * 3);
//end if
//end if
If the number variable contains the integer 1000, what value will be in the number variable after the code shown above?
Group of answer choices
0
1000
2000
3000