Question: JAVA Write a short program to create a Student object and to insert id, name and marks, and to display id, name and status of

JAVA

Write a short program to create a Student object and to insert id, name and marks, and to display id, name and status of the student.

public class Student{

private String id;

public String name;

protected int marks;

public Student(String id, String name, int marks){

this.id = id;

this.name = name;

this.marks = marks;

}

public String checkStatus(int marks){

return null;

}

}

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!