We are currently experiencing delays with our email service, which may affect logins and notifications. We sincerely apologize for the inconvenience and appreciate your patience while we work to resolve the issue.
What will be the output of the following coded segment if x = 10 and y = 20?
if(x%10 == 0 || y <= x/2)
{
if (y%20 < 0)
{
x++;
x = y%10 + y/2;
cout << "X = ” << x++;
}
else
{
x = x-- + ++y - y%5;
cout << "\nX = ” << x--...