// Basics

Basics Quiz

// question 1 of 10
What is the result of 5 + 2 * 3?
// question 2 of 10
What is the result of float(5)?
// question 3 of 10
What is the result of ""hello"".upper()?
// question 4 of 10
What is printed? print(type(True))?
// question 5 of 10
What must be used to convert input to integer?
// question 6 of 10
Can a variable change value?
// question 7 of 10
What is the result of str(5) + ""5""?
// question 8 of 10
What is printed? x = 5 ; print(x)?
// question 9 of 10
What is the result of ""python""[:3]?
// question 10 of 10
What is the result of ""abc"" == ""abc""?