0
0
Solidworksbi_tool~20 mins

Sketch fillet and chamfer in Solidworks - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Sketch Fillet and Chamfer Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Understanding Sketch Fillet Purpose

What is the main purpose of using a sketch fillet in a CAD sketch?

ATo create a rounded corner between two sketch lines for smooth transitions.
BTo create a sharp corner by extending one line beyond another.
CTo add a straight chamfered edge between two lines.
DTo mirror a sketch entity across an axis.
Attempts:
2 left
💡 Hint

Think about how corners look when they are smoothed out.

🧠 Conceptual
intermediate
1:30remaining
Difference Between Fillet and Chamfer

Which statement correctly describes the difference between a sketch fillet and a sketch chamfer?

AFillet extends lines; chamfer shortens lines.
BFillet creates a straight angled cut; chamfer creates a rounded corner.
CBoth fillet and chamfer create rounded corners but with different radii.
DFillet creates a rounded corner; chamfer creates a straight angled cut.
Attempts:
2 left
💡 Hint

Think about the shape of the corner after applying each tool.

dax_lod_result
advanced
2:00remaining
Calculating Number of Fillets in a Sketch

Given a sketch with multiple corners, you want to calculate how many fillets have been applied. Which DAX expression correctly counts the fillet features in the 'SketchFeatures' table where 'FeatureType' equals 'Fillet'?

Solidworks
COUNTROWS(FILTER(SketchFeatures, SketchFeatures[FeatureType] = "Fillet"))
ACOUNTROWS(FILTER(SketchFeatures, SketchFeatures[FeatureType] = "Fillet"))
BCOUNT(SketchFeatures[FeatureType] = "Fillet")
CSUMX(SketchFeatures, IF(SketchFeatures[FeatureType] = "Fillet", 1, 0))
DCALCULATE(COUNT(SketchFeatures[FeatureType]), SketchFeatures[FeatureType] = "Fillet")
Attempts:
2 left
💡 Hint

Use FILTER to select rows, then COUNTROWS to count them.

visualization
advanced
2:00remaining
Best Visualization for Fillet and Chamfer Usage

You have data on how many fillets and chamfers are used in different sketches. Which visualization best shows the comparison of fillet vs chamfer counts across sketches?

AA line chart showing fillet counts over time only.
BA pie chart showing total fillets and chamfers combined.
CA clustered bar chart showing fillet and chamfer counts side by side for each sketch.
DA scatter plot with fillet counts on X-axis and chamfer counts on Y-axis.
Attempts:
2 left
💡 Hint

Think about how to compare two categories across multiple items clearly.

🔧 Formula Fix
expert
2:30remaining
Debugging Chamfer Calculation Error

You have this DAX measure to calculate total chamfers:
TotalChamfers = COUNTROWS(FILTER(SketchFeatures, SketchFeatures[FeatureType] = "Chamfer"))
But it returns zero even though there are chamfers in the data. What is the most likely cause?

AThe COUNTROWS function cannot be used with FILTER in this context.
BThe 'FeatureType' column contains extra spaces or different casing like ' chamfer' or 'Chamfer '.
CThe SketchFeatures table is empty.
DThe measure syntax is invalid because of missing CALCULATE.
Attempts:
2 left
💡 Hint

Check the exact text values in the 'FeatureType' column.