PYTHON QUIZ DESCRIPTION

Which of the following is true for variable names in Python?

  • underscore and ampersand are the only two special characters allowed
     

  •  unlimited length
     

  • all private members must have leading and trailing underscores
     

  •  none of the mentioned

Which of the following is the correct extension of the Python file?

  •  .python
     

  • .pl
     

  • .py
     

  •  .p

What is the order of precedence in python?

  • Exponential, Parentheses, Multiplication, Division, Addition, Subtraction
     

  •  Exponential, Parentheses, Division, Multiplication, Addition, Subtraction
     

  •  Parentheses, Exponential, Multiplication, Division, Subtraction, Addition
     

  •  Parentheses, Exponential, Multiplication, Division, Addition, Subtraction

What will be the value of the following Python expression?
4 + 3 % 5

  • 7

  • 2

  • 4

  • 1

Which of the following functions can help us to find the version of python that we are currently working on?
 

  • sys.version(1)
     

  •  sys.version(0)
     

  •  sys.version()
     

  • sys.version

Which of the following is not a core data type in Python programming?
 

  • Tuples
     

  •  Lists
     

  • Class
     

  • Dictionary

What will be the output of the following Python code?
print('*', "abcde".center(6), '*', sep='')

 

  •  * abcde *
     

  •  *abcde *
     

  •  * abcde*
     

  •  * abcde *

Which type of Programming does Python support?

  •  object-oriented programming
     

  •  structured programming
     

  •  functional programming
     

  •  all of the mentioned

What will be the output of the following Python code snippet if x=1?
x<<2

 

  • 4

  • 2

  • 1

  • 8

Which of the following character is used to give single-line comments in Python?

  • //

  • #

  • !

  • /*

Which of the following statements is used to create an empty set in Python?
 

  •  ( )
     

  •  [ ]
     

  •  { }
     

  •  set()

The following python program can work with ____ parameters.
def f(x):
    def f1(*args, **kwargs):
           print("Sanfoundry")
           return x(*args, **kwargs)
    return f1

 

  • any number of

  • 1

  • 2

  • 0

Which module in the python standard library parses options received from the command line?

  • getarg
     

  •  getopt
     

  •  main
     

  •  os
     

Which of the following functions is a built-in function in python?

  • factorial()
     

  •  print()
     

  •  seed()
     

  •  sqrt()
     

What will be the output of the following Python program?
z=set('abc')
z.add('san')
z.update(set(['p', 'q']))
z

  • {‘a’, ‘c’, ‘c’, ‘p’, ‘q’, ‘s’, ‘a’, ‘n’}
     

  • {‘abc’, ‘p’, ‘q’, ‘san’}
     

  •  {‘a’, ‘b’, ‘c’, ‘p’, ‘q’, ‘san’}
     

  •  {‘a’, ‘b’, ‘c’, [‘p’, ‘q’], ‘san}
     

What are the values of the following Python expressions?
 2**(3**2)
 (2**3)**2
 2**3**2

  • 512, 64, 512
     

  •  512, 512, 512
     

  • 64, 512, 64
     

  •  64, 64, 64

What will be the output of the following Python program?
def foo(x):
    x[0] = ['def']
    x[1] = ['abc']
    return id(x)
q = ['abc', 'def']
print(id(q) == foo(q))

 

  • Error

  • None

  • false

  • True

What will be the output of the following Python code?
l=[1, 0, 2, 0, 'hello', '', []]
list(filter(bool, l))

  • [1, 0, 2, ‘hello’, ”, []]
     

  • Error
     

  •  [1, 2, ‘hello’]
     

  •  [1, 0, 2, 0, ‘hello’, ”, []]

Which of these is the definition for packages in Python?
 

  • A set of main modules
     

  •  A folder of python modules
     

  •  A number of files containing Python definitions and statements
     

  •  A set of programs making use of Python modules

What will be the output of the following Python code?
i = 1
while True:
    if i%3 == 0:
        break
    print(i)
 
    i + = 1

  • 1 2 3

  • error

  • none of the mentioned

  • 1 2

Which one of the following is the use of function in python?
 

  • Functions don’t provide better modularity for your application
     

  • you can’t also create your own functions
     

  •  Functions are reusable pieces of programs
     

  • All of the mentioned
     

Which of the following is the use of id() function in python?

  • Every object doesn’t have a unique id
     

  •  Id returns the identity of the object
     

  •  All of the mentioned
     

  • None of the mentioned

What will be the output of the following Python statement?
"a"+"bc"

 

  • bc

  • abc

  • a

  • bca

What will be the output of the following Python code?
class tester:
def __init__(self, id):
self.id = str(id)
id="224"
temp = tester(12)
print(temp.id)

  • 12

  • 224

  • None

  • Error

Which of the following is the truncation division operator in Python?

  • |
     

  •  //
     

  • /
     

  •  %

 Which of the following is used to define a block of code in Python language?

  •  Indentation
     

  •  Key
     

  •  Brackets
     

  • All of the mentioned

What will be the value of ‘result’ in following Python program?
list1 = [1,2,3,4]
list2 = [2,4,5,6]
list3 = [2,6,7,8]
result = list()
result.extend(i for i in list1 if i not in (list2+list3) and i not in result)
result.extend(i for i in list2 if i not in (list1+list3) and i not in result)
result.extend(i for i in list3 if i not in (list1+list2) and i not in result)

  • [1, 3, 5, 7, 8]
     

  •  [1, 7, 8]
     

  • [1, 2, 4, 7, 8]
     

  • error
     

Who developed Python Programming Language?

  • Wick van Rossum
     

  • Rasmus Lerdorf
     

  •  Guido van Rossum
     

  • Niene Stom

What will be the output of the following Python code?
x = 'abcd'
for i in range(len(x)):
    print(i)

 

  • error
     

  •  1 2 3 4
     

  •  a b c d
     

  •  0 1 2 3

Is Python case sensitive when dealing with identifiers?

  • no
     

  • yes
     

  • machine dependent
     

  •  none of the mentioned