This example shows how to define and use constants inside PHP classes. We define a class Car with a constant WHEELS set to 4. We access this constant using Car::WHEELS and print its value. Class constants belong to the class itself, not instances, so we use :: to access them. Constants cannot be changed after they are set. The execution table traces each step from defining the class, accessing the constant, printing it, and ending the script. Key moments clarify why we use ClassName::CONSTANT and that constants are immutable. The quiz tests understanding of these points.