0% found this document useful (0 votes)
61 views2 pages

Java 2011-03 - Case Study

This document outlines the specifications for a Java student information case study. It details the fields to include for each student such as student ID, name, gender, contact number, and grades for two modules. It also provides the criteria for grading the case study, including requirements for program correctness, accuracy, documentation, and presentation. The program must be able to perform basic CRUD functions for student records and output student information in different orders and formats. Final grades are to be computed based on the two module grades and criteria to determine if the grade is a pass or fail.

Uploaded by

Jheng Churva
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
61 views2 pages

Java 2011-03 - Case Study

This document outlines the specifications for a Java student information case study. It details the fields to include for each student such as student ID, name, gender, contact number, and grades for two modules. It also provides the criteria for grading the case study, including requirements for program correctness, accuracy, documentation, and presentation. The program must be able to perform basic CRUD functions for student records and output student information in different orders and formats. Final grades are to be computed based on the two module grades and criteria to determine if the grade is a pass or fail.

Uploaded by

Jheng Churva
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

National Computer Institute Java Programming Course JAVA 2011 03 CASE STUDY MODULE 1

STUDENT NO:

JAVA STUDENT INFORMATION


The case study is all about java student information. The specification is listed below:

Field Description StudentID

Data Type String

Required

Size

Remarks The student ID is unique

Sample Data

Yes

based on year and sequence

2011-01

Lastname Firstname Middlename Gender ContactNumber Module1

String String String Char String Double

Yes Yes Yes Yes Yes Yes

25 25 25 1 12 5

Student Last Name Student First Name Middlename M=Male, F=Female Must be all numbers Grade received from module 1 Grade received from module 2 Computed graded based

De Guzman Nilo Reyes Male 09275113121 80.90

Module2

Double

Yes

79.10

FinalGrade

Double

on the module 1 and module 2 grade

80.00

Remarks

String

10

Pass or Failed based on the computation of grade

Pass

Criteria for Grading: Program correctness: 40% Program accuracy: 30% Documentation (Problem Definition, Flowchart, Screenshots and must be burn to CD including the source code 3 copies): 20% Presentation: 10%

Page 1 of 2

The program must be able to do the following functionalities: Add Student Information Edit Student Information Search Student Information Delete Student Information View Student Information All students pass (from highest grade to the lowest) All students failed (ascending order based on lastname) Both pass and failed (ascending order based on lastname) Individual student

Information must be save into a text file. Compute for the final grade based on the formula: (module1 grade * .45) + (module 2 grade * .55) and the determine the remarks based on the following:

Grade >=80 <80

Remarks Pass Failed

Criteria for Grading: Program correctness: 40% Program accuracy: 30% Documentation (Problem Definition, Flowchart, Screenshots and must be burn to CD including the source code 3 copies): 20% Presentation: 10%

Page 2 of 2

You might also like