✏️ Explanatory Question
new keyword followed by the class constructor. For example:
public class Truck
{
public TruckLoad createNewTruckLoad()
{
TruckLoad myTruckLoad = new TruckLoad();
return myTruckLoad;
}
}
In this example, the TruckLoad class is instantiated inside the createNewTruckLoad method of the Truck class using the new keyword.