For each question, assume the following declarations:
int num1, num2, num3; float real1, real2, real3;For each question, tell what value, if any, will be assigned to each variable, or explain why an error occurs, when the statement is executed with the given input data:
cin >> num1 >> num2 >> num3;
INPUT: 11 22
33 44cin >> real1 >> real2 >> real3;
INPUT: 1.1 2 3.3 4cin >> num1 >> num2 >> num3;
INPUT: 1.1 2 3.3 4cin >> num1 >> real1 >> num2
>> real2 >> num3 >> real3;
INPUT: 1.1 2
3.3 4
5.5 6
ANSWERS: