What this quiz covers
This quiz focuses on Basic Drawing Objects, giving you a quick way to practice the rules, question types, and explanations that matter most for AutoCAD.
During the RECTANG command, a drafter specifies the first corner as (120,80) and enters @-40,25 for the opposite corner.
Which description correctly identifies the resulting rectangle?
AutoCAD Quiz
Practice Basic Drawing Objects in AutoCAD with focused quiz questions that help you check what you know, review explanations, and build confidence with test-style prompts.
This quiz focuses on Basic Drawing Objects, giving you a quick way to practice the rules, question types, and explanations that matter most for AutoCAD.
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.
During the RECTANG command, a drafter specifies the first corner as (120,80) and enters @-40,25 for the opposite corner.
Which description correctly identifies the resulting rectangle?
@ symbol in AutoCAD coordinate entry, your brain should immediately switch into relative coordinate mode — meaning the values that follow describe a displacement from the last point, not a fixed location on the drawing.
Here, the first corner is (120,80). The entry @-40,25 tells AutoCAD to move 40 units in the negative X direction and 25 units in the positive Y direction from that point. Calculating the opposite corner: 120+(−40)=80 for X, and 80+25=105 for Y. The opposite corner lands at (80,105), giving you a rectangle spanning (80,80) to (120,105) with dimensions 40×25. That confirms A is correct.
B is wrong because it adds +40 instead of −40, landing at (160,105) — a common sign error when students drop the negative from the X displacement. C confuses relative entry with absolute coordinates entirely, treating @-40,25 as if it means the literal point (−40,25) on the drawing — that's the trap of ignoring the @ symbol. D subtracts 25 from the Y-coordinate instead of adding it, producing (80,55) — a sign error on the Y value this time.
A reliable study tip: always read @x,y as "from here, go x in X and y in Y." Write out the addition explicitly — 120+(−40) and 80+25 — to avoid dropping negative signs, which is the most frequent mistake on coordinate entry questions.A drafter runs ARC, specifies the start point as (10,0), chooses the Center option and enters (0,0), then specifies the endpoint as (0,−10). No direction override is used.
Which arc does AutoCAD create?
ARC command, the single most important rule to internalize is this: by default, AutoCAD always draws arcs counterclockwise (CCW). This is the positive direction in standard mathematical convention, and AutoCAD honors it unless you explicitly override it.
Here, the drafter uses the Start, Center, End method. The start point is (10,0), the center is (0,0), and the endpoint is (0,−10). The radius is clearly 102=10 for both points, which checks out. Now ask yourself: traveling counterclockwise from (10,0) around the origin, where does (0,−10) fall? Moving CCW from the positive x-axis, you pass through (0,10) at 90°, then (−10,0) at 180°, then (0,−10) at 270°. So AutoCAD sweeps a 270° CCW arc — making A the correct answer.
B is wrong because the arc is not clockwise; AutoCAD defaults to CCW. C is wrong on two counts — the direction is still CCW (correct), but a 90° sweep from (10,0) CCW would end at (0,10), not (0,−10). D is wrong because, while 270° is the right angular span, the direction is CCW, not clockwise — a 270° CW arc would actually trace the short path instead.
Your takeaway: on any AutoCAD arc question, immediately ask "which direction is CCW from the start point, and how far must I travel to reach the endpoint?" That single habit eliminates most arc direction errors.While drawing with PLINE, a drafter specifies the first point, selects Width, enters a starting width of 2 and an ending width of 6, and then draws two consecutive line segments without changing the width again.
How are the widths applied to the two segments?
PLINE with the Width option, you set a starting width and an ending width for the next segment you draw. Here's the key behavior to internalize: once that segment is drawn, AutoCAD automatically promotes the ending width to become the new starting width for all subsequent segments — and holds it there uniformly until you explicitly change the width again.
So in this scenario, you set a starting width of 2 and an ending width of 6. The first segment tapers from 2 to 6 along its length. When you begin the second segment without changing the width, AutoCAD sets both the starting and ending width to 6 — the value the previous segment ended with — making the second segment a uniform width of 6. That's exactly what answer D describes, making it correct.
Answer A gets the taper direction backwards — the first segment would go from 2 to 6, not 6 to 2. Answer B suggests both segments taper independently from 2 to 6, which would only be true if you re-entered the width settings before each segment — AutoCAD does not reset widths automatically between segments. Answer C implies both segments are uniform with no taper at all, ignoring the width transition entirely.
A useful memory trick: think of the ending width as being "handed off" to the next segment like a baton. Whatever width the previous segment ends at, that value locks in as the uniform width going forward. On exam questions about PLINE width, always trace that handoff carefully.A drafter starts PLINE, draws one line segment, switches to Arc mode and draws one arc segment, switches back to Line mode and draws another line segment, and then uses Close.
What object structure results when the command is completed?
Close adds an arcPLINE in AutoCAD, the critical concept to understand is that everything drawn within a single PLINE command — regardless of how many times you switch between Line and Arc modes — becomes one single polyline object. The command never splits its output into separate objects mid-session.
In this scenario, the drafter draws: line segment → arc segment → line segment, then uses Close. The Close option automatically adds a straight line segment back to the starting point (not an arc), completing the shape. That gives you three line segments and one arc segment, all fused into a single closed polyline. That's exactly what C describes, making it the correct answer.
A is wrong because Close always closes with a straight line, not an arc. It doesn't detect or match the geometry you last drew — it simply connects the current endpoint to the start point in a straight line.
B reflects a fundamental misunderstanding of how PLINE works. Individual line and arc segments drawn within PLINE are not separate objects. They're welded together into one entity. If you want separate objects, you'd use LINE and ARC as individual commands.
D is a trap for students who confuse PLINE with REGION. A region is a 2D surface object created via the REGION command (or BOUNDARY). PLINE never automatically produces a region — it produces a polyline, which is a path, not a filled surface.
Your study tip: remember that PLINE is a single-object command — one command execution, one object, always. If a question asks about object count after PLINE, the answer is almost always one.Using a single invocation of LINE, a drafter specifies four corner points of an outline in sequence and then enters Close to connect the fourth point back to the first.
How will the completed outline differ from an equivalent outline created with one closed PLINE command?
Close automatically joins all line segmentsLINE command and a PLINE (polyline) command can produce shapes that look identical on screen, but they create fundamentally different objects in the drawing database.
When you use a single LINE command to draw four corners and enter Close, AutoCAD draws the closing segment back to the first point — so visually you get a complete four-sided shape. However, each segment created during a LINE command is stored as an independent line object. Four segments means four separate objects, which is exactly what answer C describes. This matters enormously when you try to select, offset, or edit the shape later.
Answer A is wrong because Close does draw the fourth segment — it doesn't drop it. You end up with all four sides present, not three. Answer B describes what happens with PLINE, not LINE — the Close option within a LINE command does not merge segments into a polyline. It simply draws the final connecting segment and ends the command. Answer D is incorrect because a region is a separate object type created with the REGION command; closing a LINE sequence doesn't automatically produce one.
A reliable study tip: whenever a question contrasts LINE and PLINE, ask yourself "how many objects result?" LINE always produces one object per segment; PLINE produces one unified object regardless of how many vertices you specify. This single distinction drives many AutoCAD exam questions.A circle must have the points (2,4) and (10,10) at opposite ends of its diameter. The drafter uses the 2P option of the CIRCLE command and selects those points.
What center and radius will the resulting circle have?
CIRCLE command uses the 2P option, the two points you select define the diameter — not the radius. This means the circle is fully determined by those two endpoints, and your job is to extract the center and radius from them using basic geometry.
The center of any circle defined by two diameter endpoints is simply the midpoint of those two points. For (2,4) and (10,10):
Center=(22+10, 24+10)=(6, 7)
The radius is half the diameter. The diameter length comes from the distance formula:
d=(10−2)2+(10−4)2=64+36=100=10
So the radius is 10÷2=5. That confirms answer A — center (6,7) and radius 5 drawing units.
Answer B gets the center right but uses the full diameter length (10) as the radius — a classic trap when students forget to halve the distance. Answer C uses incorrect midpoint math, arriving at (4,3), which would result from subtracting rather than averaging the coordinates. Answer D compounds errors by producing both a wrong center and the unhalved diameter as the radius.
Study tip: Whenever you see 2P in a CIRCLE question, mentally flag it: "These are diameter points, not radius points." Always find the midpoint for the center and divide the full distance by two for the radius — skipping that division is the most common mistake on this type of question.In the current UCS, a drafter starts the LINE command, enters the first point as 20,15, and enters the next point as @30<90.
At which coordinate does the new line segment end?
@ symbol and the < symbol correctly. The @ means relative (offset from the last point), and < separates the distance from the angle in degrees, measured counterclockwise from the positive X-axis.
So @30<90 means: "move 30 units at an angle of 90° from the last point." Since 90° points straight up the positive Y-axis, this is a pure vertical displacement. Starting from (20,15), you add 30 to the Y-coordinate and leave X unchanged: (20,15+30)=(20,45). Answer A is correct.
Answer B is wrong because it treats the angle as if it were 0° (along the positive X-axis), adding 30 to X instead of Y, yielding (50,15). That would be the result of @30<0, not @30<90.
Answer C is wrong because it ignores the @ prefix entirely and reads 30,90 as an absolute Cartesian coordinate. Without @, AutoCAD would treat a comma-separated entry as absolute — but the < symbol signals polar format, not Cartesian, so this misreads both the syntax and the prefix.
Answer D is wrong because it confuses the angle value (90) with the new Y-coordinate, as if AutoCAD replaces rather than offsets. No such behavior exists in polar input.
A reliable tip: memorize the four common angles — 0°=right, 90°=up, 180°=left, 270°=down — so you can instantly convert any @distance<angle entry into its X/Y displacement on exam day.Two parallel lines are exactly 12 drawing units apart. A drafter starts CIRCLE, chooses TTR, selects the two lines, and specifies a radius of 5.
What is the expected result?
TTR (Tangent, Tangent, Radius) command in AutoCAD, the geometry of your specified radius must be physically possible given the two selected objects. This is a pure geometry constraint — AutoCAD cannot override it.
Here's the key insight: for a circle to be tangent to two parallel lines simultaneously, it must fit perfectly between them, touching each line at exactly one point. That means the circle's diameter must equal the distance between the lines. With lines 12 drawing units apart, the required diameter is 12, so the only valid radius is 212=6. A radius of 5 produces a diameter of 10, which is smaller than the gap — the circle would simply float between the lines without touching either one. Because no valid tangent solution exists, AutoCAD displays an error and creates no circle at all. This confirms that B is correct.
Choice A is wrong because TTR either satisfies tangency to both objects or fails entirely — it never produces a circle tangent to only one of the selected lines. Choice C describes behavior AutoCAD does not have; the software will not silently modify your specified radius to make geometry work. Choice D is tempting if you confuse TTR with commands that can produce multiple solutions, but parallel lines with a geometrically impossible radius yield zero results, not two.
Study tip: Always ask yourself whether your specified radius is geometrically feasible before running TTR. A quick mental check — does my diameter match or exceed the gap between the objects? — will save you from mysterious "no solution" errors on both the exam and the drafting floor.In the current UCS, a drafter starts RECTANG at (0,0), sets its rotation to 30∘, and uses the Dimensions option to specify a length of 40 and a width of 20. The width extends counterclockwise from the length direction.
Approximately where is the diagonally opposite corner?
RECTANG command applies a rotation angle with the Dimensions option, it treats the rectangle's local axes as rotated vectors — meaning both the length direction and the width direction are rotated by that angle. To find the diagonally opposite corner from (0,0), you must add the rotated length vector to the rotated width vector (which runs perpendicular, 90° counterclockwise from the length).
With a 30° rotation, the length vector of 40 contributes 40cos30°=34.64 in X and 40sin30°=20.00 in Y. The width direction is perpendicular — rotated 30°+90°=120° — so the width vector of 20 contributes 20cos120°=−10.00 in X and 20sin120°=17.32 in Y. Summing both vectors gives the opposite corner: (34.64+(−10.00), 20.00+17.32)=(24.64, 37.32), confirming D is correct.
Choice A ignores the rotation entirely, treating the dimensions as simple axis-aligned offsets — a fundamental misunderstanding of the rotation parameter. Choice B rotates only the length vector and ignores the rotated width altogether, producing an incomplete result. Choice C takes the correct components but swaps X and Y, which is a careless arithmetic error that produces a plausible-looking but geometrically wrong point.
As a strategy, whenever RECTANG involves both rotation and dimensions, always decompose both edges into their X and Y components using trigonometry, then sum them. Think of it like vector addition — the opposite corner is the tip of two combined arrows, not just one.A drafter uses RECTANG with a fillet radius of 10 to create a rectangle whose overall dimensions are 100 by 60. Assume zero polyline width.
What is the total length of the resulting rounded boundary?
RECTANG command applies a fillet radius, it trims each corner of the rectangle, replacing it with a quarter-circle arc. Understanding what happens to both the straight segments and the corner arcs is the key to this problem.
With a fillet radius of r=10, each corner arc spans 90°, or one-quarter of a full circle. Four corners × one-quarter circle each = exactly one complete circle. The circumference of that full circle is 2πr=2π(10)=20π. Now for the straight segments: each fillet trims r=10 from both ends of a corner, so each straight side loses 2×10=20 from its original length. The two long sides become 100−20=80 each, and the two short sides become 60−20=40 each. Total straight length: 2(80)+2(40)=160+80=240. The full perimeter is therefore 240+20π, confirming B.
Choice A is wrong because filleting absolutely does change the perimeter — it shortens the straight sides and adds curved arcs. Choice C incorrectly treats the four quarter-circles as summing to a semicircle (πr) rather than a full circle (2πr) — a classic arithmetic slip. Choice D is wrong because it assumes only two sides are shortened; in reality, all four sides lose material at both ends, so every straight segment is affected.
As a study tip, always account for both changes a fillet makes: arcs are added and straight segments are shortened by r at each end.