penormed?
19. Determine the output of the following program
public class PredictOutput1
public static void main(String args[])
5
int a = 4, b = 2, C = 3;
System.out.println("Output 1: " + (a = b * c));
System.out.println("Output 2: " + (a = (b * c)));
Answers
Answered by
3
Answer:
answer will be (i) 1.5 (ii) 24
Similar questions