Answer to Question #259131 in HTML/JavaScript Web Application for pooja

Question #259131

d) Create a database for a Student management system consisting of the following two tables:


Student (SID, name, highest qualification, Pcode)


Programme (Pcode, ProgrammeName, Duration, Fee)


Develop and deploy a web based “Programme Information System” using JSP, any database


backend and any web server. Your system should use JDBC for input of information to both


the tables. In addition, this system should output Programme wise list of students on the


screen.


Submit the JSP program, screens and database for the system. You must demonstrate this


system at the time of viva voce.


Make and state suitable assumptions, if any.

1
Expert's answer
2021-11-05T17:28:13-0400
CREATE TABLE Student (
    SID int,
    name varchar(255),
    highest_qualification varchar(255),
    Pcode int
);


CREATE TABLE Programme (
    Pcode int,   
    ProgrammeName varchar(255),
    Duration varchar(255),
    Fee int
);

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
APPROVED BY CLIENTS