Back to Top

Quiz Time
Python

No Short Description Present

Course Related Quiz

#Quiz
1
Discuss
How to install Python ?
Is Python case sensitive when dealing with identifiers?
  • 1] yes
  • 2] no
  • 3] machine dependent
  • 4] none of the mentioned
Solution
10
Discuss
How to install Python ?
Which of the following cannot be a variable?
  • 1] __init__
  • 2] in
  • 3] it
  • 4] on
Solution
11
Discuss
How to install Python ?

What is the output of print 0.1 + 0.2 == 0.3?

  • 1] True
  • 2] False
  • 3] Machine dependent
  • 4] Error
Solution
12
Discuss
How to install Python ?

Which of the following is not a complex number?

  • 1] k = 2 + 3j
  • 2] k = complex(2, 3)
  • 3] k = 2 + 3l
  • 4] k = 2 + 3J
Solution
13
Discuss
How to install Python ?

What is the type of inf?

  • 1] Boolean
  • 2] Integer
  • 3] Float
  • 4] Complex
Solution
14
Discuss
How to install Python ?

What does ~4 evaluate to?

  • 1] -5
  • 2] -4
  • 3] -3
  • 4] +3
Solution
15
Discuss
How to install Python ?

What does ~~~~~~5 evaluate to?

  • 1] +5
  • 2] -11
  • 3] +11
  • 4] -5
Solution
16
Discuss
How to install Python ?

Which of the following is incorrect?

  • 1] x = 0b101
  • 2] x = 0x4f5
  • 3] x = 19023
  • 4] x = 03964
Solution
17
Discuss
How to install Python ?

What is the result of cmp(3, 1)?

  • 1] 1
  • 2] 0
  • 3] True
  • 4] False
Solution
18
Discuss
Variable

Which of these in not a core data type?

  • 1]

    Lists

  • 2]

    Dictionary

  • 3]

    Tuples

  • 4]

    Class

Solution
#Quiz
Showing 1 to 10 of 99 entries