Module 1.3 Questions

Module 1.3 Questions

12th Grade

9 Qs

quiz-placeholder

Similar activities

Kuis TLJ 1 Kelas XII

Kuis TLJ 1 Kelas XII

12th Grade

10 Qs

Software Design and Development Quick Quiz 2

Software Design and Development Quick Quiz 2

11th - 12th Grade

10 Qs

JavaScript 3 baco med

JavaScript 3 baco med

12th Grade

10 Qs

CAMBRIDGE - A Level -IT- Networks - Satellite Communications

CAMBRIDGE - A Level -IT- Networks - Satellite Communications

12th Grade - Professional Development

10 Qs

Circle Map in Thinking Map CFA

Circle Map in Thinking Map CFA

9th - 12th Grade

10 Qs

Jaringan Komputer dan Internet

Jaringan Komputer dan Internet

9th - 12th Grade

10 Qs

Photoshop Basics

Photoshop Basics

9th - 12th Grade

10 Qs

emtech

emtech

12th Grade

10 Qs

Module 1.3 Questions

Module 1.3 Questions

Assessment

Quiz

Computers

12th Grade

Practice Problem

Medium

Created by

Courtney Yatteau

Used 1+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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