Exam 13: Web Development and HTML/CSS
Exam 1: Introduction to Web Programming28 Questions
Exam 2: Coding Standards, Block Elements, Text Elements, and Character References30 Questions
Exam 3: Cascading Style Sheets (CSS)29 Questions
Exam 4: Organizing a Pages Content With Lists, Figures, and Various Organizational Elements30 Questions
Exam 5: Tables and Css Layout30 Questions
Exam 6: Links and Images30 Questions
Exam 7: Image Manipulations, Audio, and Video30 Questions
Exam 8: Introduction to Javascript: Functions, Dom, Forms, and Event Handlers28 Questions
Exam 9: Additional Javascript Basics: Window Object, If Statement, Strings, Numbers, and Input Validation30 Questions
Exam 10: Loops, Additional Controls, Manipulating Css With Javascript29 Questions
Exam 11: Object-Oriented Programming and Arrays30 Questions
Exam 12: Canvas30 Questions
Exam 13: Web Development and HTML/CSS98 Questions
Select questions type
The blank, newline, and tab characters are referred to as __________ characters. They are invisible when displayed on the browser window.
(Short Answer)
4.8/5
(42)
What is the difference between a method heading and a function heading?
(Multiple Choice)
4.9/5
(34)
To improve the following code's style, what should you do with the " character references?
<p>And God said "Let there be light."</p>
(Short Answer)
4.8/5
(49)
A(n) __________ is a pictorial representation of the logic flow of a computer program.
(Short Answer)
4.9/5
(37)
To group radio buttons together, each of the radio button controls should have a name attribute with the same value.
(True/False)
4.8/5
(35)
When executed, what does the following code fragment display?
var x = 10, y = 4;
alert(false || x != y + 5 && 2 <= y - 2);
(True/False)
4.9/5
(33)
The following code looks pretty weird. Why is it appropriate to split the line of code at the place where it is split?
<textarea id="accommodations" rows="8" cols="50" maxlength="300"
></textarea>
(Essay)
4.9/5
(29)
A local variable is a variable that can be used only within the function in which it is declared.
(True/False)
4.8/5
(32)
After the following code executes, what does x hold?
var location = "Taos, NM";
var x = location.indexOf("NM");
(Short Answer)
4.8/5
(32)
For the URL "http://www.bbc.com/news/meltingArcticIceFlows.j p g", news is the
(Multiple Choice)
4.7/5
(39)
By default, browsers use purple to display links that have been clicked recently. They are formally known as ______ links.
(Short Answer)
4.9/5
(38)
In JavaScript, which of the following creates an empty array?
(Multiple Choice)
4.7/5
(30)
With a CSS web font at-rule, the src attribute is assigned a list of font files. The browser downloads the files first, then decides which one to use.
(True/False)
4.7/5
(35)
When executed, what does the following code fragment display?
var x = 22;
x++;
x -= 3;
alert(!(x * 2 == 40));
(True/False)
4.8/5
(32)
Given the following CSS rule, what type of selector is used?
* {color: blue;}
(Multiple Choice)
4.9/5
(37)
To establish relative positioning, what value should be used with the position property?
(Short Answer)
4.9/5
(41)
An advantage of client-side processing over server-side processing is that client-side processing:
(Multiple Choice)
4.8/5
(47)
Showing 61 - 80 of 98
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)