Please show me all the working and provide the answer.
Question 1: Evaluate the following expression: 45 + 43 % 5 * (23 * 3 % 2)
Question 2: How many times will "jump" be displayed in the following program segment? If the loop doesn't terminate, write "infinite".
int count = 1;
do
{
cout << "jump" << endl;
count++;
}while (count < 5);
Prepare this question in c programming