(I just need an idea about how I should start this assignment. I want only few e
ID: 645173 • Letter: #
Question
(I just need an idea about how I should start this assignment. I want only few examples)
Project to implement a Custom-Off-The-Shelf (COTS) social networking solution for a university class of approximately 25 students. As part of the requirements elicitation process, you have interviewed the key stakeholders in the project - such as the academic dean, department head, and the class professors. Below are the consolidated interview notes from the interviews. The assignment is to write ten (10) or more well-written requirements statements based upon the interview notes. The requirements should each include a requirements definition, acceptance criteria for how it will be met, and a priority. Also adhere to the best practices guidelines found in the IEEE Software Requirements Specification (SRS) 830-1998, section 4.3. In addition to these characteristics of requirements in the SRS, ensure to include the following in assignment:
Requirements Specification Guidelines:
1.Specification includes an introduction describing the overall project and sources of information.
2.Overall, at least two quality (i.e., Non-Functional) requirements have been specified in the list
3.Describe for all requirements acceptance criteria (e.g., tests or other verification mechanisms)
4.Describe the requirement ranks using a prioritization of: (E
Explanation / Answer
Create a User.html -> which will call
Username:
Password:
//jsp page
<%@page import="java.sql.*,java.io.* %>
<%
try
{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con=DriverManager.getConnection("jdbc:odbc:user_dsn");
Statement s=con.createStatement();
String user=request.getParameter("text1");
String password=request.getParameter("text2");
ResultSet rs=s.executeQuery("Select * from user");
int count=0;
while(rs.next())
{
String u=rs.getString(1);
String p=rs.getString(2);
if(u==user && p==password)
count++;
}
if(count==1)
response.redirect("Details.jsp");
else
response.redirect("Create.jsp");
}
catch(Exception e){}
%>
if the student logins in create a html page to enter the assignment details and maintain it in a table
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.