Computer Science and Entrepreneurship Python Programming Operators and Expressions Medium Q1. What does 5 >= 5 mean? Greater only Less only Greater or equal Equal only
Computer Science and Entrepreneurship Python Programming Operators and Expressions Medium Q2. What does 5 == 5 return? FALSE TRUE Error None
Computer Science and Entrepreneurship Python Programming Operators and Expressions Medium Q3. What is 5 + 2 * 3? 21 11 15 10
Computer Science and Entrepreneurship Python Programming Operators and Expressions Medium Q4. What does 10 // 3 return? 3 3.33 4 1
Computer Science and Entrepreneurship Python Programming Operators and Expressions Medium Q5. What does 10 ** 3 return? 30 3.3 1000 7
Computer Science and Entrepreneurship Python Programming Operators and Expressions Medium Q6. What is the result of 10 + 5? 15 10 5 50
Computer Science and Entrepreneurship Python Programming Operators and Expressions Medium Q7. In the expression a += b, what does it do? a + a ? b a = b a = a + b b = a + b
Computer Science and Entrepreneurship Python Programming Operators and Expressions Medium Q8. Which logical operator returns true only when both conditions are true? or not xor and
Computer Science and Entrepreneurship Python Programming Operators and Expressions Medium Q9. Which operator is used for exponentiation in Python? ^ ** // ++
Computer Science and Entrepreneurship Python Programming Operators and Expressions Medium Q10. What is the main purpose of operators in Python? Output Operations Loop Data types