Using the `new` keyword. Frame the concept in practical terms so you can explain it during interview discussion.
In Java, objects are instantiated using the `new` keyword, which calls the class constructor to create the object. For example, `Product product = new Product("Laptop", 999.99);` creates a new `Product` object with specified attributes.