Java Overview Interview
Java Overview Interview
1. What is Java?
Java is a high-level, class-based, object-oriented programming language that is designed to have as few
- Object-Oriented
- Multithreaded
System.out.println("Hello, World!");
- Encapsulation
- Inheritance
- Polymorphism
- Abstraction
Java Overview for Interviews
6. Exception Handling:
try {
int result = 10 / 0;
} catch (ArithmeticException e) {