Computer Science, asked by dev4494, 10 months ago

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 runjhun44
3

Answer:

answer will be (i) 1.5 (ii) 24

Similar questions