Answer: Eight
Explanation:
A class B address is 255.255.0.0. We need to borrow 8 bits from the network portion to have atleast 130 host per subnet.
11111111.00000000.00000000.00000000
The answer is C, can you mark me brain
Answer:
numAccounts = SavingsAccount.numberOfAccounts
Explanation:
In object oriented programming, when you have created an object of class, you can create several instances (objects) from that class by referencing the className.classFeild. In this instance SavingsAccount is the class name and
numberOfAccounts is a feild (or data member). to create a new numAccount, we use the syntax as above in the answer