• Name: What will be the output of the following Python code? >>> a=("Check")*3 >>> a a) b) c) d)
  • What will be the output of the following Python code?

    a=("Check")*3 a a) b) c) d)

    • Syntax error
      No way , The code is correct
    • (‘CheckCheckCheck’)
      Yes!!
    • (‘Check’,’Check’,’Check’)
      Wrong
    • * Operator not valid for tuples
      Incorrect