Computer Applications
If you want to change the precedence of operations in an expression, which symbols do you use?
Values & Data Types Java
11 Likes
Answer
Brackets — () can be used to change operator precedence.
Answered By
6 Likes
Related Questions
What are symbolic constants? How are they useful in writing programs?
How can you write single line comments in Java?
Write a Java constant declaration that gives the name TAX_RATE to the value 15%.
What is the output produced by the following lines of program code?
char x, y; x = 'y'; System.out.println(x); y = 'z'; System.out.println(y); x = y; System.out.println(x);