List of article on Archieve

Syntax And Elements of Declaration With Example In Java

The syntax in java refers to the set of rules defining how a Java program is written and interpreted. The syntax is mostly derived from C and C++. Elements Of Java Syntax: A Java file can contain the following elements: Package declaration Import statements Type declaration Fields declaration Methods declaration Constructors declaration Example of General JAVA Program Syntax: Below is … Continue reading Syntax And Elements of Declaration With Example In Java

Multidimensional Array With Example In JAVA

Let’s understand Multidimensional array with real life scenario. Suppose you went to buy ticket on ticket counter, it may be movie ticket, rail ticket or bus ticket there are two lines mentioned. One is for male and second one is for female. If there is only one line, then it is called as one dimension. … Continue reading Multidimensional Array With Example In JAVA

Shift: LeftShift And Rightshift Operator In JAVA With Example

Shift Operator is of two types Bitwise Left Shift And Right Shift operator. In the Bitwise shift operators, the result comes applying these operators on the bit values. Below we will discuss both the Shift operator. BITWISE LEFT SHIFT OPERATOR As you know very well, bit is a concept of binary number system. Here if … Continue reading Shift: LeftShift And Rightshift Operator In JAVA With Example

Bitwise Operator In JAVA With Example

As from the name Bitwise sound these operator performs the operation on bit value. And also you must have heard bit is smallest unit of memory. This is represented by either 0 or 1 which means you have only one option to mark your answer. Also you can understand this concept by an electrical switch … Continue reading Bitwise Operator In JAVA With Example