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
Get step-by-step solutions from verified subject matter experts
