
Web Technologies Challenge
Quiz
•
Computers
•
University
•
Hard
Monica G
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does HTML stand for?
HyperText Markup Language
HighText Markup Language
Hyperlink Text Markup Language
HyperText Multi Language
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which HTML tag is used to define an internal style sheet?
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the purpose of the
tag in HTML?The
tag is used to display the main content of the page.The
tag is used to include images and videos in the document.The
tag is used to contain meta-information about the HTML document.The
tag is for defining the layout of the webpage.4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How do you create a function in JavaScript?
myFunction() = function() { // function body }
function myFunction: { // function body }
function:myFunction() { // function body }
function myFunction() { // function body } or const myFunction = () => { // function body }
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the difference between let, const, and var in JavaScript?
var is function/global scoped, let is block scoped and reassignable, const is block scoped and immutable.
let is global scoped, var is block scoped, const is function scoped.
var is block scoped and immutable, let is function scoped, const is reassignable.
const is function scoped and reassignable, let is immutable, var is block scoped.
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does CSS stand for?
Creative Style Sheets
Computer Style Sheets
Cascading Style Sheets
Cascading Style System
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How can you make a website responsive?
Only use large images
Use flexible grid layouts, media queries, and responsive images.
Use fixed pixel layouts
Ignore mobile users
