Complete the code to select the power mode that saves the most battery.
power_mode = '[1]' # Choose the mode that uses least energy
The Sleep mode reduces power consumption by turning off most functions, saving battery life.
Complete the code to set the device to a mode that balances performance and battery life.
power_mode = '[1]' # Balanced mode
The Idle mode reduces power use while keeping the device ready to respond quickly, balancing battery and performance.
Fix the error in the code to correctly set the power mode to Performance.
power_mode = '[1]' # High power for best speed
Performance mode uses the most power to maximize speed and responsiveness.
Fill both blanks to create a dictionary mapping power modes to their battery usage levels.
battery_usage = {'Sleep': '[1]', 'Performance': '[2]'}Sleep mode uses Low battery power, while Performance mode uses High power.
Fill all three blanks to create a dictionary showing power modes, their descriptions, and typical battery impact.
power_modes = {
'[1]': {'desc': 'Lowest power use, device mostly off', 'impact': '[2]'},
'[3]': {'desc': 'Full speed, highest power use', 'impact': 'High'}
}Sleep mode has Low battery impact because the device is mostly off. Performance mode uses High power for full speed.