Java – Arrays

An array is a group or the collection of data having the same data-type. Arrays are objects in Java and with the fixed size(disadvantage). Elements are arranged inside the array with index numbers starting from zero as the first elements.Random …

Read moreJava – Arrays

Java – Jump Statement

In Java, Jump statements are used to interrupt loop or switch-case instantly to transfer the program control from one point to elsewhere in the program.Java supports three jump statements: continue.  break  return. break:  This statement is used within the loop …

Read moreJava – Jump Statement