.

Comparing string object

It is often necessary to compare strings to see if they are the same, or to see which comes first in alphabetical order. It would be nice if we could use the comparison operators, like == and >, but we can’t. To compare Strings, we have to use the equals and compareTo methods. Syntax for using method compareTo : str1.compareTo(str2); The…

Read More

User Input from Keyboard

Accepting keyboard input in Java is done using a Scanner object. Consider the following statement Scanner console = new Scanner(System.in) This statement declares a reference variable named console. The Scanner object is associated with standard input device (System.in). To get input from keyboard, you can call methods of Scanner class. For example in following statment…

Read More

Operator Precedence

Consider the following statement: X = 5 + 30 * 10 x will store 305. In this equation, the numbers 30 and 10are multiplied first, and the number 5 is added to their product. Multiplication, division and modulus have higher order than addition and subtraction, which means that they’re performed first. If two operators sharing…

Read More