Computer Applications
What is an operator? What are the three main types of operators? Name them.
Java Operators
108 Likes
Answer
An operator is a symbol or sign used to specify an operation to be performed in Java programming.
The three main types of operators are Arithmetical, Logical and Relational.
Answered By
55 Likes
Related Questions
Predict the output of the below Java program snippet:
c = (val + 550 < 1700)? 200: 400;if: (a) val = 1000 (b) val = 1500
If the value of basic=1500, what will be the value of tax after the following statement is executed ?
tax = basic > 1200 ? 200 : 100;How is Java expression different from statement?
Explain Arithmetic operator with an example.