Blender Quiz: Add Primitive Meshes And Understand Mesh Topology Basics Verts Edges Faces
10 questions · exam conditions
0:00
Add Primitive Meshes And Understand Mesh Topology Basics Verts Edges FacesQuestion 1 of 10

A Grid primitive is created with 55 vertices along one direction and 44 vertices along the other. The grid contains only its default quadrilateral cells, with no wrapping or duplicate vertices.

Which set of topology counts is correct?

2020 vertices, 3131 edges, and 1212 faces
2020 vertices, 4040 edges, and 2020 faces
2020 vertices, 2828 edges, and 1212 faces
1616 vertices, 3131 edges, and 1212 faces
← Back to quizzes

Blender Quiz

Blender Quiz: Add Primitive Meshes And Understand Mesh Topology Basics Verts Edges Faces

Practice Add Primitive Meshes And Understand Mesh Topology Basics Verts Edges Faces in Blender with focused quiz questions that help you check what you know, review explanations, and build confidence with test-style prompts.

What this quiz covers

This quiz focuses on Add Primitive Meshes And Understand Mesh Topology Basics Verts Edges Faces, giving you a quick way to practice the rules, question types, and explanations that matter most for Blender.

How to use this quiz

Try each quiz question before looking at the correct answer. Use the explanations to review missed ideas, then come back to similar questions until the pattern feels familiar.

All questions

Question 1

A Grid primitive is created with 55 vertices along one direction and 44 vertices along the other. The grid contains only its default quadrilateral cells, with no wrapping or duplicate vertices.

Which set of topology counts is correct?

  1. 2020 vertices, 3131 edges, and 1212 faces (correct answer)
  2. 2020 vertices, 4040 edges, and 2020 faces
  3. 2020 vertices, 2828 edges, and 1212 faces
  4. 1616 vertices, 3131 edges, and 1212 faces
Explanation: When working with grid topology in Blender, you need to apply Euler's formula relationships for planar meshes. For a grid with XX vertices along one axis and YY along the other, three formulas govern the topology: vertices =X×Y= X \times Y, faces =(X1)(Y1)= (X-1)(Y-1), and edges =X(Y1)+Y(X1)= X(Y-1) + Y(X-1). With 55 vertices in one direction and 44 in the other, plug in directly. Vertices: 5×4=205 \times 4 = 20. Faces: (51)(41)=4×3=12(5-1)(4-1) = 4 \times 3 = 12. Edges along the horizontal runs: 5×(41)=5×3=155 \times (4-1) = 5 \times 3 = 15. Edges along the vertical runs: 4×(51)=4×4=164 \times (5-1) = 4 \times 4 = 16. Total edges: 15+16=3115 + 16 = 31. That gives you 2020 vertices, 3131 edges, and 1212 faces — confirming answer A is correct. Answer B claims 4040 edges and 2020 faces, which would require a full 5×45 \times 4 grid of faces — but that would need 6×56 \times 5 vertices, not 5×45 \times 4. Answer C gets the vertex and face counts right but undercounts edges at 2828, likely from forgetting one full row or column of edge segments. Answer D drops the vertex count to 1616, confusing a 4×44 \times 4 grid with a 5×45 \times 4 one, which is a classic off-by-one error. A useful memory trick: the face count always uses (vertices1)(\text{vertices} - 1) per direction, because faces live in the gaps between vertices, not on the vertices themselves. Keep this "subtract one per axis" rule in mind whenever grid topology appears on the exam.

Question 2

Two coplanar quadrilateral faces share one interior edge. The shared edge is selected, and Dissolve Edges is used with default settings. The surrounding boundary is otherwise unchanged.

What is the expected topological result?

  1. Both faces are removed, leaving their surrounding edges as an open boundary
  2. The shared edge remains, but its two endpoint vertices are removed
  3. The shared edge is removed and the two faces become one larger polygon (correct answer)
  4. The shared edge is duplicated so each quadrilateral has an independent boundary
Explanation: When working with Blender's mesh editing tools, it helps to think about what "dissolving" actually means topologically: unlike deletion, dissolving merges surrounding geometry rather than creating holes. This distinction is central to the question. When you select the shared interior edge between two quad faces and run Dissolve Edges, Blender removes that edge while keeping all surrounding geometry intact. Because both faces were bounded by that edge, eliminating it allows them to merge seamlessly into a single, larger polygon — in this case, an eight-sided ngon (assuming no shared vertices beyond the edge endpoints). That's exactly what C describes, making it the correct answer. A is wrong because it describes the behavior of Delete Edges, not Dissolve. Deleting an edge removes it and can leave the mesh with open boundary loops or orphaned faces, depending on context. Dissolve is specifically designed to avoid creating holes. B confuses edge dissolving with vertex dissolving — removing the endpoint vertices while keeping the edge is not a valid operation here and doesn't reflect how Dissolve Edges works. The edge is what gets dissolved, not its vertices. D describes a duplication or separation operation, which has nothing to do with dissolving; this would be closer to what Rip or manual edge creation might do, and it contradicts the fundamental purpose of dissolving geometry. A useful rule of thumb: Delete punches holes, Dissolve cleans topology. Whenever you want to reduce edge/vertex count without opening up your mesh, reach for Dissolve. This distinction appears frequently in Blender topology questions, so keep it sharp.

Question 3

A default cube is edited by deleting only its top face. No vertices or edges are deleted manually.

Which statement correctly identifies the resulting boundary topology?

  1. The four former top-rim edges each belong to one face and form an open boundary (correct answer)
  2. The four vertical edges each belong to one face and form the only open boundary
  3. All remaining edges still belong to two faces, so the mesh remains closed and manifold
  4. The four former top-rim edges belong to no faces and become loose geometry
Explanation: When working with mesh topology in Blender, the key concept to understand is the boundary edge: an edge that belongs to exactly one face. A closed, manifold mesh has every edge shared by exactly two faces. Deleting a face doesn't remove its surrounding edges — it simply leaves those edges with one fewer face attached. Starting with a default cube, the top face is bounded by four edges forming its rim. Before deletion, each of those rim edges belongs to two faces: the top face and one adjacent side face. Once you delete only the top face, those four rim edges each retain their connection to a single side face — dropping from two-face membership to one. That's the definition of a boundary edge, and together those four edges form an open loop — a hole in the mesh. This confirms answer A as correct. Answer B is wrong because the vertical edges (the cube's corner pillars) are unaffected by the deletion — each still connects to two faces (two side faces), so they remain interior edges and contribute no boundary. Answer C is incorrect because the deletion does leave edges with only one face, breaking the closed-manifold condition. The mesh is no longer watertight. Answer D confuses boundary edges with loose geometry. Loose edges have zero face connections. The former top-rim edges still belong to one face each — they're boundaries, not floating geometry. As a study tip, always ask yourself: how many faces does each edge touch after an operation? Zero = loose, one = boundary, two = interior. This mental checklist will clarify most Blender topology questions.

Question 4

A Torus primitive is created with 1212 major segments and 88 minor segments. It uses the standard wrapped quadrilateral topology, with no caps or duplicated seam vertices.

Which topology counts should the torus have?

  1. 104104 vertices, 192192 edges, and 9696 faces
  2. 9696 vertices, 180180 edges, and 8484 faces
  3. 2020 vertices, 9696 edges, and 192192 faces
  4. 9696 vertices, 192192 edges, and 9696 faces (correct answer)
Explanation: When analyzing torus topology, you need to understand how a torus wraps a grid of vertices around two axes simultaneously. Think of it as a rectangular grid that closes on itself in both directions — the "major" ring (the big circle) and the "minor" ring (the tube cross-section). For a torus with MM major segments and mm minor segments, the formulas are: Vertices=M×m\text{Vertices} = M \times m Faces=M×m\text{Faces} = M \times m Edges=2×M×m\text{Edges} = 2 \times M \times m This works because every vertex is shared by exactly four faces in a fully wrapped quad mesh — no boundary edges, no caps, no seam duplication. With 1212 major and 88 minor segments: vertices =12×8=96= 12 \times 8 = 96, faces =12×8=96= 12 \times 8 = 96, and edges =2×12×8=192= 2 \times 12 \times 8 = 192. That confirms D as correct. A gets the edges and faces swapped relative to vertices — it inflates vertices to 104104 and faces to 192192, which would require extra geometry that isn't present in a standard torus. B uses values like 180180 and 8484 that don't correspond to any clean formula using these segment counts — these numbers suggest a possible off-by-one miscalculation, perhaps treating segment rings as open rather than closed. C catastrophically reverses the edge and face counts while also dropping vertices to 2020, which has no geometric basis here. A quick study tip: for any closed, seam-free quad primitive in Blender, remember that faces always equal vertices, and edges always equal twice the faces. This Euler-consistent pattern is your fastest check on torus topology questions.

Question 5

Two Plane primitives are added in Edit Mode and positioned edge-to-edge so that one full edge of each plane occupies exactly the same spatial location. No merge operation is performed. Each plane began with 44 vertices, 44 edges, and 11 face.

Which description is correct before any vertices are merged?

  1. The mesh has 66 vertices, 77 edges, and 22 faces because coincident elements connect automatically
  2. The mesh has 88 vertices, 88 edges, and 22 faces, with two coincident but separate boundary edges (correct answer)
  3. The mesh has 88 vertices, 77 edges, and 22 faces, because the overlapping edges become one edge
  4. The mesh has 66 vertices, 88 edges, and 11 face because the coplanar faces combine automatically
Explanation: When working with mesh topology in Blender's Edit Mode, it's crucial to understand that spatial overlap does not equal topological connection. Blender never automatically merges, welds, or combines geometry — every vertex, edge, and face remains independent until you explicitly merge it. Here's the math: each plane starts with 44 vertices, 44 edges, and 11 face. Two planes together give you 4+4=84 + 4 = 8 vertices, 4+4=84 + 4 = 8 edges, and 1+1=21 + 1 = 2 faces. Even though one edge from each plane sits at the exact same position in 3D space, they are still two distinct edges belonging to two distinct loops. The coincident edges are simply overlapping boundary edges — unconnected neighbors, not shared topology. This makes B correct: 88 vertices, 88 edges, 22 faces. A is wrong because it assumes Blender auto-connects coincident elements, reducing vertices to 66 and edges to 77. That only happens after you run Merge by Distance (or manual merging). C makes a similar error — claiming the overlapping edges collapse into one shared edge, dropping the count to 77 edges. Again, no merge means no collapse. D compounds two misconceptions at once: that coplanar faces auto-combine into one face and that vertices auto-merge, which Blender never does passively. A reliable rule of thumb: in Blender, proximity is never connectivity. Always ask yourself whether a merge operation was explicitly performed. If the passage says "no merge," trust the raw element counts from both objects independently.

Question 6

A mesh has 2626 vertices, 4040 edges, and 1515 faces. Exactly three of its faces are quadrilaterals, and each is triangulated by adding one diagonal. No existing vertices, edges, or faces are otherwise altered.

What are the mesh's new topology counts?

  1. 2626 vertices, 4646 edges, and 1818 faces
  2. 2929 vertices, 4343 edges, and 1818 faces
  3. 2626 vertices, 4343 edges, and 1818 faces (correct answer)
  4. 2626 vertices, 4343 edges, and 1515 faces
Explanation: When triangulating faces in Blender, you need to track what each diagonal actually adds to the mesh. A diagonal is a new edge that splits one quadrilateral into two triangles — it connects two existing vertices, so it creates no new vertices and no new faces beyond the split itself. Here's the math for triangulating three quads: each diagonal adds 11 edge and converts 11 face into 22 faces (a net gain of 11 face). Applying this three times gives you +3+3 edges and +3+3 faces. Starting from 2626 vertices, 4040 edges, and 1515 faces: 26 vertices,40+3=43 edges,15+3=18 faces26 \text{ vertices},\quad 40 + 3 = 43 \text{ edges},\quad 15 + 3 = 18 \text{ faces} That matches answer C. Looking at the wrong choices: A gives 4646 edges instead of 4343 — this comes from mistakenly adding 22 edges per triangulation instead of 11, perhaps confusing a diagonal with two new edges. B gives 2929 vertices — a classic trap where you incorrectly assume that adding a diagonal requires inserting new midpoint vertices, which it doesn't; a diagonal connects existing corner vertices of the quad. D keeps the face count at 1515, ignoring that each diagonal genuinely splits one face into two, so the face count must increase. A good rule of thumb: triangulating by diagonal = 0 new vertices, +1 edge, +1 face per quad. Memorize this triplet (0, +1, +1) and you can solve any variant of this question instantly without second-guessing yourself.

Question 7

Two Cylinder primitives are created with 1212 side vertices and identical dimensions. One uses N-gon cap fill, while the other uses Triangle Fan cap fill. Both retain both caps.

Compared with the N-gon cylinder, how does the Triangle Fan cylinder's topology change?

  1. It has 22 more vertices, 2424 more edges, and 2222 more faces (correct answer)
  2. It has 22 more vertices, 1212 more edges, and 2424 more faces
  3. It has the same vertices, 2424 more edges, and 2222 more faces
  4. It has 2424 more vertices, 2424 more edges, and 22 more faces
Explanation: When comparing cap fill types in Blender, you need to count the mesh elements each method generates — vertices, edges, and faces — then find the difference between the two configurations. Start by counting both cylinders. With 1212 side vertices, an N-gon cylinder uses those same 1212 perimeter vertices per cap, connected by a single polygon (the N-gon itself). No center vertex is needed. Each cap contributes 11 face and 00 interior edges — the perimeter edges are shared with the sides. So across both caps: +0+0 extra vertices, +0+0 extra interior edges, +2+2 faces total for the caps. A Triangle Fan cap instead places 11 center vertex per cap, then connects it to each of the 1212 perimeter vertices with 1212 new edges, creating 1212 triangular faces per cap. Across both caps, that's +2+2 center vertices, +24+24 new edges (12×212 \times 2), and +24+24 triangular faces instead of 22 N-gon faces — a net gain of +22+22 faces (24224 - 2). So the Triangle Fan cylinder has 22 more vertices, 2424 more edges, and 2222 more faces than the N-gon cylinder — confirming answer A. B is tempting but miscounts the faces, suggesting 2424 more rather than accounting for the 22 N-gon faces being replaced. C incorrectly claims no extra vertices, forgetting the two center points. D wildly overstates the vertex count — only 22 center vertices are added, not 2424. When solving topology comparison questions, always build a complete element table for each configuration before subtracting — it prevents the partial-count mistakes that make B, C, and D plausible traps.

Question 8

A default cube is selected, and the user enters Edit Mode. Without selecting or deleting any existing geometry, the user adds another default cube and moves it so the two cubes do not touch.

After returning to Object Mode, which result correctly describes the mesh?

  1. One object containing two disconnected components with 1616 vertices, 2424 edges, and 1212 faces (correct answer)
  2. Two objects, each containing one component with 88 vertices, 1212 edges, and 66 faces
  3. One connected object with 1616 vertices, 2424 edges, and 1212 faces joined by hidden edges
  4. One object containing two disconnected components with 1212 vertices, 2020 edges, and 1212 faces
Explanation: When you add geometry while already inside Edit Mode, Blender adds it directly into the current object's mesh data — not as a separate object. This is the core concept being tested here. A default cube has 88 vertices, 1212 edges, and 66 faces. When you add a second default cube in Edit Mode, its geometry is appended to the same mesh. Since the two cubes don't touch or share any vertices, the result is one object with two disconnected mesh islands — also called components. Adding the counts together: 8+8=168 + 8 = 16 vertices, 12+12=2412 + 12 = 24 edges, and 6+6=126 + 6 = 12 faces. That's exactly what A describes, making it correct. B is wrong because it describes two separate objects, which is what would happen if you added the second cube in Object Mode instead of Edit Mode — a common point of confusion. C is wrong because the cubes are genuinely disconnected; there are no hidden edges bridging them. Blender doesn't fabricate connections between islands. D is wrong because its vertex and edge counts (1212 vertices, 2020 edges) don't correspond to any standard combination of two default cubes — those numbers might seem plausible at a glance, but they don't follow from the actual geometry. A useful rule to remember: the mode you're in when you add geometry determines ownership. Edit Mode → same object. Object Mode → new object. This distinction appears frequently in Blender workflow questions, so internalize it as a reflex.

Question 9

All six quadrilateral faces of a default cube are triangulated. Each face receives one diagonal, and no vertices are merged or split.

Which statement correctly describes both the new counts and the Euler characteristic VE+FV-E+F?

  1. The mesh has 88 vertices, 1818 edges, 66 faces, and Euler characteristic 4-4
  2. The mesh has 88 vertices, 2424 edges, 1212 faces, and Euler characteristic 4-4
  3. The mesh has 1414 vertices, 1818 edges, 1212 faces, and Euler characteristic 88
  4. The mesh has 88 vertices, 1818 edges, 1212 faces, and Euler characteristic 22 (correct answer)
Explanation: When you triangulate a mesh, you need to carefully track how each element count changes — vertices, edges, and faces all shift in specific ways, and the Euler characteristic VE+FV - E + F gives you a powerful check on your work. Start with the default cube: 88 vertices, 1212 edges, 66 faces. Triangulating means splitting each quadrilateral face with one diagonal. Since no vertices are added or merged, VV stays at 88. Each diagonal is a brand-new edge added inside a face, so you gain 66 new edges: 12+6=1812 + 6 = 18 edges total. Each diagonal also splits one quad into two triangles, doubling the face count: 6×2=126 \times 2 = 12 faces. Now apply the Euler characteristic: VE+F=818+12=2V - E + F = 8 - 18 + 12 = 2. For any convex polyhedron (topologically equivalent to a sphere), this should always equal 22 — a great built-in sanity check. So D is correct. A gets the edge count (1818) and vertex count (88) right but leaves the face count at 66, as if no triangulation actually happened. It then calculates 818+6=48 - 18 + 6 = -4, which is wrong on both counts. B invents 2424 edges — perhaps by mistakenly adding 1212 diagonals instead of 66, or double-counting — and arrives at the same incorrect Euler value of 4-4. C introduces 1414 vertices, which contradicts the problem's explicit statement that no vertices are added. All remaining numbers cascade incorrectly from that false premise. A quick study tip: whenever a topology question gives you a Euler characteristic, use VE+F=2V - E + F = 2 as your verification tool — if your counts don't produce 22 for a closed mesh, something went wrong.

Question 10

A mesh consists of one square face with four boundary edges and four vertices. The face is selected, extruded once as a region, and moved perpendicular to its original plane. No merging or deletion is performed.

What topology results immediately after the extrusion?

  1. 88 vertices, 88 edges, and 55 faces, forming a solid without a bottom face
  2. 88 vertices, 1212 edges, and 66 faces, forming a closed box-like mesh (correct answer)
  3. 44 vertices, 88 edges, and 66 faces, because extrusion reuses the original vertices
  4. 88 vertices, 1212 edges, and 55 faces, because the original face is removed
Explanation: When working with extrusion in Blender, you need to track exactly what geometry gets created versus what gets preserved. Extrude Region duplicates the selected geometry, connects it with new edges, and leaves the original geometry intact — nothing is deleted or merged automatically. Starting with your single square face: it has 44 vertices, 44 boundary edges, and 11 face. When you extrude it as a region and move it perpendicular to its plane, Blender duplicates all four vertices (giving you 4+4=84 + 4 = 8 vertices total) and creates four new side faces connecting the original ring of vertices to the new ring. The original bottom face remains, and the new top face is created at the extruded position. That yields 11 bottom +4+ 4 sides +1+ 1 top =6= 6 faces. The edges include the original 44 bottom edges, 44 new top edges, and 44 new vertical connecting edges, totaling 1212 edges. This makes B correct: 88 vertices, 1212 edges, and 66 faces — a closed, box-like shell. Choice A is wrong because it assumes the original bottom face is removed, which doesn't happen automatically. Choice D makes the same mistake — claiming the original face disappears — and also miscounts the faces as 55. Choice C is fundamentally wrong in claiming extrusion reuses the original vertices; extrusion always duplicates them, which is precisely why new geometry gets created rather than just repositioned. A reliable tip: memorize that Extrude Region = duplicate + connect + keep original. Whenever you see topology-counting questions, trace each element (vertices, edges, faces) step by step rather than estimating.