bartleby

Videos

Textbook Question
Book Icon
Chapter 6, Problem 10PP

Write a program that will record the votes for one of two candidates by using the class VoteRecorder, which you will design and create. Vote Recorder will have static variables to keep track of the total votes for candidates and instance variables to keep track of the votes made by a single person. It will have the following attributes.

  • nameCandidatePresident11—a static String that holds the name of the first candidate for president
  • nameCandidatePresident2—a static string that holds the name of the second candidate for president
  • nameCandidateVicePresident1 —a static string that holds the name of the first candidate for Vice president
  • nameCandidateVicePresident2—a static string that holds the name of the second candidate for Vice president
  • votesCondidatePresident1—a static integer that holds the number of votes for the first candidate for president
  • votesCandidatePresident2—a static integer that holds the number of voles for the second candidate for president
  • votesCandidateVicePresident1—a static integer that holds the number of votes for the first candidate for Vice president
  • votesCandidateVicePresident2—a static integer that holds the number of rates for the second candidate for Vice president
  • myVoteForPresident—an integer that holds the vote of a single individual for president (0 for no choice, 1 for the first candidate, and 2 for the second candidate)
  • myVoteForVicePresident—an integer that holds the vote of a single individual for vice president (0 for no choice, 1 for the first candidate, and 2 for the second candidate)

    In addition to appropriate constructors, VotRecorder has the following methods:

  • setCandidaterPresident(String name1, String name2)—a static method that sets the names of the names of the two candidates for president
  • getCandicateoVicePresident (String name1, string name2)—a static method that sets the names of the two candidates for vice president
  • resetVotes—a static method that resets the vote counts to zero
  • getCurrentVotePresident—a static method that returns a string with a current total number of votes for both presidential candidates
  • getAndConfirmVotes—a non-static method that gets an individual’s votes, confirms then, and then records them
  • getAVote(String name1, string name2)—a private method that returns a vote choice for a single race from a individual (0 for no choice, 1 for the first candidate, and 2 for the second candidate)
  • getVotes—a private method that returns a vote choice for president and vice president from an individual
  • confirmVotes—a private method that displays a person’s vote for president and vice president, asks whether the voter is happy with these choices, and returns true or false according to a yes-or-no response
  • recordVotes—a private method that will add an individual’s votes to the appropriate static variables

 Create a program that will candidates an election. The candidates for president are Annie and Bob. The candidates for vice president are John and Susan. Use a loop to record the votes of many voters. Create a new Vote Recorder object for each voter. After all the voters are done, present the results.

Blurred answer
Students have asked these similar questions
Write a program that asks a user to enter a first name, a last name, and a year, andconstruct an account ID in the format of:firstname.lastnameYYwhere the field “firstname” is user’s first name allowing no more than (first) five letters;the field “lastname” is user’s last name allowing no more than (first) six letters; and thefiled “YY” is the lower two digits of the year. For example:first name entered: Michaellast name entered: Richmondyear entered: 1985 the constructed account ID will be:  Micha.Richmo85
Write a program in a separate python file to test the class you just created by declaring two variables of the type StudentGrader named student1Grade and student2Grade. a. Set different data for each student grade (you can use your data for one of those with an estimate of what you think you will get for the final).b. Display the overall score and grade letter for each objectc. Compare and display a message about which studentGrade object received a better letter grade.   (image attached is the previous question to give context as to what the previous class was)
Write a class to represent a real-world concept.•Write voidmethods and methods that return values.•Write methods that have parameters.•Implement information hiding using private instance variables, accessors, and mutators. 3.Modify the Java Class template:(a)In the Toolsmenu, select Templates.(b)In the dialog box that comes up, open the Javafolder, select Java Classand click the Open in Editorbutton.(c)A new file should open up containing the following text:<#assign licenseFirst = "/*"><#assign licensePrefix = " * "><#assign licenseLast = " */"><#include"${project.licensePath}"><#if package?? && package != "">package ${package};</#if>/**** @author ${user}*/   public class ${name} {}(d)Delete the first four lines and after @authorreplace the text ${user}with your first and last name. The file should now look like this (except with your name):<#assign licenseFirst = "/*"><#assign licensePrefix = " * "><#assign licenseLast = "…

Chapter 6 Solutions

Java: An Introduction To Problem Solving And Programming Plus Mylab Programming With Pearson Etext -- Access Card Package (8th Edition)

Ch. 6.2 - Can you reference an instance variable by name...Ch. 6.2 - Is the following valid, given the class...Ch. 6.2 - Prob. 13STQCh. 6.2 - Prob. 14STQCh. 6.2 - Prob. 15STQCh. 6.2 - Is the following valid, given the class...Ch. 6.2 - What values are returned by each of the following?...Ch. 6.2 - Suppose that speed is a variable of type double...Ch. 6.2 - Repeat the previous question, but instead assign...Ch. 6.2 - Suppose that nl is of type int and n2 is of type...Ch. 6.2 - Define a class CircleCalculator that hat only two...Ch. 6.2 - Which of the following statements are legal?...Ch. 6.2 - Write a Java expression to convert the number in...Ch. 6.2 - Consider the variable 5 of type String that...Ch. 6.2 - Repeat the previous question, but accommodate a...Ch. 6.2 - Write Java code to display the largest and...Ch. 6.3 - Prob. 27STQCh. 6.3 - Consider the variable allCents in the method...Ch. 6.3 - What is wrong with a program that starts as...Ch. 6.3 - Prob. 30STQCh. 6.3 - In your definition of the class OutputFormat. In...Ch. 6.4 - Prob. 32STQCh. 6.4 - Prob. 33STQCh. 6.4 - Prob. 34STQCh. 6.4 - Consider the class Species in Listing 5.19 of...Ch. 6.4 - Repeat the previous question for a method...Ch. 6.4 - Still considering the class Species in Listing...Ch. 6.4 - Rewrite the method add in Listing 6.16 so that it...Ch. 6.4 - In Listing 6.16, the set method that has a String...Ch. 6.5 - Give the definitions of three accessor methods...Ch. 6.6 - If cardSuit is an instance of Suit and is assigned...Ch. 6.7 - Suppose you want to use classes in the package...Ch. 6.7 - Prob. 43STQCh. 6.7 - Can a package have any name you might want, or are...Ch. 6.7 - On your system, place the class Pet (Listing 6.1)...Ch. 6.8 - The previous section showed you how to change the...Ch. 6 - Prob. 1ECh. 6 - Prob. 2ECh. 6 - Write a default constructor and a second...Ch. 6 - Write a constructor for the class...Ch. 6 - Consider a class characteristic that will be used...Ch. 6 - Create a class RoomOccupancy that can be used to...Ch. 6 - Write a program that tests the class RoomOccupancy...Ch. 6 - Sometimes we would like a class that has just a...Ch. 6 - Create a program that tests the class Merlin...Ch. 6 - In the previous chapter, Self-Test Question 16...Ch. 6 - Create a class Android whose objects have unique...Ch. 6 - Prob. 12ECh. 6 - Modify the definition of the class Species in...Ch. 6 - Prob. 2PCh. 6 - Using the class Pet from Listing 6.1, write a...Ch. 6 - Do Practice Program 4 from Chapter 5 except define...Ch. 6 - The following class displays a disclaimer every...Ch. 6 - Do Practice Program 5 from Chapter 5 but add a...Ch. 6 - We can improve the Beer class from the previous...Ch. 6 - Define a utility class for displaying values of...Ch. 6 - Write a new class TruncatedDollarFormat that is...Ch. 6 - Complete and fully test the class Time that...Ch. 6 - Complete and fully test the class Characteristic...Ch. 6 - Write a Java enumeration LetterGrade that...Ch. 6 - Complete and fully test the class Per n that...Ch. 6 - Write a Temperature class that represents...Ch. 6 - Repeat Programming Project 8 of the previous...Ch. 6 - Write and fully test a class that represents...Ch. 6 - Write a program that will record the votes for one...Ch. 6 - Repeat Programming Project 10 from Chapter 5, but...Ch. 6 - Create a JavaFX application that displays a button...
Knowledge Booster
Background pattern image
Computer Science
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
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education
6 Stages of UI Design; Author: DesignerUp;https://www.youtube.com/watch?v=_6Tl2_eM0DE;License: Standard Youtube License