Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

rary > IF 1 2 1 0 : Introduction to Java Technologies home > 7 . 9 : Constructor overloading zyBooks catalog The Student class

rary > IF 1210: Introduction to Java Technologies home >7.9: Constructor overloading
zyBooks catalog
The Student class has a default constructor, a constructor with one parameter, and a constructor with three parameters. Declare the following objects:
student1 with no arguments
student2 with studentName as an argument
student3 with studentName, studentAge, and studentHeight as arguments .
Ex: If the input is Ani 285.00, then the output is:
Student: Undefined, -1,0.00
Student: Ani, -1,0.00
Student: Ani, 28,5.00
Student.java
import java.util.Scaner;
public class Roster {
public static void main(String[] args){
Scanner scnr = new Scanner(
System.in);
String studentName;
int studentAge;
double studentHeight;
studentName =scnr*next();
studentAge =scnr.nextInt();
studentHeight = scnr. nextDouble();
Y* Your code goes here */
student1.print();
student2.print();
2
3
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Samsung Galaxy S23 Ultra Comprehensive User Manual

Authors: Leo Scott

1st Edition

B0BVPBJK5Q, 979-8377286455

More Books

Students also viewed these Databases questions

Question

Write a paper about Domain analysis

Answered: 1 week ago

Question

1. How do most insects respire ?

Answered: 1 week ago

Question

Who is known as the father of the indian constitution?

Answered: 1 week ago

Question

1.explain evaporation ?

Answered: 1 week ago

Question

Who was the first woman prime minister of india?

Answered: 1 week ago

Question

Explain the concept of going concern value in detail.

Answered: 1 week ago

Question

5. Understand how cultural values influence conflict behavior.

Answered: 1 week ago

Question

8. Explain the relationship between communication and context.

Answered: 1 week ago