SRE
Mastery
Course
Stats
← Back
⚙️ Functions & Structure
Q1/6
+0 XP
💡 Key Concept
▲
Default args are optional. Can call check_host("web01") or check_host("web01", 90).
What does def check_host(host, threshold=80): mean?
A
threshold is required
B
threshold defaults to 80
C
threshold must be int
D
Error