Use the code below to answer this question.
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 will the above code display when the id varible contains the number 4?
Group of answer choices
Janet
Jerry
Mark
Sue