What is operator?
Answers were Sorted based on User's Feedback
Answer / satyam
Operators are special symbols that perform specific
operations on one, two, or three operands, and then return
a result. Operators with higher precedence are evaluated
before operators with relatively lower precedence.
Operators on the same line have equal precedence. When
operators of equal precedence appear in the same
expression, a rule must govern which is evaluated first.
All binary operators except for the assignment operators
are evaluated from left to right; assignment operators are
evaluated right to left.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / prabu.m
//M.PRABU ATTUR ,SALEM prabu.thil@gmail.com
Operator
An operator is an symbol,
that performs certain operations over one or more data.
And results the one output
Example:
5+1;
a=5;
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / pranita yadav
An operator is asymbolthat tells computer to perform
certain mathematical or logical manipulation.Operator are
used in program to manipulate data and program.operator
perfom two or more operand and show the output only one
operand.
| Is This Answer Correct ? | 1 Yes | 0 No |
What are other modifiers?
Is upper case in java?
Can you sort a string in java?
I have one POJO class(Java bean class), it has two variables for that it has setters and getters. Now i have created two objects for that class and i have set the data for those variables through this two objects. Now question is i want check whether those two objects have same data or not, for this write a program? Thanks, Bose.
How do you generate random numbers in java?
When abstract methods are used?
Why can't we make a class private in java?
Tell me about your ability to work under pressure
Explain static nested classes ?
How to optimize the javac output?
A class can be a subclass of itself?
Can a for statement loop indefinitely?