Respuesta :
Answer:
1. D. 2*(3 + 4*5)
2. A. 100
3. B. It would display the text, "the sum of x and y is 12."
Explanation:
1.
Mathematical expressions are evaluated according to operator preference. The operator preference goes like as follows:
- First expression under brackets are evaluated
- Then multiplication or division operator
- Then addition or subtraction operator.
Thus in option D first 4*5 will be evaluated i.e. multiplication, after that 3 + 20 will be evaluated i.e. addition and finally 2*23 will be evaluated i.e. multiplication. Hence correct option is D.
2.
The execution of given statements will be as follows:
- First int i = 10; will get executed which will set value of i as 10.
- Then j = 10*i++; will get executed. In this statement first original value of i will get multiplied with 10. The result of multiplication will get stored in j.
- And after that i will get increment by 1.
This is due to the use of post increment. In post increment the value of operator is incremented after the expression evaluation is complete.
Thus final value of j after execution of both statements will be 10 × 10 = 100. Hence correct option is A.
3.
The first two statement of code segment are used to assign the value of 1 and 2 to x and y respectively. The statement System.out.println(); function in Java is used to provide output on console.
The last statement will result in following output:
The sum of x and y is12.
Inside println() function any content within double inverted commas ("") is present as it is on console. The part +x+y+ will be evaluated as 12 i.e. value of y written next to value of x.
In case it was written as +(x+y)+, it would have been evaluated as 3 i.e. value of x + value of y.
Hence the correct option is B.