
java programming
Create a class called Citizen with the following attributes/variables:
a. String citizenID
b. String citizenName
c. String citizenSurname
d. String citizenCellNumber
e. int registrationDay
f. int registrationMonth
g. int registrationYear
2. Create a class called Node with the following attributes/variables:
a. Citizen citizen
b. Node nextNode
3. Create a class called CitizenRegister with the following attributes/variables:
a. Node headNode
b. int totalRegisteredCitizens
4. Add and complete the following methods in CitizenRegister:
a. head()
i. Returns the first citizen object in the linked list
b. tail()
i. Returns the last citizen object in the linked list
c. size()
i. Returns the totalRegisteredCitizen
d. isEmpty()
i. Returns the boolean of whether the linked list is empty or not
e. addCitizenAtHead(Node newNode)
i. Adds a new node object containing the citizen object information
before the headNode
f. addCitizenAtTail(Node newNode)
i. Adds a new node object containing the citizen object information at
the end of the linked list
g. addCitizenBefore(String citizenID, Node newNode)
i. Adds a new node object containing the citizen object information
before the node with the matching citizenID
ii. If such citizen object isn’t found display “Citizen has not registered for
vaccine” and add the new node at the end of the linked list
h. addCitizenAfter(String citizenID, Node newNode)
i. Adds a new node object containing the citizen object information
after the node with the matching citizenID
ii. If such citizen object isn’t found display “Citizen has not registered for
vaccine” and add the new node at the end of the linked list
i. removeCitizen(String citizenID)
i. Deletes the node object containing the citizen object with the
matching citizenID
ii. If such citizen object isn’t found display “Citizen has not registered for
vaccine”
j. removeLastCitizen()
i. Deletes the last node object containing the citizen object at the end
of the linked list
k. removeFirstCitizen()
i. Deletes the first node object containing the citizen object in the linked
list
l. displayAllCitizens()
Print the name and surname of all the citizens in the linked list in
neatly formatted output:
citizenNumber 007
citizenName citizenSurname James Bond

Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 4 images

- python: class Student:def __init__(self, first, last, gpa):self.first = first # first nameself.last = last # last nameself.gpa = gpa # grade point average def get_gpa(self):return self.gpa def get_last(self):return self.last class Course:def __init__(self):self.roster = [] # list of Student objects def add_student(self, student):self.roster.append(student) def course_size(self):return len(self.roster) # Type your code here if __name__ == "__main__":course = Course()course.add_student(Student('Henry', 'Nguyen', 3.5))course.add_student(Student('Brenda', 'Stern', 2.0))course.add_student(Student('Lynda', 'Robison', 3.2))course.add_student(Student('Sonya', 'King', 3.9)) student = course.find_student_highest_gpa()print('Top student:', student.first, student.last, '( GPA:', student.gpa,')')arrow_forwardJava script. class Chameleon { static colorChange(newColor) { this.newColor = newColor; return this.newColor; } constructor({ newColor = 'green' } = {}) { this.newColor = newColor; } } const freddie = new Chameleon({ newColor: 'purple' }); console.log(freddie.colorChange('orange'));.arrow_forwardDevice is a class. Computer is a subclass of the class Device. How can we invoke the constructor of the class Device in the subclass Computer? Device. __init__() Device (self) super().__init__() import Device in Computer Computer_init__()arrow_forward
- java code Problem : Bank Account Details Super Class : Account Attributes : customerid , customerame , balance , account Methods : 1-Read the account details 2-Display the Account details Sub class : Bank Attributes : deposit amount , withdraw the amount Methods : 1-Set the deposit amount and return the deposit amount 2-Set the withdraw amount and return the withdraw the amount 4- Display the Bank detailsarrow_forwardon JAVA language Define a class named Wall. The class should have two private double variables, one to store the length of the Wall and another to store the height ._Create adefault constructor that sets the length& height to 0, create a second constructor with input parameters for the of the data variables and third copy constructor.Add accessor and mutator functions to read and set both variables Add another function that returns the area of the Wall as double .Write program that tests all your constructors and functions for at least three different Wall objectsarrow_forwardclass IndexItem { public: virtual int count() = 0; virtual void display()= 0; };class Book : public IndexItem { private: string title; string author; public: Book(string title, string author): title(title), author(author){} virtual int count(){ return 1; } virtual void display(){ /* YOU DO NOT NEED TO IMPLEMENT THIS FUNCTION */ } };class Category: public IndexItem { private: /* fill in the private member variables for the Category class below */ ? int count; public: Category(string name, string code): name(name), code(code){} /* Implement the count function below. Consider the use of the function as depicted in main() */ ? /* Implement the add function which fills the category with contents below. Consider the use of the function as depicted in main() */ ? virtualvoiddisplay(){ /* YOU DO NOT NEED TO IMPLEMENT THIS FUNCTION */ } };arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





