Answer:
A network switch is a multiport network bridge that uses MAC addresses to forward data at the data link layer (layer 2) of the OSI model.
I hope this helps you :)
While a computer is running the operating system remains in memory is true.
The click feature>........................................
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`.