Skip to main content
🔒 Preview mode. The first 15 Foundations lessons are free; this one is Pro. Start a 7-day trial to unlock the editor, AI hints and the rest of the curriculum. Card required, cancel any time in Dashboard.Start 7-day trial →
← CoursesDevOps for Python servicesModule 5 · Cloud, IaC, Secrets, Cost · RecapCI: cache vs parallelismpredict96 / 104
+100 XP
Task
📝 **Task:** Print the warm wall-clock seconds for the optimized pipeline: warm install + warm build + parallel-4 tests + deploy. 📋 Implement the function above. Tests run automatically. 💡 **Hint:** Re-read the theory if you get stuck.
Predict the output

Read the code carefully

warm_install = 30
warm_build = 20
parallel_tests = 600 // 4
deploy = 60
print(warm_install + warm_build + parallel_tests + deploy)

What will the program print? Write here:

💬 Discussion

Be the first to ask a question or share a tip.
Sign in to join the discussion. Reading is free.
Loading discussion…