Google Earth Engine Quiz

Google Earth Engine Quiz

12th Grade

16 Qs

quiz-placeholder

Similar activities

Berpikir Komputasional Kelas 10

Berpikir Komputasional Kelas 10

10th Grade - University

21 Qs

Introduction to Databases Quiz

Introduction to Databases Quiz

12th Grade

13 Qs

ISC Week 11

ISC Week 11

12th Grade - University

20 Qs

Multimedia and ICT Quiz

Multimedia and ICT Quiz

12th Grade

15 Qs

Unit 3 Year 7

Unit 3 Year 7

7th Grade - University

16 Qs

soal informatika bab 3 kelas 7

soal informatika bab 3 kelas 7

7th Grade - University

20 Qs

G4-Microprocessors and Their Uses

G4-Microprocessors and Their Uses

4th Grade - University

15 Qs

File Compression and Digital Audio/Video Formats

File Compression and Digital Audio/Video Formats

9th - 12th Grade

12 Qs

Google Earth Engine Quiz

Google Earth Engine Quiz

Assessment

Quiz

Information Technology (IT)

12th Grade

Medium

Created by

Avakaza Technologies

Used 27+ times

FREE Resource

16 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

How can you filter and display the India boundary in Google Earth Engine from a global boundary dataset?

Using regions.filter(ee.Filter.eq('country_na', 'India'))

Using regions.select('India')

Using regions.clip('India')

Using regions.map('India')

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

what does this code snippet do?

Export.table.toDrive({

  collection: lakecoll,

  description: 'Varthur lake',

  folder: 'Lakes',

  fileFormat: 'SHP'

});

Export a raster image of the lake to Google Drive as a shapefile (SHP).

Export a feature collection representing the lake to Google Drive as a shapefile (SHP).

Export a satellite image of the lake to Google Earth as a KML file.

Export a topographic map of the lake to Google Drive as a CSV file.

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What does the following code do in Google Earth Engine?

var bufferValue = 5000;

var buff = aoi.buffer(bufferValue, 1);

Map.addLayer(buff);

Creates a 5000km buffer around aoi and adds it to the map

Creates a 5000-meter buffer around aoi and adds it to the map

Clips the area of interest to a 5000-meter radius

Creates a boundary within 5000 meters of the AOI and removes it from the map

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What does the .union() function do when applied to bufferedPoints in this code?

Merges multiple point buffers into one dissolved layer

Creates a buffer around each point

Filters the points to include only those within the buffer

Removes overlapping areas between buffered points

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the purpose of the map() function in Google Earth Engine when applied to a FeatureCollection?

It filters the FeatureCollection based on specific criteria.

It applies a function to each feature in the FeatureCollection and returns a new FeatureCollection.

It merges two FeatureCollections into one.

It removes features from the FeatureCollection based on a condition.

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following statements about const is true?

Variables declared with const can be reassigned.

const is block-scoped.

Variables declared with const are not block-scoped.

Variables declared with const can be hoisted like var.

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output of the following code?

const y = 10;

y = 15;

console.log(y);

15

10

undefined

TypeError

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?