CORRECT 100%
What HTML tag is correct for making a textbook named "age"? - ANSWER<input
type="text" name="age" />
What CSS selector can be used to select all elements with the class "intro"? -
ANSWER.intro {...}
What CSS statement will display a border with the following characteristics?
- top border = 10 pixels
- bottom border = 5 pixels
- left border = 20 pixels
- right border = 1 pixel - ANSWERborder-width: 10px 1px 5px 20px
What CSS will add a background color for all <h1> elements? - ANSWERh1
{background-color:#FFFFFF;}
What is the tag for connecting an HTML page to an external style sheet? -
ANSWER<link rel="stylesheet" type="text/css" href="styles.css">
What is the name of the organization that develops primary web standards of HTML and
CSS? - ANSWERthe World Wide Web Consortium (W3C)
Components of CSS box model in order from inside to outside? - ANSWER1. Content -
inside the box; styled
2. Padding - whitespace surrounding the content
3. border - surrounds the whitespace
4. margin - surrounds the border and separates each component on the page
What is an example hyperlink in correct format? - ANSWER<a
href="http://www.terry.uga.edu">The Terry College of Business</a>
What does HTML stand for? - ANSWERHypertext Markup Language
Advantages of standardizing the use of web technologies? - ANSWER- helps make
source code simpler, reducing development and maintenance time
- allows for backward compatibility and validation
- keeps the web free and accessible to all
- helps maintain better search engine optimization
- makes the web a more accessible place
What HTML tag creates a drop down list? - ANSWER<select>...</select>
, What is correct HTML for inserting an image? - ANSWER<img src="image.gif"
als="MyImage">
What are possible values when using the CSS position attribute? - ANSWERabsolute,
fixed, or relative
True or false: in general, separation of concerns allows us to obtain high coupling and
low cohesion - ANSWERFALSE
Correct syntax for setting the background of a page black? - ANSWERbody {
background-color: black;
}
What HTML tag is used to define a bulleted list? - ANSWER<ul>...</ul>
What does CSS stand for? - ANSWERCascading Style Sheets
What HTML tag is used to specify an internal style sheet? - ANSWER<style>...</style>
True or false: the request and response objects need to be declared before we can use
them within our JSP code - ANSWERFALSE
What is the Java syntax used to retrieve data from a form submission? -
ANSWERString fName = request.getParameter("fName");
What is a valid URL mapping annotation that appears in a servlet? -
ANSWER@WebServlet(urlPatterns = {"/guess"})
What is true about the MVC design pattern? - ANSWERthe view component is
responsible for creating and formatting the response message
With the MVC design pattern, what server side separation of concerns will be generally
implemented using Java Servlets? - ANSWERreceive a request and control which
components act on the request
A request object exists... - ANSWERonly in the server-side
True or false: the request and response objects persist as long as the user continues to
send requests to the server side application - ANSWERFALSE
What is created when the Web Server receives a request to hold the results that are
sent back to the client? - ANSWERresponse object
When setting up a servlet, we need to create a ____ to the servlet that will be used to
set up any hyperlinks or form actions so that they will send a request for the servlet. -
ANSWERURL mapping