F Exam
F.1 Topics
The material for the exam includes Chapters 1–5 and Chapter 7, except for the following topics:
- The GitHub platform (Section 5.6.3)
- The Leaflet library (Sections 7.5–7.6 and 7.8.2–7.8.3)
- The geojson.io and mapshaper web applications (Sections 7.4.1–7.4.2)
The exam will consist of 10 multiple-choice questions.
F.2 Sample questions
F.2.1 Question 1
Which HTML element is used to create a top-level (largest) heading?
<h1>
<h6>
<heading>
<head>
19.2.1 Question 2
Given the following HTML code for a list with three items:
which CSS code can be used to make the first and third item appear with the same color?
.hot {color: black} .cold {color: blue}
#first {color: red}
#cold {color: blue}
.cold {color: blue}
F.2.2 Question 3
What will be printed in the console as a result of the following expression?
[20, 30, 1]
3
[20, 30]
[20, 30, 30]