WEB TECH

Ace your homework & exams now with Quizwiz!

Question 14 2 out of 2 points To which text does the following CSS rule apply: li em { color: red; font-weight: bold } a) <li><em>text</em></li> b) <li>text</li> and <em>text</em> c) both a and b d) neither a nor b

a) <li><em>text</em></li>

Question 23 2 out of 2 points In which of the following do you set the MIME type of the external style sheet? a) <link></link> b) <style></style> c) <a></a> d) <mime></mime>

a) <link></link>

Question 8 2 out of 2 points The alt attribute is used in a(n) ________ element to provide an alternate ________ description for the image. a) img, text. b) a href, address. c) title, text. d) src, image size.

a) img, text.

Question 47 2 out of 2 points The ________ is the distance between the content inside an element and the inside of its border. a) padding b) border c) margin d) float

a) padding

Question 19 2 out of 2 points The ________ attribute allows you to put temporary text in a text field. a) placeholder b) required c) formnovalidate d) autofocus

a) placeholder

Question 39 2 out of 2 points One major use for the meta element is related to which of the following? a) search engines b) frames c) audio files d) forms

a) search engines

Question 16 2 out of 2 points An HTML5 table contains rows delimited by ________ elements, which contain cells delimited by ________ elements. a) tr, td b) tr, tr c) table, td d) td, tr

a) tr, td

Question 21 2 out of 2 points An alert dialog displaying the text "Welcome!" is created by calling _________. a) window.alert( "Welcome!" ); b) alert.window( "Welcome!" ); c) window( "alert = \"Welcome!\"" ); d) window( "<alert> Welcome! </alert>" );

a) window.alert( "Welcome!" );

Question 46 2 out of 2 points Which of the following selections is the proper way to apply this CSS rule: .blue { color: blue } a) <p color = "blue"> b) <p class = "blue"> c) <p color = .blue> d) <p class = .blue>

b) <p class = "blue">

Question 17 2 out of 2 points An unordered list is created using which notation? a) <list type = " unordered"> b) <ul> c) <unordered> d) <un>

b) <ul>

Question 29 0 out of 2 points Which of the following is the most accurate statement concerning internal hyperlinks? a) The "internal" refers to the internal contents of a table b) Internally-linked location names can be assigned to any point in an HTML5 file c) href = "page.html&name" is the proper format used to link to an internal location of another page d) The "internal" refers to the host machine on which the browser is running

b) Internally-linked location names can be assigned to any point in an HTML5 file

Question 15 2 out of 2 points Which of the following statements about animation-timing-functions is false? a) The value linear specifies that the animation will move at the same speed from start to finish. b) The value ease starts slowly, increases speed, then ends faster. c) The ease-in value starts slowly, then speeds up, whereas the ease-out value starts faster, then slows down. d) Finally, the cubic-bezier value allows you to customize the timing function with four values between 0 and 1, such as cubic-bezier(1,0,0,1).

b) The value ease starts slowly, increases speed, then ends faster.

Question 7 2 out of 2 points Which of the following statements about animation-timing-functions is false? a) The value linear specifies that the animation will move at the same speed from start to finish. b) The value ease starts slowly, increases speed, then ends faster. c) The ease-in value starts slowly, then speeds up, whereas the ease-out value starts faster, then slows down. d) Finally, the cubic-bezier value allows you to customize the timing function with four values between 0 and 1, such as cubic-bezier(1,0,0,1).

b) The value ease starts slowly, increases speed, then ends faster.

Question 48 2 out of 2 points The @keyframes rule is followed by the name of the ________ to which the keyframes are applied. a) transition b) animation c) transformation d) media query

b) animation

Question 45 2 out of 2 points The ________ attribute can be used on input types to automatically fill in the user's information based on previous input. a) datalist b) autocomplete c) value d) autofill

b) autocomplete

Question 40 2 out of 2 points CSS3 allows you to add multiple background images to an element. Each image's placement is specified using property ________. a) backgroundimage b) background-position c) background-origin d) image-background

b) background-position

Question 20 2 out of 2 points The ________ property adds rounded corners to any element. a) blur-radius b) border-radius c) radial-gradient d) linear-gradient

b) border-radius

Question 26 2 out of 2 points If you want to bypass validation, you can add the ________ attribute to input type submit. a) autofocus b) formnovalidate c) formvalidate d) validate

b) formnovalidate

Question 32 2 out of 2 points The two most common HTTP request types (also known as request methods) are ________ and ________. a) query, post b) get, post c) retrieve, send d) retrieve, post

b) get, post

Question 36 2 out of 2 points The border-image-slice divides the image into ________ regions. a) four b) nine c) two d) six

b) nine

Question 31 2 out of 2 points The usage of an input element is defined by the value of its _________ attribute. a) name b) type c) size d) all of the above

b) type

Question 13 2 out of 2 points Where is a table's summary displayed? a. above the table b. below the table c. the summary is not displayed d. in the caption of the table

b. below the table

Question 10 2 out of 2 points Which of the following is a server-side programming technology used to build web pages? a) HTML5. b) CSS3. c) PHP. d) JavaScript.

c) PHP.

Question 43 2 out of 2 points Web technologies standardized by the W3C are called ________. a) Rules b) Standards c) Recommendations d) Regulations

c) Recommendations

Question 42 2 out of 2 points Web 2.0 embraces a(n) ________—a design that encourages user interaction and community contributions. a) semantic web b) social network c) architecture of participation d) architecture of trust

c) architecture of participation

Question 11 2 out of 2 points The ________ element describes content that's separate from the main content of the page and might be used or distributed elsewhere, such as a news article, forum post or blog entry. a) details b) summary c) article d) footer

c) article

Question 9 0 out of 2 points The header element creates a header for the page. The header element contains ________. a) text b) a section c) graphics d) an article

c) graphics

Question 44 2 out of 2 points A ________ is an applications-development methodology in which you can rapidly develop powerful and intriguing applications by combining (often free) complementary web services and other forms of information feeds. a) collaborative design b) smash c) mashup d) sematic web

c) mashup

Question 35 2 out of 2 points In the following line the word document is a(n) ______ that resides in the computer's memory. document.writeln("Hello World"); a) attribute b) behavior c) object d) method

c) object

Question 49 2 out of 2 points Style sheets use which of the following MIME types? a) image/gif b) text/javascript c) text/css d) text/html

c) text/css

Question 22 2 out of 2 points The ________ input type enables the user to enter an hour, minute, second and fraction of a second. a) datetime-local b) datetime c) time d) datetime-utc

c) time

Question 38 2 out of 2 points CSS3 ________ allow you to move, rotate, scale and skew elements. a) selectors b) transitions c) transformations d) translations

c) transformations

Question 24 2 out of 2 points If the value of the blur radius is ________, no shadow will appear. a) 1 b) -1 c) 10 d) 0

d) 0

Question 27 2 out of 2 points An example of the proper format for inline styles is: a) <p style = "font-size = 20pt"> b) <p font-style = "20pt"> c) <p style: "font-size = 20pt"> d) <p style = "font-size: 20pt">

d) <p style = "font-size: 20pt">

Question 25 2 out of 2 points We define styles for all media types with the declaration ________. a) #media screen b) @media screen c) #media all d) @media all

d) @media all

Question 34 2 out of 2 points How will the following CSS rule alter the web page if it is applied in a style sheet? h1 { font-family: Arial, sans-serif } a) All text in h1 elements will have the Arial font, while text in other elements will use a sans-serif font. b) All text in h1 elements will have use a sans-serif font, while text in other elements will use Arial. c) All text in h1 elements will have the Arial font if sans-serif is not supported by the system. d) All text in h1 elements will use a sans-serif font if Arial is not supported by the system.

d) All text in h1 elements will use a sans-serif font if Arial is not supported by the system.

Question 12 2 out of 2 points The latest IP standard is ________ a) Internet Protocol version 5 (IPv5) b) None of the above. c) Internet Protocol version 4 (IPv4) d) Internet Protocol version 6 (IPv6)

d) Internet Protocol version 6 (IPv6)

Question 2 2 out of 2 points ________ are a type of image that gradually transitions from one color to the next horizontally, vertically or diagonally. a) Box shadows b) Color stops c) Radial gradients d) Linear gradients

d) Linear gradients

Question 50 2 out of 2 points The ________ standard specifies data formats, which programs can use to interpret data correctly. a) Data Translation Standard (DTS) b) Uniform Resource Locator (URL) c) HTML5 d) Multipurpose Internet Mail Extensions (MIME)

d) Multipurpose Internet Mail Extensions (MIME)

Question 18 2 out of 2 points ________ make(s) it easy to align the contents of boxes, change their size, change their order dynamically, and lay out the contents in any direction. a) The Flexbox Model b) :nth-child selectors c) The Box Orientation d) The Flexible Box Layout Module

d) The Flexible Box Layout Module

Question 41 2 out of 2 points In the statement <a href = "address">, href is a(n) ________ of the a element. a) anchor b) element c) label d) attribute

d) attribute

Question 1 0 out of 2 points Which of the following statements would correctly print out the sentence "Hello World" in blue? a) document.write( "<p style = \"color: blue\"); document.write( "Hello World >"); b) document.write( "<p> style = \"color: blue\" Hello World </p>); c) document.write( "<p style = \"color: blue\" Hello World + "</p>"); d) document.write( "<p style = \"color: blue\">"); document.write( "Hello World </p>");

d) document.write( "<p style = \"color: blue\">"); document.write( "Hello World </p>");

Question 6 2 out of 2 points HTML5 text is marked up with ________, delimited by ________ that are keywords contained in pairs of ________. a) elements, angle brackets, tags b) angle brackets, elements, tags c) tags, elements, angle brackets d) elements, tags, angle brackets

d) elements, tags, angle brackets

Question 4 2 out of 2 points The ________ element describes an image in the document so that it could be moved to the side of the page or to another page. a) figcaption b) header c) article d) figure

d) figure

Question 37 2 out of 2 points The ________ element groups navigation links. a) navigation b) link c) header d) nav

d) nav


Related study sets

Pharmacology 1 Musculoskeletal Meds

View Set

Part 2, Chapter 14: Using Worksheets and Worksheet Functions

View Set

Property and Casualty-Insurance Law and Regulations

View Set