Please enable JavaScript to use CodeHS

Want to receive Question of the Day updates? Subscribe Here

Python Question of the Day Jan. 14, 2025

  1. Incorrect Correct No Answer was selected Invalid Answer

    What will the following program print to the console?

    x = 5
    
    def multiply_nums():
        y = 6
        z = x * y
        print(z)
    
    def divide_nums():
        answer = z / x
        print(answer)
    
    multiply_nums()
    divide_nums()
    Python