1. What is output of − 33 == 33.0 ?





2.What is output for − b = [11,13,15,17,19,21] ptint(b[::2]) ?





3.Which operator is right-associative ?





4.what is output of following code ?

        class Count:
        def __init__(self, count=0):
           self.__count=count
            a=Count(2)
            b=Count(2)
        print(id(a)==id(b), end = '' '')
        c= ''hello''
        d= ''hello''
        print(id(c)==id(d))
     
      




5.What is the output of the following code?

            s = ''\t\t\t\n\nTutorialsPoint\n\n\n\t\t\t''
            s.strip()
            
          




6.Suppose we are given with two sets(s1&s2) then what is the output of the code − S1 + S2 ?





7. Select the correct code to create a check button under parent frame1 and it should be bind to v1 ?





8.Which code can be used as an input dialog named ''Is this a character?





9.Which module is used in python to create Graphics?





10.What is the value of this expression? 2**2**3**1 ?






11.How will you open a file for reading as a text file ?






12.What is the size of an empty tuple in Python?






13.How many CPUs will the threading library use?






14. Polymorphism is when a subclass can modify the behavior of its superclass.?





15.What is the value of round(12.5) - round(11.5)?