Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Calculate Device Energy Efficiency
00:00
5 left

Calculate Device Energy Efficiency

EasyPython

Problem

Write a function to calculate the energy efficiency of a device based on given parameters.

Define efficiency as (useful_energy / input_energy) * 100. Return the result as a floating-point percentage.

Use the signature def calculate_efficiency(input_energy, useful_energy):. Both parameters are numeric, input energy is positive, and useful energy is nonnegative.

Constraints

  • input_energy is a positive integer or floating-point number
  • useful_energy is a nonnegative integer or floating-point number
  • useful_energy <= input_energy
  • Return the efficiency as a floating-point percentage

Function Signature

def calculate_efficiency(input_energy, useful_energy):
Interviewer

Your question is Calculate Device Energy Efficiency. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.