Multiple choice Which of these variables are of type int? num = 5.6 num = "3" num = 4 num = 4.0 Reveal answer Fill a bubble to check yourself C Correct answer Explanation An integer (int) is a whole number without a decimal point. 'num = 4' is an integer, whereas 5.6 is a float and '3' is a string.