Rebecca Walton
Quiz por , criado more than 1 year ago

Sanchez, L. (2017). Web Programming with HTML, CSS, Bootstrap, JavaScript, JQuery, PHP, and MySQL . CreateSpace Independent Publishing Platform.

4
0
0
Rebecca Walton
Criado por Rebecca Walton mais de 4 anos atrás
Fechar

Chapter 1: Introduction to the Web and HTML

Questão 1 de 30

1

Which character is used to indicate the end tag of an HTML element?

Selecione uma das seguintes:

  • #

  • <

  • >

  • /

Explicação

Questão 2 de 30

1

Which of the following elements inserts a line break in HTML file?

Selecione uma das seguintes:

  • <break>

  • <br>

  • <newline>

  • <line>

Explicação

Questão 3 de 30

1

A tag such as <br> is often called ______ because it does not require a closing tag for the element.

Selecione uma das seguintes:

  • break tag

  • short tag

  • brief tag

  • void element

Explicação

Questão 4 de 30

1

The HTML ________is/are the building blocks of HTML documents

Selecione uma das seguintes:

  • link

  • <h1>

  • elements

  • packets

Explicação

Questão 5 de 30

1

All HTML elements must be __________

Selecione uma das seguintes:

  • in lowercase

  • properly nested

  • short

  • closed with a tag

Explicação

Questão 6 de 30

1

Which of the following is a correct way to use comments in HTML?

Selecione uma das seguintes:

  • <comments>This is a line of comments in HTML</comment>

  • <!--This is a line of comments in HTML-->

  • <skip>This is a line of comments in HTML</skip>

  • /*This is a line of comments in HTML*/

Explicação

Questão 7 de 30

1

HTML elements can have attributes. These attributes are used to __________.

Selecione uma das seguintes:

  • add additional information for the element

  • override the elements

  • make an element more readable

  • identify each element

Explicação

Questão 8 de 30

1

An inline element is normally displayed without starting a new line

Selecione uma das seguintes:

  • true

  • false

Explicação

Questão 9 de 30

1

Which of the following should be used for the most important heading of a Web page?

Selecione uma das seguintes:

  • <header>

  • <head>

  • <heading>

  • <h1>

Explicação

Questão 10 de 30

1

Which of the following HTML elements is used to define important text?

Selecione uma das seguintes:

  • <em>

  • <strong>

  • <important>

  • <b>

Explicação

Questão 11 de 30

1

Which of the following HTML elements is used to define emphasized text?

Selecione uma das seguintes:

  • <em>

  • <strong>

  • <important>

  • <b>

Explicação

Questão 12 de 30

1

Which HTML element is used to insert an image?

Selecione uma das seguintes:

  • <img src = "myImage.jpg" alt = "My image">

  • <img src = "myImage.jpg>My Image</img>

  • <img>myImage.jpg</img>

  • <img alt = "My Image">myImage.jpg</img>

Explicação

Questão 13 de 30

1

Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?

Selecione uma das seguintes:

  • alternate

  • alt

  • backup

  • text

Explicação

Questão 14 de 30

1

Which of the following HTML element is used to create a hyperlink?

Selecione uma das seguintes:

  • <a>http://www.createspace.com</a>

  • <a attribute = "http://www.createspace.com">CreateSpace</a>

  • <a url = "http://www.createspace.com">CreateSpace</a>

  • <a href = "http://www.createspace.com">CreateSpace</a>

Explicação

Questão 15 de 30

1

Which HTML element is used to make a numbered list?

Selecione uma das seguintes:

  • <list>

  • <ol>

  • <ul>

  • <number>

Explicação

Questão 16 de 30

1

Which HTML element is used to make a bulleted list?

Selecione uma das seguintes:

  • <list>

  • <ol>

  • <ul>

  • <number>

Explicação

Questão 17 de 30

1

Which HTML element is used to display a webpage within the current webpage?

Selecione uma das seguintes:

  • <input>

  • <newpage>

  • <insert>

  • <iframe>

Explicação

Questão 18 de 30

1

Which of the following HTML elements are used to mark up a table?

Selecione uma das seguintes:

  • <table><tr><td>

  • <tb><tr><td>

  • <body><table>

  • <table><ul><li>

Explicação

Questão 19 de 30

1

Which of the following HTML code, if you need a few extra space between 2017 and Your name, what can you do?
<p>COPYRIGHT &copy;2017 Your name</p>

Selecione uma das seguintes:

  • Add a few space like this "2017 Your name"

  • Add a space element like <space>

  • Add a few &nbsp; in where you want the space

  • Any of the above works fine

Explicação

Questão 20 de 30

1

Which HTML element is used to specify a footer for a document or section?

Selecione uma das seguintes:

  • <footer>

  • <foot>

  • <endofdocument>

  • <eod>

Explicação

Questão 21 de 30

1

Which HTML element is used to specify a navigation for a page?

Selecione uma das seguintes:

  • <navigation>

  • <nav>

  • <navigate>

  • <menu>

Explicação

Questão 22 de 30

1

Which HTML element is used to specify content aside from the page content?

Selecione uma das seguintes:

  • <footer>

  • <side>

  • <aside>

  • <sidebar>

Explicação

Questão 23 de 30

1

Which HTML element is used to specify a header for a document or section?

Selecione uma das seguintes:

  • <header>

  • <head>

  • <section>

  • <document header>

Explicação

Questão 24 de 30

1

Which HTML element is used to make a text input field in a form?

Selecione uma das seguintes:

  • <input type = "input">

  • <input type = "field">

  • <input type = "text">

  • <input type = "inputfield">

Explicação

Questão 25 de 30

1

Which HTML element is used to make a checkbox in a form?

Selecione uma das seguintes:

  • <input type = "checkbox">

  • <input type = "check">

  • <input type = "box">

  • <input type = "select">

Explicação

Questão 26 de 30

1

Which HTML element is used to make a dropdown list in a form?

Selecione uma das seguintes:

  • <input type = "dropdown">

  • <input type = "list">

  • <select>

  • <list>

Explicação

Questão 27 de 30

1

Which HTML element is used to make a text area in a form?

Selecione uma das seguintes:

  • <input type = "textarea">

  • <input type = "text_area">

  • <select>

  • <textarea>

Explicação

Questão 28 de 30

1

Which attribute in HTML form is used to specify that an input field must be filled out?

Selecione uma das seguintes:

  • checked

  • placeholder

  • value

  • required

Explicação

Questão 29 de 30

1

Who is making the standard for the Web?

Selecione uma das seguintes:

  • Nobody

  • The World Wide Web Consortium

  • Microsoft

  • Unite Nation

Explicação

Questão 30 de 30

1

HTML 5 was the result of hard work of W3C from the first day.

Selecione uma das seguintes:

  • true

  • false

Explicação