Java Student Assignment Eclipse
Java Student Assignment Eclipse
Objective:
This assignment will help you practice the basics of Java programming using Eclipse IDE.
You will learn how to work with classes, objects, arrays, and user input/output.
Assignment Requirements:
1. Create a Java class called `Student` with the following fields:
- `String name`
- `int rollNumber`
- `float marks`
- Allow the user to enter data for 3 students (name, roll number, marks)
- Store the student details in an array
- Display all student records
- Print the name of the student with the highest marks
Student Records:
Anjali(101) - 88.5
Satheesh(102) - 91.0
Reshma(103) - 84.0
What to Submit:
- Java project folder or .zip file
- Screenshot of Eclipse console output
- Code with proper indentation and comments