: What is the Output of the following? class output { public static void main(String args[]) { int p = 9; System.out.println(++p * 4 + " "+p); } }
Answers
Answered by
0
Answer:
Your answer is :40 10
Explanation:
Given :
p=9
++p=10
so,
(++p * 4 + " "+p)=(10*4+" "+10)=40 10
Similar questions
Computer Science,
4 months ago
Sociology,
4 months ago
English,
4 months ago
Math,
8 months ago
Economy,
11 months ago
Computer Science,
11 months ago