yffiandres yffiandres 23-10-2020 Computers and Technology contestada Given the following code segment, what is output after "result = "? int x = 1, y = 2, z = 3; cout << "result = " << (x < y ? y : x) << endl; a. 1 b. 2 c. 3 d. 4