// Program one public class ArrayOfObjects { public static void main(String[] args) { Animal animals[] = new Animal[4]; animals [0] = new Animal("Tiger", 100); animals[1] = new Animal("Lion", 80); animals[2] = new Animal("Horse", 100); animals [3] = new Animal("Monkey", 30); for(Animal animal: animals) animal.printDetails(); } } class Animal { } public String name; public int speed; public Animal(String name, int speed) { this.name = name; this.speed = speed; } public void printDetails() { System.out.println(name+" - "+speed); } 1. What is the output of the program above? 2. Add more animals such as (Dog, 60), (Giraffa, 50), (Turtle, 10) to the program, and print the output. 3. Add variable age to the program and assume a random ages for different animals, and then print the output.
// Program one public class ArrayOfObjects { public static void main(String[] args) { Animal animals[] = new Animal[4]; animals [0] = new Animal("Tiger", 100); animals[1] = new Animal("Lion", 80); animals[2] = new Animal("Horse", 100); animals [3] = new Animal("Monkey", 30); for(Animal animal: animals) animal.printDetails(); } } class Animal { } public String name; public int speed; public Animal(String name, int speed) { this.name = name; this.speed = speed; } public void printDetails() { System.out.println(name+" - "+speed); } 1. What is the output of the program above? 2. Add more animals such as (Dog, 60), (Giraffa, 50), (Turtle, 10) to the program, and print the output. 3. Add variable age to the program and assume a random ages for different animals, and then print the output.
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
Related questions
Question
![// Program one
public class ArrayOfObjects {
public static void main(String[] args) {
Animal animals[] = new Animal[4];
animals [0] = new Animal("Tiger", 100);
animals[1] = new Animal("Lion", 80);
animals [2] = new Animal("Horse", 100);
animals [3] = new Animal("Monkey", 30);
for (Animal animal: animals)
animal.printDetails();
}
}
class Animal {
}
public String name;
public int speed;
public Animal(String name, int speed) {
this.name = name;
this.speed = speed;
}
public void printDetails() {
System.out.println(name+" - "+speed);
}
1. What is the output of the program above?
2.
Add more animals such as (Dog, 60), (Giraffa, 50), (Turtle, 10) to the program, and print the
output.
3.
Add variable age to the program and assume a random ages for different animals, and then
print the output.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F385c6f29-1f1e-40e3-b8f8-8d3f84f564c8%2Fa998ade5-60d5-45d5-ad58-ba3f53608c5c%2Fybujspb_processed.jpeg&w=3840&q=75)
Transcribed Image Text:// Program one
public class ArrayOfObjects {
public static void main(String[] args) {
Animal animals[] = new Animal[4];
animals [0] = new Animal("Tiger", 100);
animals[1] = new Animal("Lion", 80);
animals [2] = new Animal("Horse", 100);
animals [3] = new Animal("Monkey", 30);
for (Animal animal: animals)
animal.printDetails();
}
}
class Animal {
}
public String name;
public int speed;
public Animal(String name, int speed) {
this.name = name;
this.speed = speed;
}
public void printDetails() {
System.out.println(name+" - "+speed);
}
1. What is the output of the program above?
2.
Add more animals such as (Dog, 60), (Giraffa, 50), (Turtle, 10) to the program, and print the
output.
3.
Add variable age to the program and assume a random ages for different animals, and then
print the output.

Transcribed Image Text://Program 2
Write a Java program that displays a list of cars and their owners, and prices only four cars and four
owners. This is what the program should include:
1. Array of objects
2. Passing array to methods
3.
For traditional loop
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 4 steps with 6 images

Recommended textbooks for you

Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON

Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning

Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON

Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning

Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education

Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY