Multiple choice For (x=4,y=3; x && x!=y; x--)y++; cout<< “x = %d“<< x << “y = %d “<< y; returns x = 0 y = 7 x = %d0 y = %d 7 There is an error in the given code. x = 1 y = 5 x = 6 y = 3 Reveal answer Fill a bubble to check yourself B Correct answer Explanation This is the right answer.