Java Programming (MindTap Course List)
9th Edition
ISBN: 9781337397070
Author: Joyce Farrell
Publisher: Cengage Learning
expand_more
expand_more
format_list_bulleted
Concept explainers
Expert Solution & Answer
Chapter 3, Problem 20RQ
Program Description Answer
If the user uses the automatically supplied default constructor for creating object, the numeric fields are set to “0”, character fields are set to Unicode “\u0000” and Boolean fields are set to “false”.
Hence, the correct option is “d”.
Expert Solution & Answer
Trending nowThis is a popular solution!
Students have asked these similar questions
Static & Not Final Field: Accessed by every object, Changing
Non-Static & Final Field: Accessed by object itself, Non-Changing
Static & Final: Accessed by every object, Non-Changing
Non-Static & Not Final Field: Accessed by object itself, ChangingRead the following situation and decide how the variables should be defined.
You have a class named HeartsPlayerA round of Hearts starts with every player having 13 cardsPlayers then choose 3 cards to “trade” with a player (1st you pass left, 2nd you pass right, 3rd you pass across, 4th you keep)Players then strategically play cards in order to have the lowest scoreAt the end of the round, points are cumulatively totaled for each player.If one player’s total is greater than 100, the game ends and the player with the lowest score wins.
1. How should the following data fields be defined (with respect to final and static)?(a) playerPosition (These have values of North, South, East, or West)(b) directionOfPassing(c) totalScore…
A __________ is a field that cannot be changed by any statement in the class. a. static field b. class name c. key field d. constant field
A constant object must be__________ ; it cannot be modified after it’s created.
Chapter 3 Solutions
Java Programming (MindTap Course List)
Ch. 3 - Prob. 1RQCh. 3 - Prob. 2RQCh. 3 - Prob. 3RQCh. 3 - Prob. 4RQCh. 3 - Prob. 5RQCh. 3 - Prob. 6RQCh. 3 - Prob. 7RQCh. 3 - Prob. 8RQCh. 3 - Prob. 9RQCh. 3 - Prob. 10RQ
Ch. 3 - Prob. 11RQCh. 3 - Prob. 12RQCh. 3 - Prob. 13RQCh. 3 - Prob. 14RQCh. 3 - Prob. 15RQCh. 3 - Prob. 16RQCh. 3 - Prob. 17RQCh. 3 - Prob. 18RQCh. 3 - Prob. 19RQCh. 3 - Prob. 20RQCh. 3 - Prob. 1PECh. 3 - Prob. 2PECh. 3 - Prob. 3PECh. 3 - Prob. 4PECh. 3 - Prob. 5PECh. 3 - Prob. 6PECh. 3 - Prob. 7PECh. 3 - Prob. 8PECh. 3 - Prob. 9PECh. 3 - Prob. 10PECh. 3 - Prob. 11PECh. 3 - Prob. 12PECh. 3 - Prob. 13PECh. 3 - Prob. 1GZCh. 3 - Prob. 2GZCh. 3 - Prob. 1CP
Knowledge Booster
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
- Write a class named RetailItem that holds data about an item in a retail store. The class should have the following properties:• Description—The Description property should hold a brief description of the item.• UnitsOnHand—The UnitsOnHand property should hold the number of units currently in inventory.• Price—The Price property should hold the item’s retail price. Write a constructor that accepts arguments for each property.The application should create an array of three RetailItem objects containing the following data: Description Units on Hand PriceItem 1 Jacket 12 59.95Item 2 Jeans 40 34.95Item 3 Shirt 20 24.95The application should have a loop that steps through the array, displaying each element’s properties.arrow_forwardThe class’s __________ are the statements that define the class’s fields, properties,and methods.a. data agentsb. body statementsc. private definitionsd. member declarationsarrow_forwardDon't put incorrect code..arrow_forward
- In C#, How would you compile the necessary code to define a class that will store a point in space. It will need the following data members: xcoord, ycoord. Include the following methods:- a default constructor that will set the coordinates to 0,0- a constructor that takes two values corresponding to the xcoord and ycoord values and sets them accordingly- accessor methods to get and set the values of the coordinates (you can use properties if you wish)- a display constructor that returns a string in the format of (xcoord, ycoord) Usage of the class: //create an instance of 2 points Point myPoint = new Point; //assign values using properties |If you do not declare properties for the data items, you might do the following myPoint.Xcoord = 42; |myPoint.SetX(42); myPoint.Ycoord = 19.63; |myPoint.SetY(19.63) // use the Display() method WriteLine(“The point is “+myPoint.Display()); //output The point…arrow_forwardThis has to be done in visual studio, c# windows form application (.net fromework). Question: The application should be able to do the following :• Create a class called Person which contains 4 private fields : Name(string), Surname (string),Course(string), CRNumber(int).• The class must contain 4 public properties which will be used to get and set the values of the private fields.• The class must contain a default constructer. The class must also contain an overloaded constructer which should be able to set the values of each of the private fields.• The class must contain a static ViewInfo method which will be used to display information of a queue of person objects back to the user neatly grouped underneath each other as displayed above.• Once a user clicks on the “Add Person” button then the information in the respective textboxes should be used to create a Person object (using the properties or the overloaded constructor) and add it to a queue which is of type Person. The…arrow_forwardThe Triangle class) Design a class named Triangle that extends GeomericObject. The class contains: Three double data fields named side1, side2, and side with default values 1.0 to denote three sides of the triangle.A no-arg constructor that creates a default triangle.A constructor that creates a triangle with the specific side1, side2, and side3.The accessor method for the three data fields.A method named getArea() that returns the area of this triangle.A method named getPerimeter() that returns the perimeter of this triangle.A method named toString() that returns a string description for the triangle. Note: Type this as java code and also need outputarrow_forward
- Please Format in a C++ format for Windows Visual Studio 2017 Please Write a class named Student that has the following variables: name - a string that hold the student's name idNumber - an integer that holds the student's id number major - a string that holds the students major The class should have the following constructors: A constructor that accepts the following values as arguments and assigns them to the appropriate member variables: student name, ID number, and major. A constructor that accepts the following values as arguments and assigns them to the appropriate member variables: student name and ID number. The major should be assigned an empty string (" "). A constructor that assigns empty strings (" ") to the name and major member variables and 0 to the idNumber member variable.arrow_forwardCreate a class named Box that includes integer data fields forlength, width, and height Create three constructors that requireone, two, and three parameters, respectively When one argumentis passed to the constructor, assign it to length, assign zeros toheight and width, and display “Line created” When two argumentsare used, assign them to length and width, assign zero to height,and display “Rectangle created” When three arguments are used,assign them to the three variables and display “Box created” Savethis file as Box java Create an application named TestBox thatdemonstrates each method works correctly Save the applicationas TestBox javaarrow_forwardThe __________ creates an object in memory and returns a reference to that object. a. = operator b. object allocator c. reference variable d. new operatorarrow_forward
- in C#, Visual Basic Create a Car class that has at least the following properties:• Year• Make• Price• Passengers-holds the number of seat belts available in the car (presumably how many passengers the car can hold). This field must be private since users presumably can’t change this value. Have two constructors: one that initializes everything to some default value for the base price of a car and one that also accepts values for luxury upgrades of: heated seats, sun-roof, and satellite radio. The class has two methods: 1) Get Paint Color() which accepts a standard base color option but allows the user to purchase a pricier customized color 2) Upgrade Costs() which computes the cost of user-selected luxury items and adds it to the price. Create three car objects: Ford (make Explorer), Lexus (make ES) and a Clown Car which overrides the passenger value to allow 20 clowns in the car. The Get Paint Color() and Upgrade Costs() functions needs to be called for each object and data for all…arrow_forwardAppointment Class Requirements The appointment object shall have a required unique appointment ID string that cannot be longer than 10 characters. The appointment ID shall not be null and shall not be updatable. The appointment object shall have a required appointment Date field. The appointment Date field cannot be in the past. The appointment Date field shall not be null.Note: Use java.util.Date for the appointmentDate field and use before(new Date()) to check if the date is in the past. The appointment object shall have a required description String field that cannot be longer than 50 characters. The description field shall not be null. Appointment Service Requirements The appointment service shall be able to add appointments with a unique appointment ID. The appointment service shall be able to delete appointments per appointment ID.arrow_forward2. Car Class Write a class named car that has the following fields: ▪ yearModel. The year Model field is an int that holds the car's year model. ▪ make. The make field is a String object that holds the make of the car, such as "Ford", "Chevrolet", "Honda", etc. ▪ speed. The speed field is an int that holds the car's current speed. In addition, the class should have the following methods. ■ Constructor. The constructor should accept the car's year model and make as arguments. These values should be assigned to the object's year Model and make fields. The constructor should also assign 0 to the speed field.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- EBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENTProgramming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:CengageEBK JAVA PROGRAMMINGComputer ScienceISBN:9781305480537Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENT
- Microsoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781337671385
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT
Programming Logic & Design Comprehensive
Computer Science
ISBN:9781337669405
Author:FARRELL
Publisher:Cengage
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781305480537
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#
Computer Science
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Cengage Learning,
Introduction to Classes and Objects - Part 1 (Data Structures & Algorithms #3); Author: CS Dojo;https://www.youtube.com/watch?v=8yjkWGRlUmY;License: Standard YouTube License, CC-BY