Questions With Verified Multiple Choice and
Conceptual Actual 100% Correct
Detailed Answers
Guaranteed Pass!!Current Update!!
1. Jacoby wants to use CSS3 to apply a border to the bottom of the last paragraph in each
section element on a Web page. Which selector should he use?
A) section p:last-of-type
B) section p:last-in-container
C) section p[last]
D) section p~last - ANSWER section p:last-of-type
2. Which value of the CSS3 box-shadow property specifies the shadow's size, but is optional?
A) spread
B) inset
C) v-shadow
D) blur - ANSWER spread
3. Consider the following style rule:
p{
border: 1px solid #000;
,width: 10em;
word-wrap: break-word;
}
A) Long words will wrap to the next line, without a hyphen.
B) Long words will be hyphenated and wrapped to the next line.
C) Long words will expand the width of the paragraph.
D) Long words will extend past the border of the paragraph. - ANSWER Long words will wrap
to the next line, without a hyphen.
4. The CSS3 matrix3d transform method defines a 3D transformation using a 4x4 matrix. How
many values are required for this method?
A) 16 values
B) 4 values
C) 8 values
D) 2 values - ANSWER 16 values
5. What is the purpose of the CSS3 @keyframes rule?
A) It defines an animation and its position, and it is required.
B) It specifies an animation's position on the page, and it is optional.
C) It lists properties of an animation, such as its name and duration.
D) It specifies when the animation will begin and how much of it will play. - ANSWER It
defines an animation and its position, and it is required.
6. The CSS3 box-sizing property forces elements to fit an area in a certain way, such as allowing
the border and padding to fit within the defined width of an element instead of expanding it.
Which of the following values are used with this property?
A) content-box and border-box
, B) padding-box and margin-box
C) border-box and padding-box
D) margin-box and content-box - ANSWER content-box and border-box
7. An object-oriented program is:
A) a collection of individual objects that perform different functions.
B) a collection of methods that trigger a specific function.
C) a collection of events that trigger a specific function.
D) a sequence of statements that define the user agents in which the program will function. -
ANSWER a collection of individual objects that perform different functions.
8. What is advantageous about the fact that JavaScript is not compiled to any specific hardware
platform or operating system?
A) JavaScript code can be developed quickly.
B) JavaScript code can be written once and run anywhere.
C) JavaScript is event-drivern.
D) JavaScript is browser-independent. - ANSWER JavaScript code can be developed quickly.
9. Which of the following statements about JavaScript is true?
A) Mobile browsers cannot use JavaScript.
B) JavaScript runs the same on all browsers.
C) JavaScript is a compiled language.
D) JavaScript is platform-independent. - ANSWER JavaScript is platform-independent.
What tag is usually used by Web authors to place JavaScript code within an HTML document?
A) The script tag