F
(Choose 2 answers)
You have been given a design document for a veterinary registration system for implementa states:"A pet has an owner, a registration date, and a vaccination-due date. A cat is a pet that has whether it has been neutered, and a textual description of its markings."Given that the Pet class has already been defined, which of the following fields would be app inclusion in the Cat class as members?
(Select the most appropriate two declarations).
A. Pet thePet;
B. Date registered;
C. Date vaccinationDue;
D. Cat theCat;
E. boolean neutered;
F. String markings;
E31