Question 7 2 pts (CO 5) The access specification is left out of the following declaration. What will the access specification be? class Test: Grade removed protected private public Question 8 2 pts (CO 5) allows programmers to send the same function to call objects regardless of which class the object belongs to. analogism hierarchy O polymorphism objective Question 9 2 pts (CO 5) A polymorphic method with __ binding means functions are statically bonded during compiler time and the parent class function is invoked. static related dynamic pointer Question 10 2 pts (CO 5) When developing a program for the Items sold at a company, you have created a base class of Item with attributes of id, Price, Inventory, Description). You would like to develop a Book class and a tablet class. How would you develop it? Do not develop it Use Inheritance such as Book extends Item Use procedural programming and create no subclasses Use Composition so that book and tablet would be member variables of Item Top Show transcribed image text Question 7 2 pts (CO 5) The access specification is left out of the following declaration. What will the access specification be? class Test: Grade removed protected private public
Question 8 2 pts (CO 5) allows programmers to send the same function to call objects regardless of which class the object belongs to. analogism hierarchy O polymorphism objective
Question 9 2 pts (CO 5) A polymorphic method with __ binding means functions are statically bonded during compiler time and the parent class function is invoked. static related dynamic pointer
Question 10 2 pts (CO 5) When developing a program for the Items sold at a company, you have created a base class of Item with attributes of id, Price, Inventory, Description). You would like to develop a Book class and a tablet class. How would you develop it? Do not develop it Use Inheritance such as Book extends Item Use procedural programming and create no subclasses Use Composition so that book and tablet would be member variables of Item Top
Expert Answer
Answer to Question 7 2 pts (CO 5) The access specification is left out of the following declaration. What will the access specific…