0% found this document useful (0 votes)
55 views8 pages

Python Unit 1

This document contains two units of questions and answers related to Python programming. Unit 1 covers basic Python concepts like identifiers, operators, data types and output. Unit 2 focuses on control flow statements like conditionals and loops. The key provides answers to multiple choice, fill in the blank, matching and true/false questions testing understanding of core Python syntax and programming concepts.

Uploaded by

Uma Maheswari
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
55 views8 pages

Python Unit 1

This document contains two units of questions and answers related to Python programming. Unit 1 covers basic Python concepts like identifiers, operators, data types and output. Unit 2 focuses on control flow statements like conditionals and loops. The key provides answers to multiple choice, fill in the blank, matching and true/false questions testing understanding of core Python syntax and programming concepts.

Uploaded by

Uma Maheswari
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 8

SUITS QUESTION BANK PYTHON PROGRAMMIMG

UNIT – 1
I) CHOOS E THE CORRECT ANSWERS:
1. Which is not allowed within the identifier name
a. Alphabet b) underscore c) blank space d) digits
2. Which operator is also known as relational operator
a. Arithmetic b) comparative c) assignment d) logical
3. How many number of blank space in the indentation by
default
a) 3 spaces b) 2 spaces c) 5 spaces d)4 spaces
4. Which is arithmetic operator in the following options
a. * b)! = c) < d) >=
5. Which one of the following option is delimeter
a) += b) - c) : d) <=
6. which is group of chracters enclosed with quotes
a) Boolean b) keyword c) numeric d) string
7. which one of the following is token
a) exponent b) keyword c) division d) arith metic
8. which one of the following is relational operator
a)<= b) AND c) + d)||
9. which is used to exit from python shell window
a) print() b) int() c) quit() d) input()
10. python was released during the year

a) 1992 b) 1890 c) 1999 d)1991


11. which operator is used to assigning value to a variable
a) == b)= c)+= n d)\=
12. which special character is allowed in identifiers
a) * b)% c) \ d) none of the above
13. Floor division is only return the
b) reminder b) integer c) quotient d) float
14. which mode is directly display the output
c) looping b) script c) interactive d) exit

15. what is the answer of this expression, 22%3=?

a) 7 b)1 c)0 d)5


16. which of the following is invalid
a) _a=1 b)__a=1 c)_str_=1 d)none
17. which one of the modules division in the following
a)/ b)// c)% d)=%
18. which is the correct operator for power(xy)
a) x^y b) x**y c)x^^y d) x/y
II) FILL IN THE BLANKS
1. Python is an ----------------------------------------
2. Machine readable form was called -----------------------
3. Identifiers are also called as ------------
4. ----------------- is the simple assignment operator in python
5. Python files are saved with extension ---------
6. Escape sequences begin with --------------
7. If the code has any error, it will be shown in ------------------

8. 8. ------------------- are the sequences of elementary lexical


components

9. ---------, --------- , ----------- are the logical operators


10. The result of arithmetic operation is always a ------------
11. All keywords in python are in--------------------

12. What will be output of this 3*1**3= ----------

III) MATCH THE FOLLOWING


1. Keyword - a) operator
2. Run->run module - b) “”
3. Multi line comment - c) variables
4. Tokens - d) break
5. Identifiers - e) F5
IV) TRUE OR FALSE
1. Relational operators is also known as arithmetic operator
2. True is not a keyword in python
3. The print () is the output of the program
4. Numeric literal consists of digits and unchangeable

5. Single line comments begin with double quotes.


UNIT II
I) CHOOSE THE CORRECT ANSWER:
1. Executing a set of statements repeatedly for multiple times called
a) Sequential b) alternative c) looping d)iterative
2. Alternative or branching statements are also known as
a) Break b) decision making c) rules c)continue d) looping
3. Which statements transfers the control outside the loop
a) Break b) continue c) pass d) loop
4. Which statement is similar to implementing switch statement
in C & C++
a) If b) if –else c) if-elif-else d) if-elseif-else
5. Which one of the following is a membership operator
a) If b)not in c) elif d)switch
6. Which is followed by binary value
a) 0b01011 b) 0o675 c) 1010100 d)0101000b
7. Sep parameter is ----- function
a) Input() b) print() c) str() d) none
8. The else block of statement is executed only when the
condition is

a) True b) true and false c) false d) loop


9. Which statement is used in iterative loop
a) If b) if-else c) else d) for

10. Loop control statements are also known as


a) Jumps b) break c) continue d) pass
11. A program statements that causes a jump of control from one
part to another part is called

a) Control statement b) sequential statement

c) Alternative statement d) iterative statement

12. which statement is perform no operation

a) break b) continue c) pass d) loop

II) FILL IN THE BLANKS


1. Conditional operators is also known as -------------------
2. -------- and --------- are the two types of iteration
3. A loop within another loop is called -------
4. --------------- is a null statement
5. --------------- is a two way of branching statement
6. -------------- is multiple branching statement
7. Python uses indentation as its method of -------
8. Comma, semicolon, hyphen are used in --------
9. Iterative statement is also known as -----------------
10. The ----- and ------ are membership operator
11. ------------ Function is used to specify initial, final and
increment value.

12. There are -------- types of control structures


13. If the condition is false ------- statements are executed
III) MATCH THE FOLLOWING
1. Sequential statement - a) comma
2. End parameter - b) executed in same order
3. Range() - c) \n
4. New line - d) for loop
5. Sep parameter - e) \t
IV) TRUE OR FALSE
1. The print() have three parameters
2. Relational operator is also known as arithmetic operator
3. The print() function is used to range value
4. In range() increment parameter is optional
5. The for loop is an entry check loop.
ANSWER KEY
UNIT – I
I)CHOOSE THE CORRECT ANSWER
1.c 2.b 3.d 4.a 5.c 6.d 7.b 8.a 9.c 10.d 11.b 12.d 13.c
14.c 15.b 16.d 17.c 18.b
II) FILL IN THE BLANKS:
1. High level programming language 2. Byte code 3. Variables 4. =
5.py 6. \ 7. Red color 8. Token 9. And, or, not 10. number,
11.Lowercase 12. 3
III)MATCH
1-d 2-e 3-b 4-a 5-c
IV)TRUE or FALSE
1.false 2. False 3. True 4. True 5. False

UNIT II
I) CHOOSE THE CORRECT ANSWER
1.c 2.b 3.a 4.c 5. b 6. A 7. B 8. C 9. D 10. A 11.a 12.c
II)FILL IN THE BLANKS
1. Ternary operator 2. Definite and definite 3. Nested loop 4. Pass 5. If-
elif-else 6. If-elif-else 7. Grouping statement 8. Sep parameter
9. looping 10. in and not in 11. Range() 12. 3 13. else
III)MATCH
1-b 2-e 3-d 4-c 5-a
IV) TRUE OR FALSE
1. False 2. True 3. False 4. True 5. true

You might also like