Drawing a Straight Segment — Basic Input To create a straight line segment in AutoCAD, is the expected workflow simply to specify a start point and an end point (via mouse pick or coordinate entry), after which the software draws the segment between those points?
-
ACorrect
-
BIncorrect
-
COnly with polar tracking off
-
DOnly by entering length and angle first
-
EPartially correct
Answer
Correct Answer: Correct
Explanation
Introduction / Context:The question evaluates understanding of AutoCAD's most fundamental geometry creation: the line segment. Mastering point specification methods (mouse, direct distance, absolute/relative coordinates) is essential before moving to more advanced commands and constraints.
Given Data / Assumptions:
- The user invokes the LINE tool or a similar command.
- Coordinate input can be via picks, typed distances and angles, or snaps.
- Ortho/polar tracking may be on or off; either way, two points define a unique straight segment.
Concept / Approach:A straight line is fully defined by two points. AutoCAD prompts: Specify first point, then Specify next point. Additional segments can be chained by specifying subsequent points; pressing Enter or Esc ends the command. Accuracy relies on object snaps and numeric input rather than freehand motion.
Step-by-Step Solution:1) Start the LINE command (toolbar, ribbon, or type LINE/L).2) Pick or enter the start point (e.g., 0,0).3) Pick or enter the end point (e.g., @100<0 to draw 100 units at 0 degrees).4) End the command or continue adding connected segments as needed.
Verification / Alternative check:Use object snaps (END, MID, CEN) to anchor endpoints; query the resulting segment with LIST or DIST to confirm coordinates and length match the entered values.
Why Other Options Are Wrong:“Incorrect” denies the core behavior. Requirements about polar tracking or entering length/angle first are optional methods, not mandatory steps for creating a line.
Common Pitfalls:Not using snaps, leading to off-by-small-amounts; mixing units or angles; leaving polar tracking angles misconfigured, which can bias cursor movement unintentionally.
Final Answer:Correct