int id = 0;
cout << "ID: ";
cin >> id;
if (id == 1)
cout << "Janet";
else if (id == 2 || id == 3)
cout << "Mark";
else if (id == 4)
cout << "Jerry";
else
cout << "Sue";
//end if
What whill the code above display with the id variable contains the number 2?
Group of answer choices
Janet
Jerry
Mark
Sue