Home / CSE MCQs / JSP - CSE ::

CSE MCQs :: JSP - CSE

  1. What is the initial contact point for handling a web request in a Page-Centric architecture?
  2. A.
    A JSP page
    B.
    A JavaBean
    C.
    A servlet
    D.
    A session manager

  3. Java Soft provides ¦¦¦¦¦.. JDBC product components as part of the java Developer's Kit (JDK)
  4. A.
    three
    B.
    two
    C.
    four
    D.
    single

  5. How to send data in get method?
  6. A.
    We can't
    B.
    Through url
    C.
    Through payload
    D.
    None of these

  7. What is the name of the organization helping to foster security standards for cloud computing?
  8. A.
    Cloud Security Standards Working
    B.
    Cloud Security Alliance
    C.
    Cloud Security Watchdog
    D.
    Security in the Cloud Alliance

  9. Which of the following statements is true regarding the scope of 'request' in JSP?
  10. A.
    Objects with request scope are accessible from pages processing the same request where they were created
    B.
    All references to the object shall be released after the request is processed; in particular, if the request is forwarded to a resource in the same run time, the object is still reachable
    C.
    References to objects with request scope are stored in the request object
    D.
    All of the above