Questions | Graded A+
1. What is the escape sequence for a backslash character?
\
\\
//
/
2. What are the three common string manipulation techniques mentioned in
Python?
Concatenation, indexing, and parsing
Iteration, recursion, and formatting
Concatenation, slicing, and formatting
Slicing, indexing, and iteration
3. What does the randrange() method do in Python?
Generates a random boolean value
Generates a random integer within a specified range
Generates a random floating-point number
Generates a random string of characters
4. What is the purpose of the str.capitalize() method in Python?
Reverse the order of characters in the string
Convert the entire string to uppercase
, Convert the entire string to lowercase
Capitalize the first letter of the string
5. What is a list?
A collection which is unordered and unindexed. In Python sets are
written with curly brackets.
A collection which is ordered and changeable. In Python lists are
written with square brackets.
A data type used to store information in a key-value manner and use
curly brackets.
6. What is a keyword argument in Python?
An argument that is passed by reference
An argument that is required in a function call
An argument defined by using a name and a default value
An argument that is used for exception handling
7. What is the function of the join() method in Python?
To divide a string into a list of substrings
To check the index of a substring in a string
To replace specific sections of a string
To combine a list of strings into a single string
8. What does an assignment statement do in a program?
Assigns a name to a value
Assigns a value to a function
, Assigns a value to a variable
Assigns a variable to a function
9. Describe the process of unpacking a list in Python and its significance.
Unpacking a list in Python involves assigning each element of the
list to a separate variable, allowing for easier access to individual
elements.
Unpacking a list in Python requires the use of a loop to iterate through
the list elements.
Unpacking a list in Python combines all elements into a single variable
for easier manipulation.
Unpacking a list in Python is only possible with tuples, not lists.
10. Where is a global variable defined in Python?
Outside of any function
Within a class
Inside a function
In a module
11. What is the following type of string manipulation called?
First = "throat"
Second = "warbler"
First + Second
Indexing
Combination
Slicing
Concatenation
, 12. Where are global variables defined in Python?
Outside of any function
In a separate module
Inside a function
Within a class
13. What is the purpose of placeholders in Python string formatting?
To manipulate data types
To insert values into a string
To create functions
To define variable types
14. Describe the accessibility of global variables in Python.
Global variables can only be accessed from the function they are
defined in.
Global variables cannot be accessed by any function.
Global variables can only be accessed from classes.
Global variables can be accessed from any function within the
same module.
15. Describe the scope of a local variable in Python and how it differs from a
global variable.
A local variable is defined outside of functions, while a global
variable is defined inside functions.
A local variable is accessible only within the function it is defined
in, while a global variable can be accessed throughout the entire