0
0
3D Printingknowledge~10 mins

Temperature settings (nozzle and bed) in 3D Printing - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to set the nozzle temperature to 200°C.

3D Printing
set_nozzle_temperature([1])
Drag options to blanks, or click blank then click option'
A100
B150
C250
D200
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing a temperature too low for proper melting.
Choosing a temperature too high causing filament burning.
2fill in blank
medium

Complete the code to set the bed temperature to 60°C for better adhesion.

3D Printing
set_bed_temperature([1])
Drag options to blanks, or click blank then click option'
A60
B100
C40
D80
Attempts:
3 left
💡 Hint
Common Mistakes
Setting bed temperature too low causing poor adhesion.
Setting bed temperature too high causing warping.
3fill in blank
hard

Fix the error in the code to correctly set the nozzle temperature to 230°C.

3D Printing
set_nozzle_temperature([1])
Drag options to blanks, or click blank then click option'
A23
B230
C320
D200
Attempts:
3 left
💡 Hint
Common Mistakes
Using 23 instead of 230, missing a zero.
Setting temperature too high causing nozzle damage.
4fill in blank
hard

Fill both blanks to set nozzle to 210°C and bed to 70°C for PETG printing.

3D Printing
set_nozzle_temperature([1])
set_bed_temperature([2])
Drag options to blanks, or click blank then click option'
A210
B60
C70
D200
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up bed and nozzle temperatures.
Using PLA temperatures for PETG printing.
5fill in blank
hard

Fill all three blanks to set nozzle to 240°C, bed to 90°C, and fan speed to 0% for ABS printing.

3D Printing
set_nozzle_temperature([1])
set_bed_temperature([2])
set_fan_speed([3])
Drag options to blanks, or click blank then click option'
A230
B90
C0
D240
Attempts:
3 left
💡 Hint
Common Mistakes
Setting fan speed too high causing warping.
Using PLA temperatures for ABS printing.