All questions
Question 1
While modifying a dimension style, a drafter finds that the dimension Text height control cannot be edited. The assigned text style was created with a fixed, nonzero height.
What should the drafter do to make text height controllable by the dimension style?
- Set the text style height to 0, then specify the required height in the dimension style. (correct answer)
- Set the dimension-style overall scale to 0, then redefine the text style at the plotted height.
- Enable annotative behavior for the text style, then retain its existing fixed nonzero height.
- Create an object-level text override, then increase the dimension-style text gap by the same amount.
Explanation: Whenever you see a question about dimension styles and text formatting in AutoCAD, focus on how text styles and dimension styles interact — specifically, which setting takes precedence when both define a text height.
In AutoCAD, a text style can store a fixed height value. When it does, that fixed height overrides any height setting defined in the dimension style, which is why the Text Height field appears grayed out and uneditable. The dimension style essentially says, "I'd set the height here, but the text style already locked it in." To regain control of text height at the dimension-style level, you must go back to the source — the text style itself — and set its height to 0. A height of 0 tells AutoCAD, "no fixed height is defined here; let the dimension style (or other style) decide." Once you make that change, the Text Height field in the dimension style becomes editable, and you specify the desired height there. This is exactly what A describes, making it the correct answer.
B is wrong because the overall scale factor controls proportional scaling of dimension components, not text height editability — setting it to 0 would actually break the dimension display entirely. C is wrong because enabling annotative behavior affects how the dimension scales across viewports, but it does not unlock a fixed-height text style's grip on the dimension text height. D is wrong because object-level text overrides and text gap adjustments are workarounds that don't address the root cause and would produce inconsistent results across your drawing.
As a study tip, remember: a nonzero text style height always wins. Set it to 0 whenever you want another style — dimension, table, or otherwise — to control the final size. Question 2
A company standard requires dimension text to remain between the extension lines whenever space becomes tight. If there is room for the text but not for both the text and arrowheads, the arrowheads must move outside first.
Which pair of dimension-style Fit settings most directly implements this standard?
- Choose Arrows as the first element moved outside and enable Always keep text between extension lines. (correct answer)
- Choose Text as the first element moved outside and disable Always keep text between extension lines.
- Choose Both text and arrows to move outside and enable Draw dimension line between extension lines.
- Choose Either text or arrows, best fit and disable Always keep text between extension lines.
Explanation: When AutoCAD can't fit everything between extension lines, the Fit tab in Dimension Style Manager controls which element moves outside first and whether text is ever allowed outside. These two settings work together, so you need to match both to the company standard described.
The standard has two rules: (1) text must always stay between extension lines, and (2) if space is tight but text fits, arrowheads move out first. This maps directly to A — setting the first element moved outside to Arrows ensures arrowheads relocate before text ever does, and enabling Always keep text between extension lines enforces the absolute requirement that text never escapes that boundary regardless of space.
Choice B is backwards: making text the first element moved outside directly contradicts the standard, which demands text stays inside. Disabling the "always keep text" option makes it worse by removing that protection entirely.
Choice C addresses a different setting altogether — Draw dimension line between extension lines controls the dimension line, not the priority of text versus arrows. Choosing "both text and arrows" to move simultaneously also skips the nuanced priority the standard requires.
Choice D uses Either text or arrows, best fit, which lets AutoCAD decide automatically based on what fits best. That sounds flexible, but it removes your control over priority — AutoCAD might move text outside when arrowheads alone could have moved instead. Disabling "always keep text" compounds the problem.
Study tip: On Fit-tab questions, always identify two settings — the move-first priority and the text-lock toggle. The standard in the question is your checklist; match each rule to its corresponding control.
Question 3
The named style PROJECT uses decimal linear dimensions with a precision of two decimal places. Angular dimensions created under the same standard must use decimal degrees with a precision of one decimal place, without changing the linear-dimension settings.
Which dimension-style workflow best isolates the angular formatting requirement?
- Apply an object-level precision override to every linear dimension so the parent style can use angular precision.
- Modify the primary-unit precision of PROJECT, then add a text suffix containing a degree symbol.
- Create an unrelated full style for angular dimensions and manually make it current before every angular command.
- Create a child style based on PROJECT, set Use for to angular dimensions, and modify its angular units. (correct answer)
Explanation: Whenever you see a question about dimension-style organization in AutoCAD, think about parent-child style inheritance. AutoCAD lets you create a child style that inherits all settings from a parent but overrides only specific dimension types — keeping everything clean and maintainable without duplicating work.
That's exactly what option D does. By creating a child style based on PROJECT and setting Use for to "Angular," you tell AutoCAD to apply that child's settings only when angular dimensions are placed. The child inherits the parent's decimal linear precision (two decimal places) automatically, and you simply modify the angular unit precision to one decimal place within the child. No manual style-switching, no risk of corrupting linear settings — the correct answer is D.
Option A misunderstands the problem entirely. Object-level overrides apply to individual dimension objects after placement, meaning you'd have to manually override every linear dimension — an unscalable, error-prone approach that defeats the purpose of styles.
Option B is dangerous: changing the primary-unit precision of PROJECT would alter all dimensions controlled by that style, breaking the two-decimal linear requirement. Adding a degree symbol as a text suffix is also a cosmetic hack, not a proper angular unit configuration.
Option C technically works but is operationally fragile. Creating a completely separate, unrelated style means you must remember to switch styles before every angular command. If you forget once, the wrong style is applied — and this approach abandons the organizational benefit of inheritance.
Study tip: On AutoCAD exam questions, whenever a scenario asks you to format one dimension type differently while preserving others, the answer almost always involves a child style scoped with Use for.
Question 4
Several dimensions are assigned to the approved style ARCH-DIM, but each has object-level overrides left from editing. The drafter wants to remove those overrides while preserving the dimensions' assigned named style.
Which operation is specifically designed to perform this cleanup?
- Run DIMSTYLE, rename ARCH-DIM, and make the renamed style current.
- Run DIMOVERRIDE, enter a blank override value to clear overrides, and select the affected dimension objects. (correct answer)
- Run MATCHPROP, copy properties from a line, and select the affected dimensions.
- Run EXPLODE, erase the resulting text, and recreate each dimension with ARCH-DIM.
Explanation: When you encounter a question about cleaning up dimension overrides in AutoCAD, the key distinction to hold in mind is the difference between a dimension's assigned style and any object-level overrides layered on top of it. Overrides are property changes made directly to individual dimension objects that deviate from the named style — and AutoCAD provides a dedicated tool to strip them away cleanly.
That tool is DIMOVERRIDE. When you run it and enter a blank (empty) value for the override variable, AutoCAD interprets this as an instruction to clear existing overrides on whichever dimension objects you select. The dimensions snap back to displaying exactly what their assigned style — in this case ARCH-DIM — dictates, without losing the style assignment itself. That's precisely what the passage requires, making B the correct answer.
The other choices each reflect a misunderstanding of the task. A is wrong because renaming ARCH-DIM doesn't touch object-level overrides at all; it just changes the style's name while overrides remain attached to the objects. C is a common trap — MATCHPROP copies properties from a source object, but if that source object also carries overrides, you'd be spreading the problem, not solving it; and if the source is a non-dimension (like a line), you'd corrupt the dimensions' properties entirely. D is a destructive workaround: exploding dimensions destroys their associativity and parametric behavior, which is something you should almost never do in professional drafting.
A good study habit here: memorize that DIMOVERRIDE is the surgical tool for override cleanup, while DIMSTYLE manages style definitions globally. Questions testing these two commands often try to blur that boundary.
Question 5
A dimension style must display a nominal size of 25.00 with an upper tolerance of +0.10 and a lower tolerance of −0.05. The nominal value must remain visible, and the two tolerance amounts must appear separately.
Which tolerance method and values should be configured?
- Use Basic, with upper value 0.10 and lower value 0.05.
- Use Symmetrical, with upper value 0.10 and lower value 0.05.
- Use Limits, with upper value 0.10 and lower value 0.05.
- Use Deviation, with upper value 0.10 and lower value 0.05. (correct answer)
Explanation: When configuring tolerances in AutoCAD's Dimension Style Manager, the key question to ask yourself is: does the nominal value need to remain visible, and do the upper and lower tolerances differ from each other? That combination points to a specific method.
Deviation is the tolerance format that displays the nominal dimension with a separate upper tolerance (+0.10) stacked above a separate lower tolerance (−0.05) — exactly what the passage requires. The nominal value 25.00 stays visible, and since the two tolerance amounts differ, they appear independently. This makes D the correct answer.
Here's why each other option fails. A (Basic) simply encloses the dimension in a rectangular box, indicating a theoretically exact dimension used in geometric tolerancing — it shows no tolerance values at all. B (Symmetrical) applies a single ± value to both sides equally, so it can only express tolerances where the upper and lower amounts are identical; you cannot enter two different values. Since +0.10=−0.05, Symmetrical cannot represent this requirement. C (Limits) replaces the nominal dimension entirely with the calculated upper and lower limit values (25.10 above, 24.95 below) — the nominal 25.00 disappears, which violates the passage's requirement that it remain visible.
A useful memory trick: think "Deviation = different." When the upper and lower tolerances deviate from each other, Deviation is your method. If they're equal, use Symmetrical; if you want only calculated limits, use Limits; if the value is theoretically exact, use Basic. Question 6
A manufacturing drawing uses millimeters as its primary dimension units. The same dimensions must show inches in brackets as alternate units. A measured length of 254 mm must display as 10.00 in in the alternate value.
Which alternate-unit settings should be applied to the dimension style?
- Use a multiplier of exactly 0.1 and set alternate-unit precision to two decimal places.
- Use a multiplier of exactly 25.4 and set alternate-unit precision to two decimal places.
- Use a multiplier of approximately 0.0393701 and set alternate-unit precision to two decimal places. (correct answer)
- Use a multiplier of approximately 0.0393701 and change the primary-unit scale factor instead.
Explanation: Whenever you see a question about alternate units in AutoCAD dimension styles, focus on one core concept: the alternate-unit multiplier converts the primary unit value into the alternate unit value. AutoCAD takes the measured dimension (in your primary units) and multiplies it by whatever factor you supply to produce the alternate display.
Since the drawing measures in millimeters and you want inches in brackets, you need to convert mm → in. The correct conversion is:
1 in=25.4 mm⇒1 mm=25.41≈0.0393701 in
So for a measured value of 254 mm:
254×0.0393701≈10.00 in
Setting the multiplier to 0.0393701 with two decimal places of precision gives exactly the display shown — confirming C is correct.
A uses 0.1, which would turn 254 mm into 25.40, not 10.00. This is a tempting trap if you confuse centimeter conversion with inch conversion.
B uses 25.4, which is the number of millimeters per inch — the inverse of what you need. Applying it would multiply 254 mm×25.4=6451.6, wildly incorrect.
D uses the right multiplier but applies it to the primary-unit scale factor, which would distort all primary dimensions globally — not just the alternate display. Alternate units have their own dedicated multiplier field precisely to avoid this.
As a study tip: always ask yourself which direction the conversion flows. The alternate multiplier should be the factor that takes one primary unit and gives you the equivalent in alternate units. Question 7
A dimension standard requires each extension line to begin 1.5 mm away from the measured geometry and continue 2.0 mm beyond the dimension line. Fixed-length extension lines are not enabled.
Which dimension-style settings should be entered?
- Set Extend beyond dimension lines to 1.5 mm and Offset from origin to 2.0 mm.
- Set Offset from origin to 1.5 mm and Extend beyond dimension lines to 2.0 mm. (correct answer)
- Set Baseline spacing to 1.5 mm and Dimension line extension to 2.0 mm.
- Set Text gap to 1.5 mm and Arrow size to 2.0 mm.
Explanation: When working with dimension styles in AutoCAD, questions about extension lines test whether you can distinguish between two specific settings that control opposite ends of the extension line itself — where it starts and where it ends.
An extension line has two key measurements: how far it stands off from the object being dimensioned, and how far it overshoots the dimension line. In AutoCAD's Dimension Style Manager (under the Lines tab), Offset from origin controls the gap between the measured geometry and the start of the extension line, while Extend beyond dimension lines controls how far the extension line continues past the dimension line. The passage states the line must begin 1.5 mm away from the geometry and extend 2.0 mm beyond the dimension line — so Offset from origin = 1.5 mm and Extend beyond dimension lines = 2.0 mm. That makes B correct.
A is a reversal trap — it swaps the two values, assigning 1.5 mm to "Extend beyond" and 2.0 mm to "Offset from origin," which is the opposite of what the standard requires. C introduces Baseline spacing and Dimension line extension, neither of which controls extension line offset or overshoot — baseline spacing governs the gap between stacked baseline dimensions, while dimension line extension applies to oblique or architectural ticks. D references Text gap and Arrow size, which are entirely unrelated to extension line placement.
A reliable memory aid: offset = the gap at the origin (object side), extend = how far it goes beyond the dimension line. Swap those two, and you'll fall right into the trap AutoCAD exams are designed to set. Question 8
A drawing contains dimensions assigned to the named style MECH-25. One dimension has an object-level arrow-size override; the others have no overrides. The MECH-25 style is modified to increase both arrow size and text height.
After the style modification, what should happen to the existing dimensions?
- All dimensions retain their original appearance because style changes affect only dimensions created afterward.
- All dimensions adopt both changes because modifying a named style automatically deletes object-level overrides.
- All dimensions adopt the new text height, but the overridden dimension retains its overridden arrow size. (correct answer)
- Only the overridden dimension updates because an override keeps that dimension linked to the modified style.
Explanation: When working with AutoCAD dimension styles, the key concept to understand is the relationship between named styles and object-level overrides. A named style like MECH-25 acts as a parent that controls all dimensions assigned to it — but only for properties that haven't been individually overridden at the object level.
Here's how the hierarchy works: when you modify a named dimension style, all dimensions using that style automatically regenerate to reflect the changes. However, if a specific dimension has an object-level override for a particular property, that override takes precedence over the style for that property only. The override doesn't sever the dimension's connection to the style — it simply shields one property from being updated.
In this scenario, MECH-25 is modified to change both arrow size and text height. Every dimension adopts the new text height because none of them have a text-height override. The one dimension with an arrow-size override, however, keeps its overridden value while still inheriting the text height change. This confirms that C is correct.
Choice A is wrong because style modifications absolutely do affect existing dimensions — AutoCAD regenerates them immediately. Choice B is wrong because modifying a style does not delete object-level overrides; those overrides persist until you explicitly remove them. Choice D is wrong because it inverts the logic — the overridden dimension does not update its arrow size precisely because the override blocks that specific change, and the non-overridden dimensions update just fine too.
A useful rule of thumb: think of overrides as a shield that protects only the overridden property, not the entire dimension.
Question 9
A model-space dimension must appear with text that is 2.5 mm high on paper in two layout viewports. One viewport is scaled at 1:50 and the other at 1:100. Annotation visibility is configured so that an annotative object appears only in viewports whose scales are assigned to that object.
Which dimension-style workflow best satisfies the requirement without creating two separate dimensions?
- Use an annotative style with a 2.5 mm text height and assign both viewport annotation scales to the dimension. (correct answer)
- Use a nonannotative style with a 2.5 mm text height and set its overall scale to 100.
- Use an annotative style with a 125 mm text height and assign only the 1:50 annotation scale.
- Use a nonannotative style with a 250 mm text height and leave its overall scale set to 1.
Explanation: Whenever you see a question about dimensions appearing at a consistent size across multiple viewports, think about AutoCAD's annotative workflow — it exists precisely to solve this problem without duplicating objects.
An annotative dimension style lets you set the desired paper-space text height once (2.5 mm) and then assign multiple annotation scales to that single dimension object. AutoCAD automatically calculates the correct model-space size for each scale. For a 1:50 viewport, it scales the geometry up by 50; for a 1:100 viewport, by 100. One dimension, two scales assigned, correct appearance in both viewports — that's exactly what A describes, making it the correct workflow.
B is wrong because a nonannotative style with an overall scale of 100 would display correctly only in the 1:100 viewport. In the 1:50 viewport, the text would appear twice as large as intended (5 mm instead of 2.5 mm). Overall scale is a single fixed multiplier, not viewport-aware.
C sets an annotative style but assigns only the 1:50 scale and uses a text height of 125 mm — which is wrong on both counts. The paper-space height should be 2.5 mm, not 125 mm, and omitting the 1:100 scale means the dimension won't appear in that viewport at all.
D uses a nonannotative style with a 250 mm model-space height and no scale compensation, producing wildly oversized text in both viewports.
Study tip: On AutoCAD questions, "one object, multiple viewports, consistent paper size" is the signature prompt for annotative objects — remember that you assign scales to the object, not to the style. Question 10
Dimensions will be placed in model space using a nonannotative dimension style. The drawing will be plotted through a viewport at 1:50, and the required plotted dimension-text height is 2.5 mm.
Which style configuration correctly uses the intended paper text height and the dimension-style overall scale?
- Set text height to 2.5 mm and set the overall dimension scale to 50. (correct answer)
- Set text height to 125 mm and set the overall dimension scale to 50.
- Set text height to 2.5 mm and leave the overall dimension scale at 1.
- Set text height to 0.05 mm and set the overall dimension scale to 50.
Explanation: When working with non-annotative dimensions in model space, you need to understand two separate settings: the dimension text height stored in the style, and the overall dimension scale that multiplies all dimension components before they reach paper.
The core rule is this: for a non-annotative style, AutoCAD multiplies the text height by the overall scale to determine the final model-space size. When plotted through a viewport, that model-space size is then divided by the viewport scale to produce the paper height. So the formula works out to:
Model text height=Paper text height×Viewport scale
This means you store the intended paper height (2.5 mm) in the style itself, then set the overall dimension scale equal to the viewport scale (50) so AutoCAD inflates every dimension component — text, arrows, gaps — to the correct model-space size. At plot time, the 1:50 viewport shrinks everything back down to exactly 2.5 mm. That makes A correct.
B is wrong because setting the text height to 125 mm double-applies the scale — the style would record the already-inflated model-space value, and then the overall scale of 50 would multiply it again, producing text 50× too large on paper.
C is wrong because leaving the overall scale at 1 means the text stays 2.5 mm in model space. When the 1:50 viewport shrinks it, the plotted height becomes 0.05 mm — invisible.
D is wrong for the inverse reason: 0.05 mm×50=2.5 mm in model space, which plots correctly, but this workflow stores a nonsensical sub-millimeter value in the style, making future editing confusing and error-prone.
As a study tip: always store the paper height in the style and use the overall scale as your multiplier — never pre-calculate the inflated model size and bake it in.