Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Objective: Using inheritance. You will design a record database for the new CS-IT library. This library holds 3 major types of items, namely books, magazines
Objective: Using inheritance. You will design a record database for the new CS-IT library. This library holds 3 major types of items, namely books, magazines and newspapers. They have the following attribute:s Books: o Title (String) o Authors (String) (Have multiple authors in a single string, separated by comma] o Date of publishing (String) . Magazines: o Title (String) o Editor (String) [Have multiple editors in a single string, separated by comma] o Date of publishing (String) o Issue No. (integer) o Volume no. (integer) . Newspapers o Title (String) o Editor (String) [Have multiple editors in a single string, separated by comma] o Date of publishing (String) o Edition (String) [e.g. Paper x may have a Los Angeles and New York editions] Additionally, vou need to take the following into account Each item has a unique record ID (integer) Books may be of two types: Ebooks which have an additional attribute for its url (string) Hard copy books which have an additional attributed for edition (integer) le.g.1st edition] o o Similarly, magazines may be of two types: . Objective: Using inheritance. You will design a record database for the new CS-IT library. This library holds 3 major types of items, namely books, magazines and newspapers. They have the following attribute:s Books: o Title (String) o Authors (String) (Have multiple authors in a single string, separated by comma] o Date of publishing (String) . Magazines: o Title (String) o Editor (String) [Have multiple editors in a single string, separated by comma] o Date of publishing (String) o Issue No. (integer) o Volume no. (integer) . Newspapers o Title (String) o Editor (String) [Have multiple editors in a single string, separated by comma] o Date of publishing (String) o Edition (String) [e.g. Paper x may have a Los Angeles and New York editions] Additionally, vou need to take the following into account Each item has a unique record ID (integer) Books may be of two types: Ebooks which have an additional attribute for its url (string) Hard copy books which have an additional attributed for edition (integer) le.g.1st edition] o o Similarly, magazines may be of two types
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started