Operator + with strings
You have used the operator + with numbers. When you use + with numbers, the result is also a number. However, if you use operator + with strings, it concatenates them e.g.
5 + 6 results in to 11.
“5” + “...
Wednesday, February 26, 2014
Wednesday, February 19, 2014
Types and Examples of Binary Operators in Java Programming part-2
Operators that act upon two operands are referred to as Binary Operators. The operands of a binary operator are distinguished as the left or right operand. Together, the operator and its operands constitute an expression.
Additi...
Thursday, February 13, 2014
Types and Examples of Operators in Java Programming part-1
In Java programming, the operations (specific tasks) are represented by operators and the objects of the operations (s) are referred to as operands.
Java’s rich set of operators comprise of arithmetic, relational, logical and cer...