Module 1.3 Questions

Module 1.3 Questions

12th Grade

9 Qs

quiz-placeholder

Similar activities

C# - Ficheiros 1

C# - Ficheiros 1

10th Grade - University

9 Qs

OSI Model - Data Link Layer

OSI Model - Data Link Layer

9th Grade - Professional Development

10 Qs

8.2 Arrays Cambridge IGCSE 0478

8.2 Arrays Cambridge IGCSE 0478

10th Grade - University

10 Qs

Module 6-Data Link Layer

Module 6-Data Link Layer

9th Grade - University

9 Qs

JS Engine

JS Engine

6th - 12th Grade

12 Qs

JS Talks, Quiz #1

JS Talks, Quiz #1

1st - 12th Grade

12 Qs

Контрольная работа по модулю - Автоматизация сети

Контрольная работа по модулю - Автоматизация сети

12th Grade

14 Qs

HTTP

HTTP

9th - 12th Grade

8 Qs

Module 1.3 Questions

Module 1.3 Questions

Assessment

Quiz

Computers

12th Grade

Medium

Created by

Courtney Yatteau

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What method do you use to fetch a GeoJSON file in JavaScript?

getData()

loadJSON()

fetch()

requestGeo()

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

After fetching a file, what do you chain to parse it as JSON?

.parseJSON()

.toJSON()

.then(res => res.json())

.jsonParse(res)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What Leaflet method turns GeoJSON data into a map layer?

L.layerGroup()

L.geoJSON()

L.jsonLayer()

L.mapData()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which option logs each feature's properties?

L.bindPopup()

console.log(layer)

onEachFeature

addEventListener

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you count the number of features in a layer?

layer.countFeatures()

map.featureCount()

layer.getLayers().length

features.length

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What method returns a layer's spatial bounds?

layer.extent()

layer.getZoom()

layer.getBounds()

layer.center()

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you zoom the map to a layer's bounds?

map.zoomTo()

map.fitBounds()

map.setZoom()

map.setExtent()

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which render mode is most performant for 10000 points?

Vector

SVG

Canvas

HTML

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What method measures rendering time?

performance.log()

console.time()

log.time()

debugTime()