Module 1.3 Questions

Module 1.3 Questions

12th Grade

9 Qs

quiz-placeholder

Similar activities

MINT Differentiated Instruction

MINT Differentiated Instruction

KG - 12th Grade

8 Qs

fortnite as of season x

fortnite as of season x

KG - Professional Development

10 Qs

Jaringan WAN

Jaringan WAN

9th - 12th Grade

10 Qs

Quarter 1  Photoshop Review

Quarter 1 Photoshop Review

6th Grade - University

10 Qs

Intro to Photoshop

Intro to Photoshop

9th - 12th Grade

10 Qs

Java Strings

Java Strings

9th - 12th Grade

12 Qs

Practice for 10th AP Java quiz (old)

Practice for 10th AP Java quiz (old)

10th - 12th Grade

11 Qs

UJi Pemahaman Wokwi dan perintah sederhana pemrograman arduino

UJi Pemahaman Wokwi dan perintah sederhana pemrograman arduino

12th Grade

10 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()