Match the following variables with their variable type. (3 points)

Put responses in the correct input to answer the question. Select a response, navigate to the desired input and insert the response. Responses can be selected and inserted using the space bar, enter key, left mouse button or touchpad. Responses can also be moved by dragging with a mouse.
b = "Hector"
c = 7
a = 19.95

1 answer

To match the variables with their variable types:

  • b = "Hector" - This is a string (text).
  • c = 7 - This is an integer (whole number).
  • a = 19.95 - This is a float (decimal number).

So, the matches are:

  • b: String
  • c: Integer
  • a: Float