Autodesk Fusion 360 Quiz: Parametric Equations
10 questions · exam conditions
0:00
Parametric EquationsQuestion 1 of 10

A designer defines the user parameters overallWidth=120mmoverallWidth = 120 mm, edgeMargin=8mmedgeMargin = 8 mm, and ribCount=5ribCount = 5. The width of each rib is controlled by ribWidth=(overallWidth2edgeMargin)/ribCountribWidth = (overallWidth - 2 * edgeMargin) / ribCount. Later, overallWidthoverallWidth is changed to 150mm150 mm and edgeMarginedgeMargin is changed to 10mm10 mm.

After Fusion recalculates the parameters, what is the value of ribWidthribWidth?

The parameter evaluates to 22mm22 mm because the original rib width is retained.
The parameter evaluates to 26mm26 mm after both edge margins are removed.
The parameter evaluates to 28mm28 mm after only one edge margin is removed.
The parameter evaluates to 32.5mm32.5 mm because the remaining width forms four spaces.
← Back to quizzes

Autodesk Fusion 360 Quiz

Autodesk Fusion 360 Quiz: Parametric Equations

Practice Parametric Equations in Autodesk Fusion 360 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 Parametric Equations, giving you a quick way to practice the rules, question types, and explanations that matter most for Autodesk Fusion 360.

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 designer defines the user parameters overallWidth=120mmoverallWidth = 120 mm, edgeMargin=8mmedgeMargin = 8 mm, and ribCount=5ribCount = 5. The width of each rib is controlled by ribWidth=(overallWidth2edgeMargin)/ribCountribWidth = (overallWidth - 2 * edgeMargin) / ribCount. Later, overallWidthoverallWidth is changed to 150mm150 mm and edgeMarginedgeMargin is changed to 10mm10 mm.

After Fusion recalculates the parameters, what is the value of ribWidthribWidth?

  1. The parameter evaluates to 22mm22 mm because the original rib width is retained.
  2. The parameter evaluates to 26mm26 mm after both edge margins are removed. (correct answer)
  3. The parameter evaluates to 28mm28 mm after only one edge margin is removed.
  4. The parameter evaluates to 32.5mm32.5 mm because the remaining width forms four spaces.
Explanation: When working with Fusion 360 user parameters, the key concept to understand is that formula-based parameters are live expressions — they don't store a static result, they store the formula itself. When any upstream parameter changes, Fusion automatically recalculates every dependent parameter using the updated values. Here, ribWidth=(overallWidth2×edgeMargin)/ribCountribWidth = (overallWidth - 2 \times edgeMargin) / ribCount. After the changes, substitute the new values directly: (1502×10)/5=(15020)/5=130/5=26 mm(150 - 2 \times 10) / 5 = (150 - 20) / 5 = 130 / 5 = 26 \text{ mm}. That confirms B is correct — Fusion faithfully re-evaluates the entire expression with the updated inputs. Choice A is a common misconception: it assumes Fusion "locks in" the original calculated value of 20 mm20 \text{ mm} per rib from the initial parameters. This would only be true if you had typed a hard-coded number instead of a formula. Choice C reflects an arithmetic error where only one edge margin is subtracted — computing (15010)/5=28(150 - 10) / 5 = 28 — ignoring that the formula multiplies edgeMarginedgeMargin by 2 to account for both sides. Choice D divides 130130 by 4 instead of 5, confusing ribCountribCount with the number of spaces between ribs, which is a different design pattern entirely. A useful strategy: whenever a question shows a formula-driven parameter, treat it like a spreadsheet cell — mentally substitute the current values and compute fresh. Never assume Fusion retains old evaluated results. This parametric dependency chain is one of Fusion's most powerful (and frequently tested) features.

Question 2

A ramp angle must remain driven by two user parameters: rise=20mmrise = 20 mm and run=50mmrun = 50 mm. A later design variant doubles both values while preserving the same proportion.

Which equation correctly defines the ramp angle and keeps it unchanged when both linear parameters are doubled?

  1. rampAngle=rise/runrampAngle = rise / run, which evaluates to the unitless ratio 0.40.4 rather than a valid angle.
  2. rampAngle=atan(run/rise)rampAngle = atan(run / rise), which evaluates to approximately 68.2deg68.2 deg.
  3. rampAngle=atan(rise)/runrampAngle = atan(rise) / run, which converts the rise before dividing by length.
  4. rampAngle=atan(rise/run)rampAngle = atan(rise / run), which evaluates to approximately 21.8deg21.8 deg. (correct answer)
Explanation: Whenever you see a question about driving an angle from linear dimensions in Fusion 360, think about trigonometry and parametric scaling. The core challenge here is writing a formula that (1) produces a true angle value and (2) remains stable when both parameters are multiplied by the same factor. The right tool is the arctangent function, which converts a unitless ratio of lengths into an angle. With rise=20mmrise = 20\,mm and run=50mmrun = 50\,mm, the ramp angle is the angle whose tangent equals the opposite side over the adjacent side: rampAngle=atan(rise/run)=atan(20/50)=atan(0.4)21.8°rampAngle = atan(rise / run) = atan(20/50) = atan(0.4) \approx 21.8°. Crucially, if both values double to 40 mm and 100 mm, the ratio 40/100=0.440/100 = 0.4 is identical, so the angle stays at 21.8°21.8°. Answer D is correct. A fails because rise/runrise / run yields a dimensionless number (0.4), not an angle — Fusion 360 cannot assign that to an angular parameter meaningfully, and it doesn't represent degrees or radians. B inverts the arguments, computing atan(run/rise)=atan(50/20)68.2°atan(run / rise) = atan(50/20) \approx 68.2°, which is actually the complementary angle — the angle from vertical rather than from horizontal. This is a classic swap trap. C applies atanatan to riserise alone (treating millimeters as a raw number) and then divides by runrun, which is mathematically nonsensical — you cannot divide an angle by a length and get a meaningful result. Study tip: Always remember that atan(opposite/adjacent)atan(\text{opposite}/\text{adjacent}) gives the angle from the base. When a Fusion 360 formula must survive proportional scaling, ratios of like units are your safest building block.

Question 3

A designer wants two equal modules separated by a gap. The designer enters assemblyWidth=2moduleWidth+gapassemblyWidth = 2 * moduleWidth + gap and then enters moduleWidth=(assemblyWidthgap)/2moduleWidth = (assemblyWidth - gap) / 2.

Fusion reports a dependency problem. Which change best preserves the intended relationship without creating a circular equation?

  1. Reverse the order of the two equations so moduleWidthmoduleWidth appears earlier in the parameter list, allowing Fusion to resolve evaluation order.
  2. Replace the second equation with moduleWidth=assemblyWidth/2gap/2moduleWidth = assemblyWidth / 2 - gap / 2, which isolates moduleWidthmoduleWidth on the left side.
  3. Make moduleWidthmoduleWidth and gapgap independent inputs, then derive assemblyWidth=2moduleWidth+gapassemblyWidth = 2 * moduleWidth + gap as the single dependent parameter. (correct answer)
  4. Make assemblyWidthassemblyWidth and moduleWidthmoduleWidth independent inputs, then define gapgap from each separately, keeping both equations active.
Explanation: Whenever you work with parameters in Fusion 360, think about dependency direction: each parameter must trace back to independent inputs without looping back on itself. If parameter A is defined using B, and B is defined using A, Fusion cannot determine which to evaluate first — that's a circular dependency error. Here, the designer tries to define assemblyWidthassemblyWidth from moduleWidthmoduleWidth and gapgap, then turn around and define moduleWidthmoduleWidth from assemblyWidthassemblyWidth and gapgap. Both parameters are simultaneously trying to be both cause and effect — an unsolvable loop. Option C breaks the loop cleanly: designate moduleWidthmoduleWidth and gapgap as independent inputs (you type their values directly), then let assemblyWidth=2×moduleWidth+gapassemblyWidth = 2 \times moduleWidth + gap be the single derived output. Now the dependency flows in one direction only — Fusion always knows what to calculate and what to start from. Option A is a trap. Fusion 360's parameter evaluation isn't simply resolved by reordering entries in the parameter table — a circular reference remains circular regardless of which equation appears first in the list. Option B is mathematically equivalent to the original second equation — moduleWidth=assemblyWidth/2gap/2moduleWidth = assemblyWidth / 2 - gap / 2 is just an algebraic rearrangement. Rewriting it differently doesn't remove the circular dependency; the logical loop still exists. Option D introduces a new contradiction: if both assemblyWidthassemblyWidth and moduleWidthmoduleWidth are independent, you'd have two separate equations each claiming to define gapgap, creating a conflict rather than resolving one. Study tip: In Fusion 360, always identify which values are inputs and which are outputs before writing parameter equations — you can never have a parameter appear on both sides of your system.

Question 4

A linear pattern places the first hole at the start of a usable region. The parameters are panelLength=410mmpanelLength = 410 mm, endMargin=20mmendMargin = 20 mm, and pitch=75mmpitch = 75 mm. The usable region is defined by usableLength=panelLength2endMarginusableLength = panelLength - 2 * endMargin. Pattern quantity includes the original hole.

Which expression returns the largest whole-number hole count that fits without exceeding the usable region?

  1. holeCount=floor(usableLength/pitch)holeCount = floor(usableLength / pitch), which returns 44 holes.
  2. holeCount=ceil(usableLength/pitch)+1holeCount = ceil(usableLength / pitch) + 1, which returns 66 holes.
  3. holeCount=floor(panelLength/pitch)+1holeCount = floor(panelLength / pitch) + 1, which returns 66 holes.
  4. holeCount=floor(usableLength/pitch)+1holeCount = floor(usableLength / pitch) + 1, which returns 55 holes. (correct answer)
Explanation: When designing a linear hole pattern, the core challenge is translating a physical spacing constraint into a hole count formula. The key insight is that if the first hole sits at the start of the usable region, the last hole's position equals (holeCount1)×pitch(holeCount - 1) \times pitch. That span must not exceed usableLengthusableLength. Start by computing the usable length: usableLength=4102(20)=370mmusableLength = 410 - 2(20) = 370\,mm. Dividing by pitch gives 370/75=4.933...370 / 75 = 4.933... This decimal represents how many intervals fit. Since the first hole is already placed (it counts as hole #1), the total hole count is the number of intervals plus one. Taking the floor first prevents exceeding the boundary: floor(4.933)+1=4+1=5floor(4.933) + 1 = 4 + 1 = 5. That's exactly what D computes, making it correct. You can verify: hole 5 sits at (51)×75=300mm(5-1) \times 75 = 300\,mm, which is within the 370 mm usable region. A uses floor(usableLength/pitch)floor(usableLength / pitch) without adding 1, returning 4 holes. This forgets that floorfloor gives the number of gaps, not holes — you always need one more hole than gaps. B applies ceilceil instead of floorfloor, which rounds up before adding 1, giving 6 holes. Hole 6 would land at 375mm375\,mm, which exceeds the 370 mm usable region — a boundary violation. C divides panelLengthpanelLength (410 mm) instead of usableLengthusableLength (370 mm), ignoring the end margins entirely. This produces an inflated count that places holes inside the protected margin zones. As a rule of thumb: for "fits within" problems, always use floorfloor (not ceilceil), use the constrained region (not the total length), and remember that holes = intervals + 1.

Question 5

A fillet radius is defined by filletRadius=wallThicknessmachiningAllowancefilletRadius = wallThickness - machiningAllowance. Initially, wallThickness=3mmwallThickness = 3 mm and machiningAllowance=1.5mmmachiningAllowance = 1.5 mm. Later, the wall thickness is changed to 1mm1 mm while the allowance remains unchanged.

What is the most likely result when Fusion recomputes the design history?

  1. Fusion clamps filletRadiusfilletRadius to 0mm0 mm and keeps the fillet feature valid.
  2. The parameter becomes 0.5mm-0.5 mm, and the fillet feature reports an invalid radius. (correct answer)
  3. Fusion retains the previous 1.5mm1.5 mm radius until the feature is manually edited.
  4. The fillet changes direction and creates an outward radius of 0.5mm0.5 mm.
Explanation: Whenever you see a question about parametric modeling in Fusion 360, think about how the timeline recomputes feature dependencies mathematically — Fusion doesn't "protect" you from invalid geometry; it simply evaluates the formula and reports the result. Here, the formula is filletRadius=wallThicknessmachiningAllowancefilletRadius = wallThickness - machiningAllowance. With the original values: 31.5=1.5 mm3 - 1.5 = 1.5 \text{ mm}, which is valid. After the change: 11.5=0.5 mm1 - 1.5 = -0.5 \text{ mm}. A fillet radius cannot be negative — it has no geometric meaning — so Fusion flags the feature as broken during timeline recomputation. This makes B correct: the parameter resolves to 0.5 mm-0.5 \text{ mm} and the fillet feature throws an error. A is wrong because Fusion does not silently clamp parametric values to safe minimums. It evaluates the expression faithfully and surfaces the error rather than hiding it — clamping would mask design intent and conceal real problems. C is wrong because Fusion's parametric engine doesn't "freeze" old values when upstream parameters change; the entire history recomputes top-to-bottom on every edit, so stale values simply don't persist. D is wrong because a negative radius doesn't flip the fillet's direction — there is no such behavior in Fusion's geometry kernel. A negative radius is geometrically undefined, not a reversal. As a study tip, remember that Fusion 360's parametric timeline is unforgiving by design: garbage in, error out. Any time you see a driven parameter that could cross zero or become negative due to upstream changes, expect a feature failure — not a silent correction.

Question 6

A design mixes units. The parameter frameWidthframeWidth is set to 10in10 in, while sideMarginsideMargin is set to 25mm25 mm. A millimeter-based parameter is defined as openingWidth=frameWidth2sideMarginopeningWidth = frameWidth - 2 * sideMargin.

What value should Fusion calculate for openingWidthopeningWidth after performing unit conversion?

  1. Approximately 229mm229 mm, equivalent to subtracting only one side margin.
  2. Approximately 304mm304 mm, equivalent to adding both side margins.
  3. Approximately 204mm204 mm, or approximately 8.03in8.03 in. (correct answer)
  4. Approximately 200mm200 mm, using 25mm25 mm as an exact inch conversion.
Explanation: When Fusion 360 evaluates parameters with mixed units, it automatically converts everything to a common unit before calculating. This is the core concept being tested — understanding that Fusion handles unit conversion internally, so you need to track what each value becomes in millimeters. Here's the math: frameWidth=10in=10×25.4=254mmframeWidth = 10\,in = 10 \times 25.4 = 254\,mm. Then: openingWidth=254mm2×25mm=25450=204mmopeningWidth = 254\,mm - 2 \times 25\,mm = 254 - 50 = 204\,mm. Converting back: 204mm÷25.48.03in204\,mm \div 25.4 \approx 8.03\,in. This confirms C is correct — Fusion performs the conversion precisely and returns approximately 204mm204\,mm or 8.03in8.03\,in. Choice A claims approximately 229mm229\,mm, which would result from subtracting only one sideMarginsideMargin (25425=229254 - 25 = 229). This ignores the factor of 2 in the formula — a careless reading mistake. Choice B claims approximately 304mm304\,mm, which comes from adding both margins instead of subtracting (254+50=304254 + 50 = 304) — a sign error that inverts the operation entirely. Choice D claims approximately 200mm200\,mm, implying 10in=250mm10\,in = 250\,mm using a rounded conversion of 25mm/in25\,mm/in instead of the precise 25.4mm/in25.4\,mm/in. Fusion uses exact conversion factors, not approximations. As a study tip, whenever you see mixed-unit parameters on the Fusion 360 exam, always convert inches to millimeters using 1in=25.4mm1\,in = 25.4\,mm exactly before evaluating the expression. Rounding that conversion factor is one of the most common traps in these questions.

Question 7

A feature width is controlled by featureWidth=baseWidth+2clearancemultiplierfeatureWidth = baseWidth + 2 * clearance * multiplier. The current parameters are baseWidth=8mmbaseWidth = 8 mm, clearance=0.5mmclearance = 0.5 mm, and multiplier=3multiplier = 3.

What value does Fusion calculate using the stated expression and normal operator precedence?

  1. 27mm27 mm, because the entire sum is multiplied by 33.
  2. 11mm11 mm, because multiplication is completed before addition. (correct answer)
  3. 12mm12 mm, because the three terms are added before evaluation.
  4. 10mm10 mm, because the previous multiplier value is retained.
Explanation: Whenever you see a parametric expression in Fusion 360, treat it exactly like standard algebraic math — operator precedence rules apply just as they do in any formula. Multiplication and division are always evaluated before addition and subtraction, regardless of the order terms appear. Working through featureWidth=baseWidth+2clearancemultiplierfeatureWidth = baseWidth + 2 * clearance * multiplier, you first resolve all multiplication: 20.53=3 mm2 * 0.5 * 3 = 3 \text{ mm}. Then you add the result to the base: 8+3=11 mm8 + 3 = 11 \text{ mm}. That confirms B is correct. Choice A (27 mm27 \text{ mm}) reflects a misreading of the expression as (baseWidth+2clearance)multiplier(baseWidth + 2 * clearance) * multiplier, which would be (8+1)3=27(8 + 1) * 3 = 27. This would only be valid if parentheses explicitly grouped the addition first — they don't. Choice C (12 mm12 \text{ mm}) imagines all three numeric values are simply summed before any evaluation: 8+0.5+3=11.58 + 0.5 + 3 = 11.5, or perhaps 8+1+3=128 + 1 + 3 = 12 treating the terms loosely — either way, it ignores the multiplication operators entirely. Choice D (10 mm10 \text{ mm}) invents the idea that Fusion "remembers" a previous multiplier value; parameters in Fusion always use the currently defined value, and there is no such retention behavior. As a study tip: when evaluating any Fusion 360 formula, mentally underline every multiplication and division operation first, resolve those clusters, and only then handle addition and subtraction. This prevents the most common trap of reading expressions left-to-right as if all operators share equal priority.

Question 8

A hollow housing uses the user parameters outerWidthouterWidth and wallThicknesswallThickness. Its internal width must preserve the same wall thickness on both sides, and the Shell feature must use that same thickness.

Which pair of parameter expressions most directly preserves this design intent when either user parameter changes?

  1. innerWidth=outerWidth2wallThicknessinnerWidth = outerWidth - 2 * wallThickness and shellThickness=wallThicknessshellThickness = wallThickness (correct answer)
  2. innerWidth=outerWidthwallThicknessinnerWidth = outerWidth - wallThickness and shellThickness=wallThicknessshellThickness = wallThickness
  3. innerWidth=outerWidth2wallThicknessinnerWidth = outerWidth - 2 * wallThickness and shellThickness=2wallThicknessshellThickness = 2 * wallThickness
  4. innerWidth=outerWidthwallThickness/2innerWidth = outerWidth - wallThickness / 2 and shellThickness=wallThickness/2shellThickness = wallThickness / 2
Explanation: When working with parametric design in Fusion 360, questions about design intent test whether your expressions correctly capture the geometric relationship — not just a plausible-looking formula. Here, you have a hollow housing with walls on both sides, so the internal width must account for material removed from the left wall and the right wall simultaneously. If outerWidthouterWidth represents the total external dimension, then the inner cavity is reduced by wallThicknesswallThickness on the left and wallThicknesswallThickness on the right — a total reduction of 2×wallThickness2 \times wallThickness. That makes innerWidth=outerWidth2wallThicknessinnerWidth = outerWidth - 2 * wallThickness geometrically correct. Additionally, the Shell feature should match the same wall thickness the user defined, so shellThickness=wallThicknessshellThickness = wallThickness keeps everything synchronized to a single source of truth. This is exactly what A gives you. B subtracts only one wall thickness, meaning the model would treat the housing as if one side had no wall at all — a common trap when students forget that width spans two sides. C gets the inner width right but doubles the shell thickness unnecessarily; now your shell walls are twice as thick as intended, violating the design intent for the Shell feature. D subtracts only half the wall thickness from the inner width and halves the shell thickness — both values are wrong, producing thinner-than-intended walls on both parameters. A useful strategy: whenever a dimension crosses a symmetric feature (both sides, both ends, top and bottom), mentally ask "how many sides does this span?" That multiplier belongs in your expression. Keep your Shell feature tied directly to the same user parameter — never a derived multiple — so changing one value updates everything consistently.

Question 9

Six slot centers must be distributed in a straight line. The first and last centers are each offset from the corresponding panel end by endOffsetendOffset. The parameters are updated to panelLength=260mmpanelLength = 260 mm, endOffset=20mmendOffset = 20 mm, and slotCount=6slotCount = 6.

Which expression and resulting value correctly maintain equal center-to-center spacing, including both endpoint slot centers?

  1. spacing=(panelLength2endOffset)/slotCountspacing = (panelLength - 2 * endOffset) / slotCount, producing approximately 36.67mm36.67 mm.
  2. spacing=panelLength/(slotCount1)spacing = panelLength / (slotCount - 1), producing 52mm52 mm.
  3. spacing=(panelLength2endOffset)/(slotCount1)spacing = (panelLength - 2 * endOffset) / (slotCount - 1), producing 44mm44 mm. (correct answer)
  4. spacing=(panelLengthendOffset)/(slotCount1)spacing = (panelLength - endOffset) / (slotCount - 1), producing 48mm48 mm.
Explanation: When distributing equally spaced points along a line where the first and last points sit at fixed offsets from each end, you need to think carefully about two things: how much usable space exists, and how many gaps exist between the points. With panelLength=260mmpanelLength = 260\,mm, endOffset=20mmendOffset = 20\,mm, and slotCount=6slotCount = 6, the first slot sits 20 mm from the left end and the last sits 20 mm from the right end. That leaves a usable span of 2602(20)=220mm260 - 2(20) = 220\,mm between the two endpoint slot centers. Now here's the critical insight: 6 slots create only 5 gaps between them. So the correct spacing is 2205=44mm\frac{220}{5} = 44\,mm, which is exactly what option C gives you: (panelLength2endOffset)/(slotCount1)(panelLength - 2 \cdot endOffset) / (slotCount - 1). Option A makes the right move subtracting both offsets but divides by slotCount=6slotCount = 6 instead of 5, treating gaps as if there were one extra — this would be correct only if you were placing slots between the endpoints, not at them. Option B ignores the offsets entirely and divides the full panel length by slotCount1slotCount - 1, producing 52 mm — an expression that would place slots at the panel's very ends with no offset. Option D only subtracts one endOffset rather than both, leaving an asymmetric, incorrect span. A reliable tip: whenever you see equally spaced points including both endpoints, remember that n points create n − 1 gaps. Always subtract both offsets before dividing, and divide by slotCount1slotCount - 1, not slotCountslotCount.

Question 10

A pocket must be deeper than a plate by a scaled amount plus a fixed finishing allowance. The user parameters are plateThickness=3mmplateThickness = 3 mm, depthScale=1.25depthScale = 1.25, and finishAllowance=0.5mmfinishAllowance = 0.5 mm.

Which expression gives a pocket depth of 4.25mm4.25 mm while remaining dimensionally valid?

  1. pocketDepth=plateThicknessdepthScale+finishAllowancepocketDepth = plateThickness * depthScale + finishAllowance (correct answer)
  2. pocketDepth=(plateThickness+finishAllowance)depthScalepocketDepth = (plateThickness + finishAllowance) * depthScale
  3. pocketDepth=plateThickness(depthScale+finishAllowance)pocketDepth = plateThickness * (depthScale + finishAllowance)
  4. pocketDepth=plateThickness+depthScale+finishAllowancepocketDepth = plateThickness + depthScale + finishAllowance
Explanation: When building parametric expressions in Fusion 360, always translate the written specification into math before touching the parameter dialog. The problem states: scale the plate thickness first, then add a fixed finishing allowance on top. That sequential structure is your guide. Following that logic, plateThickness×depthScaleplateThickness \times depthScale gives 3×1.25=3.75mm3 \times 1.25 = 3.75 \, mm, and adding finishAllowancefinishAllowance gives 3.75+0.5=4.25mm3.75 + 0.5 = 4.25 \, mm. Option A captures this exactly and is dimensionally valid — multiplying millimeters by a unitless scale factor yields millimeters, and adding another millimeter value is consistent. The distractors each introduce a different structural error. Option B applies the scale to the sum of plate thickness and finish allowance — (3+0.5)×1.25=4.375mm(3 + 0.5) \times 1.25 = 4.375 \, mm — which incorrectly scales the finishing allowance as well, inflating the result. Option C adds the finish allowance inside the scaling factor: 3×(1.25+0.5)=5.25mm3 \times (1.25 + 0.5) = 5.25 \, mm. This is also dimensionally suspect, since depthScaledepthScale is unitless but finishAllowancefinishAllowance carries units of mm — adding them is a unit mismatch, not just arithmetically wrong. Option D simply sums all three values with no scaling at all: 3+1.25+0.5=4.75mm3 + 1.25 + 0.5 = 4.75 \, mm, ignoring the multiplicative relationship entirely. A reliable strategy: before writing any Fusion 360 parameter expression, underline the order of operations described in words. Phrases like "scaled amount plus a fixed allowance" tell you scaling happens first, addition happens second — and that maps directly to Answer A.