Interview Questions & Answers

Java

Abstraction is one of the features of Java, it is an OOPS concept like other:

  • Polymorphism
  • Inheritance
class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!"); 
    }
}