GISCI Geospatial Core Technical Knowledge Exam (GISP) â Questions and Answers
Question 1: Which GIS technique is used to model the flow of traffic or resources through a network to identify congestion points or bottlenecks?
- Kernel density estimation
- Spatial autocorrelation
- Network flow analysis (Correct answer)
- Topological overlay
Correct answer: Network flow analysis
Network flow analysis assigns quantities to network edges and solves for optimal or constrained movement through the system.
Question 2: A GIS project schedule shows Total Float of zero for several tasks. What does this mean?
- Those tasks are on the critical path and cannot be delayed without delaying the project (Correct answer)
- Those tasks are optional and can be removed
- Those tasks have extra budget available
- Those tasks have been completed ahead of schedule
Correct answer: Those tasks are on the critical path and cannot be delayed without delaying the project
Zero total float means any delay to those tasks will directly delay the project's end date â they are on the critical path.
Question 3: Which statement best describes 'scale' in the context of GIS?
- The ratio of map distance to real-world distance (Correct answer)
- The file format of the spatial data
- The number of attributes per feature
- The coordinate system used for projection
Correct answer: The ratio of map distance to real-world distance
Map scale is the ratio between a distance on the map and the corresponding distance on the Earth's surface.
Question 4: Which GIS operation combines attributes from two overlapping polygon layers to create a new layer containing all features from both?
- Clip
- Union (Correct answer)
- Intersect
- Dissolve
Correct answer: Union
A Union overlay preserves all features and attributes from both input layers, splitting polygons where they overlap.
Question 5: In Earned Value Management (EVM), if a GIS project's CPI is 0.85, what does this indicate?
- The project has completed 85% of its deliverables
- The project is spending $1.00 for every $0.85 of work completed (over budget) (Correct answer)
- The project is under budget by 15%
- The project is 15% ahead of schedule
Correct answer: The project is spending $1.00 for every $0.85 of work completed (over budget)
A CPI below 1.0 means the project is over budget â costing more than planned for the work accomplished.
Question 6: In GIS, what is a 'projection' designed to do?
- Index spatial features for faster query performance
- Transform 3D Earth coordinates onto a 2D flat surface (Correct answer)
- Convert attribute data into spatial features
- Display 3D terrain as a hillshade
Correct answer: Transform 3D Earth coordinates onto a 2D flat surface
A map projection is a mathematical transformation that converts the curved surface of the Earth onto a flat plane, necessarily introducing some distortion.
Question 7: A geodatabase relationship class with 'Message Direction' set to 'Forward' means messages propagate from which class to which?
- Bidirectionally between both classes
- From destination to origin
- No messages are propagated
- From origin to destination (Correct answer)
Correct answer: From origin to destination
Forward message direction sends notifications from the origin class to the destination class when origin features are modified.
Question 8: A scale factor of 0.9996 at the central meridian in a Transverse Mercator projection means:
- The ellipsoid is flattened by a factor of 0.9996
- Only 99.96% of the zone is covered by the projection
- The projection overstates distances by 0.04% along the central meridian
- Distances along the central meridian are 0.04% shorter than true scale, reducing overall distortion across the zone (Correct answer)
Correct answer: Distances along the central meridian are 0.04% shorter than true scale, reducing overall distortion across the zone
Reducing the central meridian scale to 0.9996 shifts the lines of true scale inward from the edges, balancing distortion across the 6-degree UTM zone.
Question 9: Which of the following is a parameter required to fully define a geographic coordinate system (GCS)?
- Datum, prime meridian, and angular unit (Correct answer)
- False easting and false northing
- Central meridian and scale factor
- Zone number and hemisphere
Correct answer: Datum, prime meridian, and angular unit
A GCS is defined by a datum (which includes the ellipsoid), a prime meridian, and the angular unit (degrees, radians, etc.).
Question 10: What is the primary purpose of map generalization?
- To convert raster data to vector
- To add more detail at smaller scales
- To increase map accuracy
- To simplify features appropriately for a given scale and purpose (Correct answer)
Correct answer: To simplify features appropriately for a given scale and purpose
Map generalization simplifies the complexity of geographic features so the map remains legible and useful at a specific scale.
Question 11: In a GIS raster, what is the term for the phenomenon where a diagonal line appears as stair-steps due to grid cell size?
- Resampling artifact
- Aliasing (Correct answer)
- Band interleaving
- Moire pattern
Correct answer: Aliasing
Aliasing occurs in raster data when a feature is smaller than the pixel resolution, causing curves and diagonals to appear as stepped staircase patterns.
Question 12: Which quality metric is most appropriate for evaluating the accuracy of digitized road centerlines in a GIS project?
- Cost Variance (CV)
- Stakeholder satisfaction score
- Schedule Performance Index (SPI)
- Positional accuracy measured by RMSE (Correct answer)
Correct answer: Positional accuracy measured by RMSE
Root Mean Square Error (RMSE) measures the deviation between digitized features and their true positions, directly assessing positional accuracy.
Question 13: An environmental agency is mapping a long, narrow river corridor that runs primarily north-to-south through a state. To minimize distortion for distance and shape measurements within this corridor, which map projection would be most suitable for their State Plane Coordinate System zone?
- Albers Equal Area Conic
- Transverse Mercator (Correct answer)
- Azimuthal Equidistant
- Lambert Conformal Conic
Correct answer: Transverse Mercator
The Transverse Mercator projection is created by orienting a cylinder tangent along a meridian of longitude, rather than the equator. This makes it ideal for mapping areas that have a greater north-south extent than east-west. For this reason, it is the projection commonly used in the State Plane Coordinate System for states or zones that are taller than they are wide. In contrast, the Lambert Conformal Conic is used for zones with a greater east-west extent.
Question 14: Which method is most appropriate for interpolating precipitation data collected at irregularly spaced weather stations?
- Nearest neighbor resampling
- Euclidean allocation
- Kriging (Correct answer)
- Tabulate intersection
Correct answer: Kriging
Kriging uses statistical models of spatial correlation to provide optimal unbiased predictions at unsampled locations, making it well-suited for environmental variables like precipitation.
Question 15: A city planning department needs to identify all residential parcels that fall partially or wholly within 500 meters of a proposed new landfill site to send out notification letters. Which sequence of geoprocessing tools is most efficient for this task?
- Create a Union of the landfill and parcels layers, then Buffer the result.
- Buffer the landfill site by 500 meters, then Intersect the buffer with the parcels layer. (Correct answer)
- Calculate the Near distance from all parcels to the landfill site.
- Erase the parcels layer with the landfill site, then Buffer the remaining parcels.
Correct answer: Buffer the landfill site by 500 meters, then Intersect the buffer with the parcels layer.
The most direct method is to first create the area of interest by buffering the landfill site by 500 meters. Then, an Intersect operation with the residential parcels layer will create an output feature class containing only those parcels (or portions of parcels) that fall within the buffer zone. The attribute table of the output will contain information from both layers, making it easy to identify the property owners.
Question 16: What is the role of 'GDAL Virtual Format (VRT)' files in Python GIS scripting?
- Encrypting geodatabase contents for secure file transfer
- Storing user interface configuration for QGIS plugins
- Defining a virtual dataset that references other files, enabling mosaicking or band stacking without copying data (Correct answer)
- Caching tile requests from a WMS server to local disk
Correct answer: Defining a virtual dataset that references other files, enabling mosaicking or band stacking without copying data
A VRT file is an XML descriptor that GDAL reads as a virtual raster, stitching together multiple files or rearranging bands without duplicating data.
Question 17: A GIS department has created a complex wildfire risk model that analyzes multiple input layers (e.g., slope, vegetation, weather). They need to make this model available through a web application, allowing users to define an area of interest and receive a calculated risk map as output. Which type of web service is designed to expose such server-side analytical capabilities?
- A Feature Service
- A Geocoding Service
- A Geoprocessing Service (Correct answer)
- A Tiled Map Service
Correct answer: A Geoprocessing Service
A Geoprocessing Service (or OGC Web Processing Service - WPS) is designed to expose geoprocessing tools and models over the web. It allows a client application to send input parameters to a server, which then executes the analysis and returns the results (such as a risk map or summary statistics), without the client needing to perform the complex computation.
Question 18: Which of the following map projections is best suited for a navigational chart of the world's oceans, as it preserves direction (rhumb lines are straight lines), but significantly distorts area near the poles?
- Robinson
- Mercator (Correct answer)
- Albers Equal Area Conic
- Lambert Conformal Conic
Correct answer: Mercator
The Mercator projection is a conformal projection famous for its use in navigation. It preserves angles and shapes locally, and lines of constant bearing (rhumb lines) are straight, which is invaluable for sea travel. Its major drawback is the extreme distortion of area as latitude increases, making landmasses like Greenland appear enormous.
Question 19: What is a 'diverging' color scheme best suited for on a thematic map?
- Showing time-series change
- Showing data that ranges from a meaningful midpoint (e.g., above/below average) (Correct answer)
- Showing gradients from zero to maximum
- Showing categories with no inherent order
Correct answer: Showing data that ranges from a meaningful midpoint (e.g., above/below average)
Diverging palettes use two contrasting hues that diverge from a neutral midpoint color, highlighting deviations above and below a critical value.
Question 20: A cartographer is creating a world map intended for use in an atlas, where comparing the relative sizes of continents is a primary goal. Which type of map projection property should be prioritized?
- Equal-area (Correct answer)
- Equidistant
- Conformal
- Azimuthal
Correct answer: Equal-area
For comparing the relative sizes of landmasses, an equal-area (or equivalent) projection is the most important property. Equal-area projections preserve the area of features, meaning that a square inch on the map represents the same number of square miles on the Earth's surface, regardless of its location on the map. Conformal projections preserve local shape, equidistant projections preserve distance from a central point, and azimuthal projections have directions true from a central point, but only equal-area projections ensure that the relative sizes of features like continents are accurately represented.
Question 21: What does MAUP stand for, and why is it important in GIS analysis?
- Modifiable Areal Unit Problem â aggregating data into zones can change analytical results (Correct answer)
- Multiple Area Update Protocol â used for real-time data syncing
- Maximum Attribute Uncertainty Parameter â controls rounding errors
- Map Attribute Uncertainty Problem â affects color choices
Correct answer: Modifiable Areal Unit Problem â aggregating data into zones can change analytical results
The Modifiable Areal Unit Problem describes how the size and shape of aggregation zones (like census tracts) can significantly alter statistical results.
Question 22: Which projection type is commonly used for navigational charts because it makes rhumb lines appear as straight lines?
- Albers Equal-Area
- Sinusoidal
- Mercator (Correct answer)
- Azimuthal Equidistant
Correct answer: Mercator
The Mercator projection preserves angles (conformal) and represents lines of constant compass bearing (rhumb lines) as straight lines.
Question 23: What distinguishes 2.5D GIS data from true 3D GIS data?
- 2.5D stores a single Z value per X,Y location; true 3D allows multiple Z values at the same X,Y (Correct answer)
- 2.5D is displayed in 2D only; true 3D requires VR hardware
- 2.5D requires a projected CRS; true 3D requires a geographic CRS
- 2.5D uses raster format; true 3D uses vector format
Correct answer: 2.5D stores a single Z value per X,Y location; true 3D allows multiple Z values at the same X,Y
2.5D (also called '2.5-dimensional') assigns one elevation per planimetric location, while true 3D supports volumes and overhangs where multiple Z values exist at a single X,Y.
Question 24: Which risk response strategy involves contracting a third-party vendor to handle data conversion in a GIS project?
- Accept
- Avoid
- Mitigate
- Transfer (Correct answer)
Correct answer: Transfer
Transferring risk shifts responsibility to another party, such as outsourcing risky data conversion tasks to a vendor.
Question 25: What is the 'modifiable areal unit problem' (MAUP) in spatial analysis?
- The problem of assigning point data to grid cells of varying sizes
- Errors introduced when converting raster to vector data
- Difficulty in projecting circular features into planar coordinates
- Statistical results that change depending on how areal units are defined or aggregated (Correct answer)
Correct answer: Statistical results that change depending on how areal units are defined or aggregated
MAUP refers to how spatial analysis results can change significantly depending on the size and shape of the zones used for aggregation.
Question 26: What happens to orphaned features when you delete the origin row in a geodatabase composite relationship class?
- Destination features are updated with NULL foreign keys
- Destination features are moved to an error feature class
- An error prevents deletion of the origin feature
- Destination features are automatically deleted (cascading delete) (Correct answer)
Correct answer: Destination features are automatically deleted (cascading delete)
In a composite relationship class, the destination objects are owned by the origin; deleting the origin triggers a cascade that also deletes all related destination features.
Question 27: When compressing a versioned enterprise geodatabase, what is the primary benefit?
- It removes obsolete delta table rows to improve query performance (Correct answer)
- It merges all versions into the default version
- It encrypts the database for security
- It converts all data to a file geodatabase format
Correct answer: It removes obsolete delta table rows to improve query performance
Compressing a versioned geodatabase removes redundant rows from the adds/deletes (delta) tables that accumulate during versioned editing sessions.
Question 28: What is the purpose of an API key in a web mapping service such as Google Maps Platform or Mapbox?
- Encrypting tile images during transmission
- Specifying the coordinate system for returned data
- Enabling offline caching of map tiles
- Identifying and authenticating the application to control access and track usage billing (Correct answer)
Correct answer: Identifying and authenticating the application to control access and track usage billing
API keys authenticate the calling application, allowing the provider to enforce usage quotas, billing, and access restrictions.
Question 29: A spatial lag model in spatial econometrics is characterized by:
- Including spatially lagged error terms to model residual autocorrelation
- Including a spatially weighted average of the dependent variable as a predictor (Correct answer)
- Using ordinary least squares without accounting for spatial dependence
- Applying geographically weighted coefficients at each observation location
Correct answer: Including a spatially weighted average of the dependent variable as a predictor
A spatial lag model (SAR model) adds a term (ĎWy) representing the spatially weighted average of neighboring dependent variable values, modeling spatial spillover effects.
Question 30: In GIS project management, what is a milestone?
- A database index on a spatial column
- A scale bar unit on a printed map
- A significant point or event marking completion of a major deliverable (Correct answer)
- A geographic benchmark used in surveying
Correct answer: A significant point or event marking completion of a major deliverable
A project milestone is a zero-duration marker indicating a major achievement, such as completing the geodatabase design phase.
GISCI Geospatial Core Technical Knowledge Exam (GISP)
The GISCI Geospatial Core Technical Knowledge Exam is a vendor-neutral, professional certification exam that validates competency across 10 GIS knowledge domains based on a job analysis of four-year professional experience. Passing is required for the GISP (Geographic Information Systems Professional) credential awarded by the GIS Certification Institute.
Exam Rules
- You can skip questions and return to them later
- Flag questions for review before submitting
- No feedback shown until you submit the entire exam
- Unanswered questions count as wrong â answer everything
- 10 pretest questions are mixed in and don't affect your score
- Timer auto-submits when time runs out
- Your progress is auto-saved every 30 seconds