16/17 can't be simplified but if you want it as a decimal it's 0.9412 or 0.94
Resources I think because what u have all depends on resources
Answer:
customers += newCustomer;
Explanation:
The operator += expands into + and assignment. The assignment is not overloaded so the required code is
customers += newCustomer;
This expands into
customers = customers + newCustomer;
The overloaded + operator is called for the right expression. This returns a `CustomerList`, which is then assigned through the = operator to `customers`.