Difficulty: Medium
Correct Answer: using College.Lib; Book b = new Book(); b.Issue();
Explanation:
Fact:
To avoid writing fully qualified names repeatedly, we can use using College.Lib;
. This allows direct instantiation of Book and Journal.
Final Answer:
using College.Lib; Book b = new Book(); b.Issue();
Discussion & Comments