class Vehicle
{
public:
virtual void print() final;
};
1. Another class, such as a class named Train, could inherit from the Vehicle class.
2. The override keyword could be added to the prototype for the print() function, after the word final.
1.. False
2.. True
1.. True
2.. True
1.. False
2.. False
1.. True
2.. False