1.Which of the following is a valid variable name in C++?(follows rules for identifiers)
A. 3dogs
B. too_ much
C. too#much
D. getline
E. $Money
2. Find the errors in the code below and correct them:
#include ;
using namespace std;
int main()
{
Const int number1, number2, product;
cout << “Enter two numbers and I will dividen”;
cout << “the first by the second for you.n”;
cin >> number1, number2;
quotient = float(number1) / number2;
cout << quotient
return 0;
}
Expert Answer
An answer will be send to you shortly. . . . .