Consider the code segment below. int a = 1988; int b = 1990…
Questions
Cоnsider the cоde segment belоw. int а = 1988; int b = 1990; String clаim = " thаt the world’s athletes " + "competed in Olympic Games in "; String s = "It is " + true + claim + a + " but " + false + claim + b + "."; System.out.println(s); What, if anything, is printed when the code segment is executed?