Consider the following statements: int x = 22,y=15; x = (x>y) ? (x+y) : (x.y); What will be the value of x after executing these statements?

🎲 Try a Random Question  |  Total Questions in Quiz: 230  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Object Oriented Programming Using C++ Practice Test — practice the complete quiz, review flashcards, or try a random question.


Consider the following statements: int x = 22,y=15; x = (x>y) ? (x+y) : (x.y); What will be the value of x after executing these statements?