Answer:
1.)
- C.) Optional
2.)
- D.) Short-term Notes Payable
3.)
- A.) Payroll Sinking Funds
4.)
- A.) A Formal Timekeeping System Is Used
(I'm possibly wrong on the last question, if so then my apologies and I wish you the best of luck.)
When you change the size of an individual shape in a SmartArt graphic, the remaining shapes may adjust their sizes and positions, depending upon the layout of your SmartArt graphic and the amount of available space. In some cases, only the individual shape that you resize will change. In others cases, corresponding shapes will change their size as well.
Answer:
within the Book class but needs to also be outside of any methods.
Explanation:
If Ben is creating an entire Book class then the instance variable needs to be within the Book class but needs to also be outside of any methods. If Ben places the variable inside a method it can only be used by that method and therefore becomes an instance variable of that method and not the class. By creating it inside the class and outside the methods it can be used every single time a Book object is created. Therefore, creating an instance variable of serialNumber every time.