ITS Tutorial Questions

ITS Tutorial Questions

Assessment

Flashcard

Computers

7th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

14 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Analyze the following markup: <!DOCTYPE html> <html lang="en"> <head> <style> p{ color:purple; } </style> </head> <body> <p style="color:red; text-decoration:underline;">First paragraph</p> </body> </html> Options: The text "First paragraph" will display purple and not underlined, The text "First paragraph" will display purple and underlined, The text "First paragraph" will display red and not underlined, The text "First paragraph" will display red and underlined

Back

The text "First paragraph" will display red and underlined.

2.

FLASHCARD QUESTION

Front

Which attribute prefills a default value for an input element in HTML5? Options: name, required, autocomplete, placeholder

Back

placeholder

3.

FLASHCARD QUESTION

Front

Which HTML5 code fragment shows a way to validate numeric input as having a value from 1 to 100 inclusive? Options: <input type="num" min="1" max="100">, <input type="number" low="1" high="100">, <input type="number" min="1" max="100">, <input type="positive" limit="100">

Back

<input type="num" min="1" max="100">.

4.

FLASHCARD QUESTION

Front

What is the correct syntax to change the font color of a visited link to magenta? Options: a#link{ color=magenta; }, a:link { color:magenta; }, a:visited { color:magenta; }, a:visited { color:magenta; }

Back

a:visited { color:magenta; }

5.

FLASHCARD QUESTION

Front

Which code segment correctly sets the background to an image that is sized to fill the entire background? Options: #div1{ background:img(floer.jpg); background-size:200px; }, #div1 { background:url(flower.jpg); background-size:auto; }, #div1{ background:img(flower.jpg); background-size:contain; , #div1{ background:url(flower.jpg); background-size:cover; }

Back

#div1{ background:url(flower.jpg); background-size:cover; }

6.

FLASHCARD QUESTION

Front

A style is not applied to the document because of a syntax error. The error is in one of the answers below. Select where the error is. Options: body { font-family:"Lucida Sans", "Lucida Sans Regular", Geneva, verdana, sans-serif; font-size:12pt; background:linen; }, header h1 { border:5px inset brown; padding:10px; border-radius:20px; text-align:center; font-size:150%; text-shadow:1px 1px brown; }, h2, h3 { color:b37a00; font-size:1.75em; }, div>p { text-align:left; font-size:2vw; }

Back

body { font-family:"Lucida Sans", "Lucida Sans Regular", Geneva, verdana, sans-serif; font-size:12pt; background:linen; }

7.

FLASHCARD QUESTION

Front

Which code shows the correct way to nest tags in HTML5? Options: <p>This is HTML5<strong><em>text formatting</strong></em></p>, <p>This is HTML5<strong><em>text formatting</p></em></strong>, <p>This is HTML5<strong><em>text formatting</p></strong></em>, <p>This is HTML5<strong><em>text formatting</em></strong></p>

Back

<p>This is HTML5<strong><em>text formatting</em></strong></p>

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?