Encapsulation, Abstraction, Inheritance, Polymorphism...
class Animal { void speak() { System.out.println("Sound"); } }
Try, catch, finally, throw, throws...
try { ... } catch(Exception e) { ... }