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
Hindi,
5 months ago
World Languages,
5 months ago
Math,
5 months ago
Computer Science,
10 months ago
Math,
10 months ago
History,
1 year ago