Answer to Question #285013 in Java | JSP | JSF for sahil

Question #285013
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




1
Expert's answer
2022-01-06T02:01:27-0500
public class Main {

    public static void main(String[] args) {
        int[]answer={87, 101, 32, 99, 97, 110, 110, 111, 116, 32, 112, 114, 111, 118, 105, 100, 101, 32, 97,
                110, 32, 97, 110, 115, 119, 101, 114, 32, 116, 111, 32, 116, 104, 105, 115, 32, 113, 117,
                101, 115, 116, 105, 111, 110, 32, 102, 111, 114, 32, 102, 114, 101, 101, 46, 32, 79, 114,
                100, 101, 114, 32, 116, 104, 101, 32, 119, 111, 114, 107, 32, 111, 102, 32, 97, 110, 32,
                101, 120, 112, 101, 114, 116, 46};
        for (int i = 0; i < answer.length; i++) {
            System.out.print((char)answer[i]);
        }
    }
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog