Challenge - 5 Problems
Agricultural Drone Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
💻 Command Output
intermediate1:30remaining
Drone spray command output
What is the output of this drone spray command log snippet?
Drone Programming
spray_command = {'area': 50, 'chemical': 'pesticide', 'rate': 2.5}
log = f"Spraying {spray_command['chemical']} over {spray_command['area']} hectares at {spray_command['rate']} L/ha"
print(log)Attempts:
2 left
💡 Hint
Check the keys used in the dictionary for the spray command.
✗ Incorrect
The code prints the chemical, area, and rate values correctly from the dictionary. Option B matches the output exactly.
🔀 Workflow
intermediate2:00remaining
Order of drone monitoring steps
Which option shows the correct order of steps for drone-based crop health monitoring?
Attempts:
2 left
💡 Hint
Think about what must happen before flying the drone.
✗ Incorrect
Planning the flight path (3) must come before capturing images (1), then analyzing (2), and finally reporting (4).
❓ Troubleshoot
advanced1:30remaining
Drone fails to spray chemical
A drone programmed to spray chemicals does not release any liquid during flight. Which is the most likely cause?
Attempts:
2 left
💡 Hint
Check the code controlling the spray mechanism.
✗ Incorrect
If the spray pump is not activated in the code, no chemical will be released despite other correct settings.
🧠 Conceptual
advanced1:30remaining
Best sensor type for crop health monitoring
Which sensor type is best for detecting plant stress in agricultural drone monitoring?
Attempts:
2 left
💡 Hint
Think about sensors that capture light beyond visible spectrum.
✗ Incorrect
Multispectral cameras capture light in multiple wavelengths, useful for detecting plant health and stress.
✅ Best Practice
expert2:00remaining
Optimal data handling for drone spraying logs
What is the best practice for storing large volumes of drone spraying logs for easy access and analysis?
Attempts:
2 left
💡 Hint
Consider scalability and accessibility of data.
✗ Incorrect
Centralized cloud databases with indexing allow efficient storage, search, and analysis of large log data.