Draw an inheritance hierarchy for students at a university. Use Student as the
superclass of the hierarchy, and then extend Student with classes
UndergraduateStudent and GraduateStudent. Continue to extend the hierarchy
as deep (i.e., as many levels) as possible. After drawing the hierarchy, write a
test application called StudentTest that creates objects of each class (Student,
UndergraduateStudent and GraduateStudent) and tests their member methods
Consider the following four processes, with the length of the CPU burst given in
milliseconds:
Process: Arrival time: Burst time:
P1 0 8
P2 1 4
P3 2 9
P4 3 5
Required:
a) Draw the Gannt chart for the schedule both FCFS AND SJF(Preemptive)
Write a Program to display sum of the following series:
1-3+5-7+9.....n terms
Using following method prototype:
int series(int n)
Use Spring MVC to do the following:
1.Save student exam data.
2.Display all the students data.
3.Student Exam Data Form would contain the following.
4.Basic Student Details and Address with Validations.
5.Details of Marks for Five Subjects (All marks subjects should be >= 0).
6.Save all the marks to an arraylist.
7.The display Page would list all the students in decreasing order of percentage.
Web Application:
Main
- Link to upload student marks
- Display all the student marks
Form
Roll Number (*) -> EDYXXXX (Roll Number should start with EDY and XXXX means digits)
First Name (*)
Last Name
Semester (*)
Marks (5 Subject)
All the marks have to be greater than or equal 0
- If validation fails please display error
Submit the form
Store it in any Collection (DB)
Display all the marks
table:
Student Roll Number | First Name | Last Name | Semester | Total Marks | Percentage Marks
Diplay this in decending order of marks
Can you give me a code to move an object or image UP, DOWN, LEFT, RIGHT continuously with one click? Example, when I click left button, it will keep moving left until I hit other button.
I'm trying to make a maze game.
Write a program to store 25 numbers in a Single dimension array then display numbers in one column and even or odd Message in another column with appropriate heading as follows:
Number Message
10 Even
12 Even
101 Odd
Write a Program to create a SDA to store 25 numbers. Then display the following data:
We've already tried comparing 3 numbers to see the largest among all, so let's try a more complicated mission where we locate the position of the largest among 5 numbers. There are only 4 possible cases for this mission:
- if the largest digit is the first digit, print "Leftmost"
- if the largest digit is the third digit, print "Middle"
- if the largest digit is the last digit, print "Rightmost"
- if none of the above is correct, print "Unknown"
Write a Java program that ask the user of the number of elements in array and input
elements as much as the number of elements. Print the inputted elements and determine the
sum and average of the array. (You must input 10 elements and varying 3-digit numbers).
Use Spring MVC to do the following:
1.Main page to display two Links
2.Save student exam data
3.Display all the students data
4.Student Exam Data Form would contain the following
5.Basic Student Details and Address with Validations
6.Details of Marks for Five Subjects (All marks subjects should be >= 0)
7.Save all the marks to an arraylist
8.The display Page would list all the students in decreasing order of percentage
Web Application:
Main
- Link to upload student marks
- Display all the student marks
For Link 1 :
Form
Roll Number (*) -> EDYXXXX (Roll Number should start with EDY and XXXX means digits)
First Name (*)
Last Name
Semester (*)
Marks (5 Subject)
All the marks have to be greater than or equal 0
- If validation fails please display error
Submit the form
Store it in any Collection (DB)
Link 2
Display all the marks
table
Student Roll Number | First Name | Last Name | Semester | Total Marks | Percentage Marks
Diplay this in decending order of marks