Geography
Cartography and Geospatial Analysis
3,123 Questions
Cartography and geospatial analysis questions cover thematic maps, geographical information systems, and spatial modeling techniques. These concepts are essential for geography optional papers and general studies in UPSC and state PSC exams. Solve these questions to build a strong foundation in map reading and digital spatial analysis.
Thematic map elementsGIS analysis techniquesSpatial modeling conceptsLand use mappingMap accuracy factorsBehavioral geography trends
Cartography and Geospatial Analysis Questions
-
Geographical features
-
Geological features
-
Territorial boundaries
-
Elevations
C
Correct answer
Explanation
Political maps display territorial boundaries between countries, states, provinces, and other political entities. Unlike physical maps (showing landforms) or geological maps (showing rock structures), political maps emphasize human-drawn borders and administrative divisions, often using different colors for different countries but providing minimal topographic detail.
B
Correct answer
Explanation
Clustering, scatter graphs, decision trees, and histograms are general data visualization and data mining techniques used in statistical analysis. GIS (Geographical Information Systems) specifically deals with spatial/geographical data mapping and visualization, which these techniques are not exclusively part of.
B
Correct answer
Explanation
GIS primarily uses map-based visualizations like choropleth maps, dot density maps, and flow maps. Clustering is an analytical technique, not a visualization type. Decision trees are machine learning models used for classification, not GIS-specific visualizations. Histograms are general statistical charts, not uniquely GIS visualizations.
-
G_NORMAL_MAP
-
G_SATELLITE_MAP
-
G_HYBRID_MAP
-
G_STREET_MAP
D
Correct answer
Explanation
In Google Maps API v2, the three default map types were G_NORMAL_MAP (standard roadmap), G_SATELLITE_MAP (satellite imagery), and G_HYBRID_MAP (satellite with overlay). G_STREET_MAP was not a built-in map type in version 2 - Street View was a separate feature introduced later.
-
var myGeographicCoordinates = new GPointM(new Lat(longitude),new Lng(longitude));
-
var myGeographicCoordinates = new GLatLng(myLatitude, myLongitude);
-
var myGeographicCoordinates = new GLatLng(GMarker.Lat(),GMarker.Lng())
-
var myGeographicCoordinates = new GLatLng(GMarker.getLat(),GMarker.getLng())
B
Correct answer
Explanation
The GLatLng constructor takes latitude and longitude as parameters in that order. This is the correct way to create a geographic coordinate point in Google Maps API v2. Options A uses incorrect class names, and C/D incorrectly reference GMarker methods.
-
To search the environment map when building a list of elements
-
To search the system map when building a list of elements
-
To search the subsystem map when building a list of elements
-
To search the dataset when building a list of elements
A
Correct answer
Explanation
Build Using Map searches the environment map to construct a list of elements for the build process. This is specifically the environment map, not the system map, subsystem map, or dataset.
-
A vector of arrays for a 2D geographic representation
-
A class for containing unique array elements
-
A class for containing unique vector elements
-
An interface that ensures that implementing classes cannot contain duplicate keys
D
Correct answer
Explanation
A Java Map is an interface that maps keys to values, with the requirement that keys must be unique - no duplicate keys are allowed. It is not related to geographic representation (A), or containing unique elements in vectors or arrays (B, C). The Map interface's fundamental contract is that each key can map to at most one value, making duplicate keys impossible.
-
LocationPoint
-
GeoPoint
-
Overlay
-
Canvas
-
None of above
B
Correct answer
Explanation
GeoPoint represents a geographical position on a map using integer values for latitude and longitude in microdegrees. It's the fundamental class used in Android Maps API to mark specific coordinates.
-
Satellite View
-
Traffic View
-
Street View
-
None of above
-
Map Class
-
Location Class
-
Area Class
-
All of the above
B
Correct answer
Explanation
In classic mobile platforms like Java ME (JSR-179) and general location APIs, the class representing a location sensed at a specific time is named Location. Map and Area classes represent different visualization and boundary concepts respectively.
A
Correct answer
Explanation
Within the MAP tag used for image maps, the AREA tag is used to define specific clickable regions (hotspots) on an image. Each AREA tag specifies coordinates, shape, and the link destination for that region.
-
Remote Sensing and Buffering
-
Raster, Vector and Remote Sensing
-
Raster and Vector
-
Raster and pixel data
C
Correct answer
Explanation
GIS (Geographic Information Systems) uses two fundamental data types: Raster data (grid-based, like satellite imagery) and Vector data (coordinate-based, representing points, lines, and polygons). Remote Sensing is a data collection method that produces raster data, not a data type itself. Buffering is an analysis operation, not a data type.
-
to visualize information
-
to find out where something is
-
to compare information
-
all of the above
D
Correct answer
Explanation
GIS maps serve multiple purposes: they visualize data spatially (A), locate specific features (B), and enable comparison of different spatial datasets (C). Since all three individual functions are core uses of GIS, 'all of the above' (D) is the comprehensive correct answer.
-
Azimuthal
-
Cylindrical
-
Geographic
-
Conic
C
Correct answer
Explanation
The three main families of map projections are planar (azimuthal), cylindrical, and conic - all based on projecting onto different geometric surfaces. 'Geographic' is not a projection type; it refers to the coordinate system (lat/long) used, not the projection method itself.
-
a single piece of data
-
any large collection of geographic data
-
all of the census data for a particular year
-
an attempt to accurately measure the shape of the earth's surface and locations on that surface, either locally or globally
D
Correct answer
Explanation
A geodetic datum is a reference system that defines the Earth's shape (ellipsoid) and anchors coordinate positions to the surface. It's not a single data point (A), a collection (B), or census data (C) - those are just data, not the reference framework itself.