Operators Operators are used to perform some operations. Operators are special symbols that works with variables and constants in java. These symbols performs specific operation and gave result accordingly. Operators work with Operands. For Eg: a + b; Here a, b are Operands to which operation is to be performed, + is Operator symbol. To work with operators 3 things must be noticed before using them i.e. Use of operator. Type of operand you are using. Result of operation. Unary Operators : These type of operators required only one operand. For e:. +, -, ++, -- Binary Operators : These type of operators required two operands to perform some operation. For eg: +, -, *, =, >, <, && etc. Ternary Operators : These type of operators required three operands to perform some operation. For eg: :? Arithmetic Operators : Arithmetic operato...