logo

Question detail

In Python 3, item = 12. What is the result of item < 12?

Try the question, check the answer, then read the explanation to understand the curriculum point.

At a glance

MCQ

Type

practice

Style

Topic

Programming

Exam-style question

Try this first

In Python 3, item = 12. What is the result of item < 12?.

  1. A.True
  2. B.False
  3. C.12
  4. D.An error

Model answer

What a good answer should say

  • False

Explanation

Why this works

The value of item is equal to 12, not less than 12. Therefore, the relational expression evaluates to False.

Common mistake

No common mistake is linked to this question yet.

Related flashcards

No flashcards are published for this page yet.

Related practice questions

No questions are published for this page yet.