Complete the code to print the main reason why scaling needs different strategies.
print('Scaling requires different strategies because of [1].')
Scaling needs different strategies because workloads can vary a lot, so one size does not fit all.
Complete the sentence to explain a key challenge in scaling machine learning models.
One challenge in scaling ML models is handling [1] data efficiently.
Handling large data efficiently is a key challenge when scaling ML models.
Fix the error in the statement about scaling strategies.
Scaling strategies must consider [1] and resource limits.
Network latency affects how scaling strategies perform, so it must be considered.
Fill both blanks to complete the scaling strategy code snippet.
if workload [1] threshold: use [2] scaling
If workload is greater than a threshold, horizontal scaling is used to add more machines.
Fill all three blanks to complete the dictionary comprehension for scaling decisions.
scaling_decisions = {model: '[1]' if load [2] limit else '[3]' for model, load in loads.items()}If load is greater than limit, scale horizontally; otherwise, scale vertically.