Output Question int z [] = {39, 42, 36, 45,75, 98};
System.out.println(z [3]+ "," z[4] * 2);
Answers
Answered by
0
Answer:
Output: Error (becz you forget to add "+" symbol)
Correct coding should be: System.out.println(z [3]+ "," + z[4] * 2);
Then the output will be: 45,150
Similar questions
English,
4 months ago
Social Sciences,
4 months ago
Computer Science,
8 months ago
Math,
8 months ago
History,
1 year ago