IN JAVA      Look at the following class definition: public class Dog { private int age = 0; // age is given in years, the default value is 0 private String name = "Fido"; // default name is Fido Dog(String firstName, int firstAge) { name = firstName; age = firstAge; if (age < 0) { age = 0; } } public void setName(String newName) { name = newName; } public int getAge() { return age; } public String getName() { return name; } public void haveBirthdayParty() { age = age + 1; System.out.println("Happy birthday " + name + "! You are now " + age + " years old!"); } public void printInfo() { System.out.println("This dog's name is " + name + " and he's " + age + " years old!"); } } Make a post containing your answers to all of the questions below: Can you create a new dog without specifying its name? Why or why not? Which of the Dog class's methods are accessors? Which ones are mutators? Can you use the methods provided to make a dog younger? (In other words, can you set age to a lower value than it already was?) When you create a new dog, what happens if you try to set its age to a negative value? Complete the main method below by writing code underneath each comment (assume the program has access to the Dog class). public static void main(String[] args) { // Put together a new Dog object. You can give it any name you want, but the age must be 3 // Call the printInfo method to print the dog's information // Call the haveBirthdayParty method so the dog becomes 4 years old }

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

IN JAVA 

 

 

Look at the following class definition:

public class Dog {
private int age = 0; // age is given in years, the default value is 0
private String name = "Fido"; // default name is Fido

Dog(String firstName, int firstAge) {
name = firstName;
age = firstAge;

if (age < 0) {
age = 0;
}
}

public void setName(String newName) {
name = newName;
}

public int getAge() {
return age;
}

public String getName() {
return name;
}

public void haveBirthdayParty() {
age = age + 1;
System.out.println("Happy birthday " + name + "! You are now " + age + " years old!");
}

public void printInfo() {
System.out.println("This dog's name is " + name + " and he's " + age + " years old!");
}
}

Make a post containing your answers to all of the questions below:

  1. Can you create a new dog without specifying its name? Why or why not?
  2. Which of the Dog class's methods are accessors? Which ones are mutators?
  3. Can you use the methods provided to make a dog younger? (In other words, can you set age to a lower value than it already was?)
  4. When you create a new dog, what happens if you try to set its age to a negative value?
  5. Complete the main method below by writing code underneath each comment (assume the program has access to the Dog class).

public static void main(String[] args) {

// Put together a new Dog object. You can give it any name you want, but the age must be 3

// Call the printInfo method to print the dog's information

// Call the haveBirthdayParty method so the dog becomes 4 years old
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Class
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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education