Username*
E-Mail*
Password*
Confirm Password*
Username or email*
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Sorry, you do not have permission to ask a question, You must login to ask a question.
You must login to ask a question.
The correct answer to the question 'To which of the following the term ‘DBA’ referred?' is (c.) Database Administrator.
The correct answer to the question ‘To which of the following the term ‘DBA’ referred?’ is (c.) Database Administrator.
The correct answer to the question 'what is the time complexity to count the number of elements in the linked list' is option a. O(n)
The correct answer to the question ‘what is the time complexity to count the number of elements in the linked list‘ is option a. O(n)
The correct answer to this question is: a. push, pop
The correct answer to this question is:
a. push, pop
Answer to the question ‘Representation of data structure in memory is known as' : d. Abstract data type
Answer to the question ‘Representation of data structure in memory is known as’ :
d. Abstract data type
The correct answer to the question '___ is NOT the component of data structure': d. None of the above
The correct answer to the question ‘___ is NOT the component of data structure’:
d. None of the above
CODE: import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import java.sql.*; public class Register extends HttpServlet { protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/htmlRead more
CODE:
import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import java.sql.*; public class Register extends HttpServlet { protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html;charset=UTF-8"); PrintWriter out = response.getWriter(); ResultSet rs = null; String email = request.getParameter("email"); String pass = request.getParameter("pass"); String confrmPass = request.getParameter("confrmPass"); if (pass != confrmPass) { out.println("Entered password and confirm password are not same."); } else { try { Class.forName("com.mysql.jdbc.Driver"); Connection con = DriverManager.getConnection ("localhost:3306","username","password"); String sql = "SELECT * FROM login WHERE email = ?"; preparedStatement = connection.prepareStatement(sql); preparedStatement.setString(1, email); rs = preparedStatement.getResultSet(); if(rs.next()) { out.println("User already exists!"); } else { PreparedStatement ps = con.prepareStatement ("insert into Student values(?,?)"); ps.setString(1, email); ps.setString(2, pass); int i = ps.executeUpdate(); if(i > 0) { out.println("User sucessfully registered!"); } } } catch(Exception se) { se.printStackTrace(); } } } }
To which of the following the term ‘DBA’ referred?
The correct answer to the question 'To which of the following the term ‘DBA’ referred?' is (c.) Database Administrator.
The correct answer to the question ‘To which of the following the term ‘DBA’ referred?’ is (c.) Database Administrator.
See lessWhat is the time complexity to count the number of elements in the linked list?
The correct answer to the question 'what is the time complexity to count the number of elements in the linked list' is option a. O(n)
The correct answer to the question ‘what is the time complexity to count the number of elements in the linked list‘ is option a. O(n)
See lessInserting an item into the stack when stack is not full is called …
The correct answer to this question is: a. push, pop
The correct answer to this question is:
a. push, pop
See lessRepresentation of data structure in memory is known as
Answer to the question ‘Representation of data structure in memory is known as' : d. Abstract data type
Answer to the question ‘Representation of data structure in memory is known as’ :
d. Abstract data type
See less______ is not the component of data structure.
The correct answer to the question '___ is NOT the component of data structure': d. None of the above
The correct answer to the question ‘___ is NOT the component of data structure’:
d. None of the above
See lessWrite a Signup servlet that enables the user to register …
CODE: import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import java.sql.*; public class Register extends HttpServlet { protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/htmlRead more
CODE: