This document provides an overview of object-oriented programming concepts in Java including classes, objects, attributes, and methods. It discusses how classes define templates for objects and how objects are instances of classes. Examples are given of declaring a class for a car with attributes like make and speed, and methods like accelerate and turn. The document also covers creating objects from classes in code, and accessing object attributes and methods. Finally, it briefly introduces some standard Java classes like Math that are commonly used.