Recent posts

Java - Arrays

5 minute read

Array, what is it? An array is a group of variables of the same data type and referred to by a common name. An array is an object which is a contiguous block...

Java - Operators (Part - 1)

7 minute read

Java provides a rich set of operators to manipulate variables. We can divide all the Java operators into the following groups:

Java - Loop

3 minute read

You may encounter situations, when a block of code needs to be executed several number of times. In general, statements are executed sequentially: The first ...

Java - Control Structures

3 minute read

Java, like any programming language, supports both conditional statements and loops to determine control flow.