Which are the three primary programming languages for which Jupyter Notebook is designed? (check all that apply)
Respuesta
Java
Scala
.NET
Python
Julia
R
Pregunta 2
Pregunta
What is the file extension for a Jupyter Notebook file?
Respuesta
.noteb
.jptr
.ipynb
.pynb
.jup
Pregunta 3
Pregunta
A Jupyter notebook can include which of the following elements? (check all that apply)
Respuesta
map displays
images
graphs
Python code
narrative text
Pregunta 4
Pregunta
When writing code in Jupyter Notebook it includes syntax highlighting, similar to more traditional Python IDEs.
Respuesta
True
False
Pregunta 5
Pregunta
What is the default Python environment when using ArcGIS Pro?
Respuesta
arcgispro-py3
ArcPy
Python 3
arcgis
arcgisscripting
arcgispro
Pregunta 6
Pregunta
ArcGIS API for Python is installed as a package called ____?
Respuesta
arcgis
arcpy
pyarc
arcgisapi
arcgisscripting
GIS
Pregunta 7
Pregunta
Which of the following are modules of ArcGIS API for Python? (check all that apply)
Respuesta
da
network
features
gis
raster
geoprocessing
mapping
sa
Pregunta 8
Pregunta
Consider the following code in Jupyter Notebook:
from arcgis.gis import GIS
my_gis = GIS()
my_map = my_gis.map("Vancouver")
my_map
What GIS() accomplish here?
Respuesta
makes a connection to ArcGIS Pro
opens up ArcGIS Online
creates a map display
runs the GIS function
creates an instance of GIS class
Pregunta 9
Pregunta
Consider the following code in Jupyter Notebook:
from arcgis.gis import GIS
my_gis = GIS()
my_map = my_gis.map("Vancouver")
my_map
What is .map here?
Respuesta
a map widget
an argument of the GIS object
a property of the map document
a function of the GIS class
Pregunta 10
Pregunta
When creating a map display in Jupyter Notebook, where can the spatial datasets come from?