Question 22 What will be displayed after the following statements are executed? int x - 65; int y - 55; if (x - y) int a
Posted: Sat May 14, 2022 4:37 pm
Question 22 What will be displayed after the following statements are executed? int x - 65; int y - 55; if (x - y) int ans x + y; 1 System.out.println (ans); O 10 O 100 0 120 The code contains an error and will not compile.