shovradas / teaching-java

0 stars 0 forks source link

Object Array #16

Open shovradas opened 3 years ago

shovradas commented 3 years ago

TUTORIALS

Problem

Consider the following Student type.

class Student{
    int id;  // 1, 2, 3
    String name;  // bob, alice, eve
    float cgpa;  // 3.5, 2.6, 3.8
    String department;  // CSE, EEE, BBA
    String email;  // bob@gmail.com, alice@yahoo.com, eve@hacker.com, Can be empty as well
}

SUBMISSION

Your submission should have the following files: