Question: Name the class component and give a brief description in your own words the purpose it serves. Please answer accordingly like A: (what it is

Name the class component and give a brief description in your own words the purpose it serves. Please answer accordingly like "A: (what it is and description)" "B: (what it is and description)" etc

Name the class component and give a brief description in your own

class student{ int id; String name; String city; student (int id, String name){ this.id = id; this.name = name; } student(int id, String name, String city) { this.id = id; this.name = name; this.city = city; } void print( ){ System.out.println(id + + name + + city); } } public class ThisDemo4 { public static void main(String[ ] args) { student malestudent = new student(111, John); student femalestudent = new student (321, Mary, Oakland); malestudent.print ( ); femalestudent.print ( ) ; } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!