Bird
Raised Fist0
Solidworksbi_tool~20 mins

Display states in Solidworks - Practice Problems & Coding Challenges

Choose your learning style10 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Challenge - 5 Problems
🎖️
Display States Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Display States in SolidWorks

Which statement best describes the purpose of display states in SolidWorks?

ADisplay states are used to create different physical configurations of a model by changing dimensions.
BDisplay states control the visibility, color, and display style of components without changing the model geometry.
CDisplay states automatically generate exploded views of assemblies.
DDisplay states are used to apply material properties to parts for simulation.
Attempts:
2 left
💡 Hint

Think about how you can show or hide parts without modifying their shape.

🎯 Scenario
intermediate
2:00remaining
Using Display States to Show Different Assembly Views

You want to create a SolidWorks assembly with two display states: one showing all parts visible, and another hiding the screws. What is the best way to achieve this?

ACreate two display states; in the second, hide the screws by toggling their visibility off.
BCreate two configurations; in the second, delete the screws from the assembly.
CUse a display state to change the color of screws to transparent instead of hiding them.
DCreate a new part file without screws and replace it in the assembly.
Attempts:
2 left
💡 Hint

Display states can toggle visibility without changing the model structure.

dax_lod_result
advanced
2:00remaining
Calculating Component Visibility Count Using Display States

Given a SolidWorks assembly with multiple display states, you want to calculate the number of visible components in the current display state using DAX. Which DAX measure correctly counts visible components assuming a table 'Components' with a boolean column 'IsVisible' that changes per display state?

AVisible Components = COUNTROWS(FILTER(Components, Components[IsVisible] = TRUE()))
BVisible Components = CALCULATE(COUNTROWS(Components), Components[IsVisible] = TRUE())
CVisible Components = SUMX(Components, IF(Components[IsVisible], 1, 0))
DVisible Components = COUNTROWS(Components) - COUNTROWS(FILTER(Components, Components[IsVisible] = FALSE()))
Attempts:
2 left
💡 Hint

Use FILTER to select visible components before counting.

visualization
advanced
2:00remaining
Best Visualization to Show Component Visibility Across Display States

You have data on component visibility across multiple display states. Which visualization best helps you compare which components are visible in each display state?

AA line chart showing visibility count trend over time.
BA pie chart showing total visible components per display state.
CA scatter plot with component weight vs. visibility.
DA matrix with components as rows and display states as columns showing visibility as checkmarks.
Attempts:
2 left
💡 Hint

Think about showing presence or absence across categories.

🔧 Formula Fix
expert
2:00remaining
Debugging Display State Visibility Issue in SolidWorks Data Model

You created a report showing component visibility per display state, but the visibility count is always the total number of components, ignoring display state changes. Which is the most likely cause?

AThe display states are not saved in SolidWorks before exporting data.
BThe measure uses COUNTROWS without any filter on visibility.
CThe 'IsVisible' column is not filtered by display state context in the data model.
DThe report visual is set to ignore filters on the display state field.
Attempts:
2 left
💡 Hint

Check if the visibility data changes with display state selection.

Practice

(1/5)
1. What is the main purpose of Display States in SolidWorks?
easy
A. To permanently change the geometry of a model
B. To save different visual appearances of a model without changing its shape
C. To create new parts from an assembly
D. To export the model to different file formats

Solution

  1. Step 1: Understand what Display States do

    Display States allow saving different looks of the same model, such as colors or visibility, without altering the model's shape.
  2. Step 2: Differentiate from geometry changes

    Changing geometry permanently modifies the model, which Display States do not do.
  3. Final Answer:

    To save different visual appearances of a model without changing its shape -> Option B
  4. Quick Check:

    Display States = Visual appearance only [OK]
Hint: Remember: Display States change looks, not shape [OK]
Common Mistakes:
  • Confusing Display States with geometry editing
  • Thinking Display States create new parts
  • Assuming Display States export files
2. Which of the following is the correct way to create a new Display State in SolidWorks?
easy
A. Go to File > Save As and choose Display State
B. Click on the Features tab and select 'New Display State'
C. Use the Move tool to create a Display State
D. Right-click on the Display States tab and select 'Add Display State'

Solution

  1. Step 1: Locate Display States tab

    In SolidWorks, Display States are managed in the ConfigurationManager under the Display States tab.
  2. Step 2: Create new Display State

    Right-clicking on the Display States tab gives the option 'Add Display State' to create a new one.
  3. Final Answer:

    Right-click on the Display States tab and select 'Add Display State' -> Option D
  4. Quick Check:

    Create Display State = Right-click Display States tab [OK]
Hint: Right-click Display States tab to add new state [OK]
Common Mistakes:
  • Trying to create Display State from File menu
  • Using Move tool which edits geometry
  • Looking under Features tab incorrectly
3. Given a model with two Display States: State1 shows all parts visible, and State2 hides the front cover. What will happen when you switch from State1 to State2?
medium
A. The front cover becomes invisible while other parts remain visible
B. The entire model becomes invisible
C. The model shape changes to remove the front cover permanently
D. The colors of all parts change but visibility stays the same

Solution

  1. Step 1: Understand Display State visibility control

    Display States can control visibility of parts without changing geometry.
  2. Step 2: Analyze effect of switching states

    Switching to State2 hides the front cover but keeps other parts visible as per the saved state.
  3. Final Answer:

    The front cover becomes invisible while other parts remain visible -> Option A
  4. Quick Check:

    Switch Display State = Change visibility only [OK]
Hint: Switching Display State changes visibility, not shape [OK]
Common Mistakes:
  • Thinking the model shape changes permanently
  • Assuming entire model hides
  • Confusing color changes with visibility
4. You created a Display State but when switching to it, the model looks the same as the default state. What is the most likely cause?
medium
A. You forgot to save changes to visibility or appearance in the new Display State
B. The model geometry was deleted accidentally
C. Display States only work in assemblies, not parts
D. You need to restart SolidWorks to apply Display States

Solution

  1. Step 1: Check if changes were saved in Display State

    Display States save visual changes like visibility or color. If no changes were saved, switching states shows no difference.
  2. Step 2: Eliminate other causes

    Geometry deletion affects shape, not Display States. Display States work in parts and assemblies. Restart is not required.
  3. Final Answer:

    You forgot to save changes to visibility or appearance in the new Display State -> Option A
  4. Quick Check:

    No saved changes = No visible difference [OK]
Hint: Always save visibility/appearance changes in Display State [OK]
Common Mistakes:
  • Assuming geometry deletion affects Display States
  • Thinking Display States need restart
  • Believing Display States only work in assemblies
5. You want to compare two color schemes for a product without changing the model shape or creating multiple files. How can Display States help you achieve this?
hard
A. Apply colors directly to the model and save multiple versions manually
B. Create two separate files with different colors and switch between them
C. Create two Display States, each with a different color scheme applied to the model
D. Use configurations to change the model shape and color simultaneously

Solution

  1. Step 1: Understand Display States for color variations

    Display States allow saving different appearances like colors without changing geometry or creating new files.
  2. Step 2: Apply different colors in separate Display States

    Create two Display States, each with a unique color scheme, and switch between them to compare easily.
  3. Final Answer:

    Create two Display States, each with a different color scheme applied to the model -> Option C
  4. Quick Check:

    Display States = Multiple looks, one file [OK]
Hint: Use Display States to save color options without new files [OK]
Common Mistakes:
  • Creating multiple files instead of using Display States
  • Confusing configurations with Display States
  • Manually saving versions instead of using states