InterviewSolution
Saved Bookmarks
| 1. |
Which type can store a collection of objects of any type?(a) GEOMETRYCOLLECTION(b) MULTIPOINT(c) MULTILINESTRING(d) MULTIPOLYGON |
|
Answer» The correct answer is (a) GEOMETRYCOLLECTION Explanation: ‘GEOMETRYCOLLECTION’ can store a collection of objects of any type. The other collection types like ‘MULTIPOINT’, ‘MULTILINESTRING’, ‘MULTIPOLYGON’ and ‘GEOMETRYCOLLECTION’ restrict collection members to those having a particular geometry type. |
|