Test your knowledge

1. What is the correct HTML for inserting an image?

a. <image src="image.gif" alt="MyImage">
b. <img src="image.gif" alt="MyImage">
c. <img href="image.gif" alt="MyImage">
d. <img alt="MyImage", "image.gif">

2. Which is the correct CSS syntax?

a. body { color: black; }
b. { body: color: black; }
c. { body: color= black; }
d. body: color= black

3. Which CSS property is used to change the text size?

a. text-size;
b. font-style;
c. text-style;
d. font-size;

4. What is the correct way to write a JavaScript array?

a. let colors = { ("red"), ("green"), ("blue") }
b. let colors = ["red", "green", "blue"]
c. let colors = (1:"red",2"green", 3"blue")
d. let colors = "red", "green:, "blue"

5. How do you call a function named "myFunction"?

a. call myFunction()
b. call function myFunction()
c. call.myFunction()
d. myFunction()