Provide examples of two Persons in the Examples class, as follows: • a person named Sarah who was born in 1773 and died in 1841 • a person named Will who was born in 1885 and died on June 6, 1923

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter11: Inheritance And Composition
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question
Provide examples of two Persons in the Examples class, as follows:
• a person named Sarah who was born in 1773 and died in 1841
• a person named Will who was born in 1885 and died on June 6, 1923
Transcribed Image Text:Provide examples of two Persons in the Examples class, as follows: • a person named Sarah who was born in 1773 and died in 1841 • a person named Will who was born in 1885 and died on June 6, 1923
Use the following scenario for the next question.
A programmer is writing software to manage information about people in a
genealogical database. The software is keeping track of each person's name,
date of birth, and date of death. Sometimes only the year is known for a date,
and sometimes the entire date is known (month, day, year). The program
contains these class definitions:
class Date {
// 1 for Jan, 2 for Feb, etc.
private int month;
private int day;
private int year;
public Date (int month, int day, int year) {
this.month = month;
this.day = day;
this.year = year;
}
}
class Person<s, T> {
private String name;
private s dob;
private T dod;
// date of birth
// date of death
public Person (String name, s dob, T dod) {
this.name = name;
this.dob = dob;
this.dod = dod;
}
}
Transcribed Image Text:Use the following scenario for the next question. A programmer is writing software to manage information about people in a genealogical database. The software is keeping track of each person's name, date of birth, and date of death. Sometimes only the year is known for a date, and sometimes the entire date is known (month, day, year). The program contains these class definitions: class Date { // 1 for Jan, 2 for Feb, etc. private int month; private int day; private int year; public Date (int month, int day, int year) { this.month = month; this.day = day; this.year = year; } } class Person<s, T> { private String name; private s dob; private T dod; // date of birth // date of death public Person (String name, s dob, T dod) { this.name = name; this.dob = dob; this.dod = dod; } }
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Distributed Database Concepts
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT