What this quiz covers
This quiz focuses on Coordinate Entry, giving you a quick way to practice the rules, question types, and explanations that matter most for AutoCAD.
During a polyline operation, the current point is 72,−18. The next vertex must be located at the absolute coordinate 15,24. Dynamic Input is off.
Which relative Cartesian entry places the next vertex at the required coordinate?
AutoCAD Quiz
Practice Coordinate Entry 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 Coordinate Entry, 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 a polyline operation, the current point is 72,−18. The next vertex must be located at the absolute coordinate 15,24. Dynamic Input is off.
Which relative Cartesian entry places the next vertex at the required coordinate?
@ symbol signals a relative entry, meaning "offset from where I am now."
Here, your current point is (72,−18) and your target is (15,24). To find the relative offset, subtract the current point from the destination:
ΔX=15−72=−57
ΔY=24−(−18)=24+18=42
So the correct relative entry is @−57,42, which is answer B. The negative X means you move left, and the positive Y means you move up — which makes geometric sense when shifting from a point far to the right down to one at the upper-left.
A (@15,24) is the trap for students who confuse relative and absolute coordinates — those are simply the destination's absolute values, not the offset. C (−57,42) has the correct offset values but omits the @ symbol, so AutoCAD would interpret it as an absolute coordinate, placing the vertex at (−57,42) from the origin — completely wrong. D (@57,−42) reverses the signs on both components, which would move you in the exact opposite direction from the target.
A reliable strategy: always compute ΔX and ΔY explicitly by doing destination minus current position, then prefix with @. Sign errors are the most common mistake on coordinate-entry questions.In a 3D drawing, a line starts at the absolute coordinate 12,−8,5. Two successive points are entered using @−4,10,−7 and then @6,−3,9.
What is the absolute coordinate of the final point?
@ symbol signals a relative coordinate — each entry offsets from wherever you currently are.
Starting at absolute point 12,−8,5, the first relative move @−4,10,−7 adds component-by-component: 12+(−4)=8, −8+10=2, 5+(−7)=−2, landing at 8,2,−2. The second relative move @6,−3,9 then offsets from that new position: 8+6=14, 2+(−3)=−1, −2+9=7. The final absolute coordinate is 14,−1,7, confirming A is correct.
B 14,1,7 is a sign error — the Y-component 2+(−3) yields −1, not +1. This trap catches students who drop the negative sign during addition. C 6,7,2 results from incorrectly applying both relative moves directly to the original starting point instead of chaining them step-by-step — a misunderstanding of how successive relative entries accumulate. D 18,−11,14 comes from treating the relative offsets as absolute coordinates and adding all three sets of values together at once, confusing the coordinate systems entirely.
Your study tip: always process relative coordinates sequentially — each @ entry updates your "current position," and the next @ moves from there. Draw a quick chain on scratch paper: Start → Move 1 → Move 2. Never jump back to the original point for later relative moves.While drawing an orthogonal rectangular boundary, the first corner has already been entered as the absolute point 250,125. The next corners must be 310,125 and 310,170, in that order.
Which pair of relative Cartesian entries correctly creates both remaining corners?
A UCS is rotated 30° counterclockwise from the WCS about the common origin. A line begins at the WCS coordinate 100,50. At the next-point prompt, the user enters @40,0.
What is the approximate WCS coordinate of the new endpoint?
The current point of a line is −10,25. Angles use the default convention: 0° is along positive X and positive angles are counterclockwise. The next point is entered as @30<210°.
Approximately where is the next point located?
@distance<angle format), you're being asked to find a new point by traveling a specific distance in a specific direction from the current point. The key steps are: resolve the polar offset into X and Y components, then add those to the current coordinates.
Starting at (−10,25), the entry @30<210° means travel 30 units at 210°. Since 210° is in the third quadrant (180° + 30°), both X and Y components will be negative. Using trigonometry:
ΔX=30cos(210°)=30×(−0.866)≈−25.981
ΔY=30sin(210°)=30×(−0.500)=−15.000
Adding to the current point:
Xnew=−10+(−25.981)≈−35.981
Ynew=25+(−15)=10.000
This confirms C) (−35.981,10.000) is correct.
Choice A (15.981,10.000) uses a positive X component instead of negative — a sign error that ignores which quadrant 210° falls in. Choice B (−35.981,40.000) gets the X value right but adds the Y offset instead of subtracting, treating sin(210°) as positive. Choice D (5.000,−0.981) appears to misapply the angle entirely, possibly confusing it with a different angle or swapping sine and cosine.
A reliable strategy: always sketch the angle quickly. Angles between 180° and 270° are in the third quadrant — both components are negative. Don't let a large angle number trick you into forgetting the sign.In the current UCS, ANGBASE is set to 90° and ANGDIR is set to clockwise. A line begins at 0,0, and its next point is entered as @20<30°.
Which approximate endpoint results from the polar entry?
A line currently ends at 20,10. At the next-point prompt, the user enters 50<150° without an at sign. Dynamic Input is off, and the current UCS has its origin at 0,0 with default angle settings.
What point does AutoCAD use for this entry?
A segment must be exactly 100 units long at an angle of 35°30′ from the positive X-axis. The drawing accepts decimal-degree angle input, and the current point is already established.
Which relative polar entry specifies the required segment without rounding the stated angle?
In the LINE command, Dynamic Input is off and the current UCS uses the default Cartesian axes and angle direction. The first point is entered as 125,80. The next two points are entered as @−35,20 and @50<270°.
What absolute Cartesian coordinate is established by the final entry?
A line currently ends at 40,30 and must connect to the absolute point −20,−15. The current UCS uses default angle settings, and the next point will be entered with a relative polar coordinate.
Which entry most accurately reaches the required point?
@ symbol makes a coordinate relative to the last point, and the angle is measured counterclockwise from the positive X-axis by default.
Start by finding the displacement from (40,30) to (−20,−15): Δx=−20−40=−60 and Δy=−15−30=−45. The distance is (−60)2+(−45)2=3600+2025=5625=75. So the magnitude of 75 is confirmed. Next, find the angle. The reference angle is arctan(6045)=36.87°, but since both components are negative, the vector points into the third quadrant (down and to the left). The true angle is 180°+36.87°=216.87°. The correct entry is therefore @75<216.87°, confirming D.
Choice A (@75<36.87°) uses the reference angle only, pointing into the first quadrant — the exact opposite direction. Choice B (@75<143.13°) places the angle in the second quadrant, which would move up and to the left, not down. Choice C (75<216.87°) has the right angle but is missing the @ symbol, making it an absolute polar coordinate measured from the origin — a completely different point.
Always remember: @ = relative, no @ = absolute. When your displacement is negative in both X and Y, add 180° to your reference angle to land in the correct third-quadrant direction.