HTML, CSS and Servlets Fundamentals
Test your knowledge of basic HTML/CSS syntax and Java servlets for web development
Questions
The Web server that executes the servlet creates an _________ object and passes this to the servlet's service method (which, in turn, passes it to doGet or doPost).
- HttpServletResponce
- HttpRequest
- ServletRequest
- HttpServletRequest
The client can access the servlet only if the servlet is installed on a ________ that can respond to servlet requests
- CLIENT
- SERVER
- INTERNET
- IN LOCAL PC
Which of the following describe ways that dynamic information can be made available to all servlet requests sent to an application?
- Make the information available from a singleton
- Store the information in the ServletContext
- Store the information in an HttpSession
- Store the information in a Properties file
Which of the following can be used to store client side user state information while avoiding any impact due to the users web browser configuration ?
- Cookies
- URL rewriting
- HttpSessions
- Hidden tags
Which of the following is NOT true about servlets?
- They are instantiated every time a request is made
- They are a mechanism used by the class loader to download applets
- They can be used instead of CGI scripts
- They require a web browser that supports JDK 1.1
What is servlet?
- Client side program
- Server side program
- Both are true
- None of these
HTML REFERS TO
- Hyperlinks and Text Markup Language
- Hyper Text Markup Language
- Hyper Text Markinup Language
- All of the above
What is the syntax to write the HTML tags ?
- <HTML>
- HTML
- <%HTML%>
- "HTML"
What is the correct HTML tag for inserting an horizontal line?
- <line>
- <hr>
- <tr>
- <horizontalline>
Tags and text that do not show directly on the page are placed where?
- Body
- Table
- Title
- Head
How do you define font style of the text?
- <style="Arial">
- <text=Arial>
- <font style="Arial"></font>
- <text style="Arial">
What is the file extension used for HTML file?
- .html
- .shtml
- .webpage
- .doc
Besides , another way to make text bold is what?
- <fat>
-
- <dark>
- <italic>
To create a bulleted list use?
- <ol>
- <il>
- <bullet>
- <ul>
Which is not valid HTML?
- <frameset columns="16%,84%">
- <frameset rows="16%,84%">
- <frameset table="100,100">
- <frameset cols="100,150">
Which HTML attribute is used to define inline styles?
- styles
- class
- font
- style
What is the correct CSS syntax for making all the
elements bold?
- p {font-weight:bold}
- p {text-size:bold}
- <p style="text-size:bold">
- <p style="font-size:bold">