What problem is likely to occur when this line of code is used?

num1 = input(“Enter the first number: ”)

(1 point)
Responses

The variable name is not acceptable.

The variable name is not acceptable.

The input will be treated as a string not a number.

The input will be treated as a string not a number.

The output will be a float not a decimal.

The output will be a float not a decimal.

The word “input” should be capitalized.

1 answer

The input will be treated as a string not a number.
Similar Questions
  1. What problem is likely to occur when this line of code is used?num1 = input ("Enter the first number: ") A. The variable name is
    1. answers icon 1 answer
    1. answers icon 1 answer
  2. Consider the following high-level program:Uint_8 NUM1 = 10, NUM2 = 0, NUM3; While (NUM1 != NUM2) { NUM1 --; NUM2 ++; NUM3 = NUM1
    1. answers icon 1 answer
  3. complete this codenum1 = int(input("6: ")) num2 = int(input("8: ")) total = for num in range(num1, num2+1): total += num
    1. answers icon 1 answer
more similar questions