Construct an abstract class called Employee with the following characteristics:
- A primary constructor that accepts two
Stringparameters:nameandsurname. - An abstract
Intproperty namedage. - An abstract function named
doWork. - A concrete function named
fullNamethat returns the employee’s full name consisting of theirnameandsurnameseparated by a single space.