Java

Java is a very popular programming language for developing different scale applications. Java can be used to develop various different kind of applications i.e.; a desktop application, mobile application, web application etc.

Java is an object oriented programming language developed by Sun Microsystems in 1995.

Learn more about Java evolution

Java for-each loop

For-each constructOne of the construct introduced since Java 1.5 is for-each loop. "for-each" loop is an enhanced version of a Java other looping constructs "for" and "while".Just consider below examp...

Java keyword & operator instanceof

instanceof"instanceof" is a Java keyword and a binary operator. It works on two operands, object reference on the left and class/interface name on the right. instanceof operator returns true if the ob...

Develop, Compile & Run a C/C++/Java program online

Online IDE CompilerOne of my friend has showed me an online IDE and compiler for C, C++, and Java programming languages. It's amazing, I've used it just to test the interface. I just thought I would ...

Java marker interface or tagged interface

Marker interfaceAn interface without any members declared in it is called as Marker interface. i.e.; no methods and no constants available in this interface. Marker interface is also called as tagged ...

Concatenating two characters puzzle

Guess the output for below programpublic class CharPuzzle{ public static void main(String args[]) { System.out.println('A'+'B'); }}I think you've guessed that the above program prints the output...