Topic 1
Topic 2
Topic 3
Topic 4
Topic 5
100

What is a peer review process for online courses based on national standards of best practice designed to promote student learning?

A) Backward Design

B) Peer Mentoring

C) Quality Matters

D) Accreditation

Quality Matters

100

It is important to imagine yourself in whose shoes?

A) The instructional designer's

B) The instructor's

C) The learner's

D) University leaders

The learner's

100

What are a set of techniques designed to find out more about what and how students are learning in order to better structure instruction and plan learning activities?

A) Objectives

B) CATs

C) Exam Questions

D) Concept Maps

CATs

100

What provides a road map that explains everything students need to be successful in your course?

A) Syllabus

B) Template

C) Lecture

D) Textbook

Syllabus

100

What best summarizes the intentional construction of skills, abilities, or knowledge though participation or contribution?

A) Gaming

B) Absorb-Do-Connect

C) Sequencing

D) Active Learning

Active Learning

200
What does M stands for in HTML?
Markup
200
What does "i" stands for in <i>
Italics
200
What property changes the color behind the words?
background-color:
200

<!DOCTYPE html>
<html>
<head>
  <title>Hello</title>
</head>
<body>
<p>Blah blah blah blah blah </p>
</body>
<html>

Closing tag for HTML
200
What is the name of the first browser
300
What does L stands for in HTML?
Language
300
What does "u" stands for in <ul>
Unordered
300
What property changes the text's font?
font-family:
300

<!DOCTYPE html>
<html>
<head>
  <title>Hello</title>
</head>
<body>
<p>Super Bowl was a super game</p>
</body>
</html>

Nothing to debug
300
What is the leading browser usage?
Internet Explorer 8.0
Link to the current statistics
400
What is the current version of HTML?
HTML5
400
What does "alt" means in image tags?
Alternative text for screen readers
400
Come up a selector that would select a class
.class (a dot means class)
400

<!DOCTYPE html>
<html>
<head>
  <title>Hello</title>
</head>
<body>
<p>Super <span style=“color=yellow”>bowl </span>was a super game!!</p>
</body>
</html>

style:".." Not style=".."
400
What does HTTP stands for?
HyperText Transfer Protocol
500
Who invented World Wide Web?
Tim Berners-Lee
500
What does "div" stands for?
Division
500
In this CSS snippet:

div a {
color:blue;
}

"div a" is called, selector "color" is called, property "blue" is called ??
value
500

<!DOCTYPE html>
<html>
<head>
  <title>Hello</title>
</head>
<body>
<p>Super <b><i>bowl</b></i> was a super game!!</p>
</body>
</html>

Nesting tag ordering for B and I
500
What does FTP stands for?
File Transfer Protocol