Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Web Programming with HTML5 CSS and JavaScriptb
Quiz 13: Web Development and HTML/CSS
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 41
Short Answer
A pseudo-class begins with a colon and it conditionally selects elements from a group of elements specified by the selector at the immediate left of the colon. If there is no explicit selector, then the implicit selector is ______.
Question 42
Short Answer
The ______ image file format was invented in 1996 as an open-source alternative to the GIF format because the GIF format was copyright protected.
Question 43
Short Answer
By default, browsers use purple to display links that have been clicked recently. They are formally known as ______ links.
Question 44
Short Answer
You should always surround attribute values with _______, thus forming a string.
Question 45
Essay
What does it mean for container elements to be properly nested?
Question 46
Short Answer
To improve the following code's style, what should you do with the " character references? <p>And God said "Let there be light."</p>
Question 47
Short Answer
Consider the following code: <img id="zoomba-class" src="zoomba.j p g" alt="zoomba class"> Assume the above img element is positioned within the current web page. Provide an element that would link to the above img element.
Question 48
Short Answer
What is the purpose of the ol element's start attribute?
Question 49
Short Answer
To establish relative positioning, what value should be used with the position property?
Question 50
Multiple Choice
To handle browsers that support different audio file formats, you can provide multiple options between your audio start and end tags. Which of the following could serve as a valid option?
Question 51
Multiple Choice
Which of the following is a valid CSS rule that generates a color gradient background?
Question 52
Multiple Choice
An advantage of client-side processing over server-side processing is that client-side processing:
Question 53
Multiple Choice
Which of the following is the best way to prompt for number of children and store the input as a number?
Question 54
Multiple Choice
A text control is an example of a "one line plain text edit control." Which of the following attribute-value pairs could be added to an input element to create another type of one line plain text edit control?
Question 55
Multiple Choice
Which of the following displays a numOfPurchases variable's value in the browser's debugging frame?
Question 56
Multiple Choice
Suppose you have a class named Student with a class variable named numOfStudents. How should you access the numOfStudents property?
Question 57
Multiple Choice
Suppose you have a class named Employee with a name property and a standard setName method. What is the situation after the following code executes? Var emp1 = new Employee("Emme") ; Var emp2 = emp1; Emp2.setName("Jessie") ;