Computer Science, asked by nibhasingh11061979, 2 months ago

Determine the output of the following program.
public class PredictOutput1
{
public static void main(String args[])
{
int a = 4, b = 2, C = 3;
System.out.println("Output 1: " + (a = b * c));
System.out.println("Output 2: " + (a = (b
+ (a = (b * c)));
}
}​

Answers

Answered by chandrasekhar987
0

Answer:

No Output

Explanation:

The java program you provided here has so many syntax error....

This is preventing the program from execution...

Similar questions