1. How do you embed a variable in a string using f-strings in Python 3.6+?
a) "Hello, {name}!"
b) "Hello, %name%!"
c) f"Hello, {name}!"
d) "Hello, + name + !"
Answer:
c) f"Hello, {name}!"
Explanation:
F-strings, introduced in Python 3.6, allow embedding expressions inside string literals using curly braces {}.
2. What is the correct way to format a string using the .format() method?
a) "Hello, {0}!".format(name)
b) "Hello, %s!" % name
c) "Hello, {name}!".format(name)
d) "Hello, $name$!".format(name)
Answer:
a) "Hello, {0}!".format(name)
Explanation:
The .format() method replaces placeholders with positional or keyword arguments.
3. How do you create a decorator in Python?
a) Using the @ symbol before a function
b) By defining a class
c) Using the decorator keyword
d) By importing the decorator module
Answer:
a) Using the @ symbol before a function
Explanation:
A decorator in Python is created using the @ symbol before a function that modifies another function.
4. What is the purpose of decorators in Python?
a) To add new syntax features
b) To modify the behavior of functions or methods
c) To perform debugging
d) To define classes
Answer:
b) To modify the behavior of functions or methods
Explanation:
Decorators are used to modify or extend the behavior of functions or methods without changing their code.
5. How do you right-align text using f-strings?
a) f"{text:>width}"
b) f"{text:<width}"
c) f"{text:^width}"
d) f"{text:width}"
Answer:
a) f"{text:>width}"
Explanation:
In f-strings, ':>' is used for right alignment with the specified width.
6. Which of the following is used to create a function decorator?
a) A lambda function
b) A generator
c) A higher-order function
d) A tuple
Answer:
c) A higher-order function
Explanation:
A decorator is a higher-order function that takes a function as an argument and returns a new function.
7. How do you center-align text using the .format() method?
a) "{:^width}".format(text)
b) "{:width}".format(text)
c) "{:<width}".format(text)
d) "{:>width}".format(text)
Answer:
a) "{:^width}".format(text)
Explanation:
In the .format() method, ':^' is used to center-align text within the specified width.
8. What does the '@staticmethod' decorator do?
a) Makes a method static, not requiring an instance
b) Converts a function into a static method
c) Makes a static method dynamic
d) Decorates a static function
Answer:
a) Makes a method static, not requiring an instance
Explanation:
The '@staticmethod' decorator is used to declare a method as static, meaning it can be called without an instance of the class.
9. How do you left-align text in a string with a specific width using f-strings?
a) f"{text:<width}"
b) f"{text:>width}"
c) f"{text:^width}"
d) f"{text:width}"
Answer:
a) f"{text:<width}"
Explanation:
In f-strings, ':<' is used for left alignment with the specified width.
10. What is the result of using the '@property' decorator?
a) It turns a method into a class property
b) It makes a property private
c) It creates a new property dynamically
d) It sets a property to be read-only
Answer:
a) It turns a method into a class property
Explanation:
The '@property' decorator is used to define a method that can be accessed like an attribute.
11. How do you format a number as a percentage using f-strings?
a) f"{value:%}"
b) f"{value:.%}"
c) f"{value:.2%}"
d) f"{value}%"
Answer:
c) f"{value:.2%}"
Explanation:
In f-strings, ':.2%' formats a number as a percentage with two decimal places.
12. What is a common use of decorators in Python?
a) Memory management
b) Error handling
c) Modifying function behavior without changing its code
d) Iterating over collections
Answer:
c) Modifying function behavior without changing its code
Explanation:
Decorators are commonly used to extend or modify the behavior of functions or methods without altering their source code.
13. How do you use placeholders for positional formatting with .format()?
a) "Hello, {1}, {0}!".format(name, age)
b) "Hello, {name}, {age}!".format(name, age)
c) "Hello, %s, %d!" % (name, age)
d) "Hello, ?, ?!".format(name, age)
Answer:
a) "Hello, {1}, {0}!".format(name, age)
Explanation:
The .format() method uses curly braces with positional indexes to specify the order of arguments.
14. How do you pad a number with zeros using f-strings?
a) f"{number:0d}"
b) f"{number:0>width}"
c) f"{number:0^width}"
d) f"{number:0<width}"
Answer:
b) f"{number:0>width}"
Explanation:
In f-strings, ':0>' pads the number with zeros on the left side up to the specified width.
15. What does the '@classmethod' decorator do?
a) Makes a method a class method that can modify class state
b) Converts a method into a static method
c) Creates a new class dynamically
d) Decorates a class constructor
Answer:
a) Makes a method a class method that can modify class state
Explanation:
The '@classmethod' decorator is used to create a class method that can access and modify the class state.
MCQ
Related Python Source Code Examples:
Python string literals
Python string length example
Python String join() method example
Python string split() method example
Python String index() method example
Python string find() method example
Python string startswith() method example
Python string endswith() method example
Python String lower() method example
Python String upper() method example
Python string title() method example
Python string capitalize() method example
Python string islower() method example
Python string istitle() method example
Python string isupper() method example
Python string swapcase() method example
Python string strip() method example
Python string replace() method example
Python string isdigit() method example
Python string isdecimal() method example
Python string isnumeric() method example
Python string isalpha() method example
Python string isalnum() method example
Write a python program to concatenate strings in different ways
Python program to create a new string by appending s2 in the middle of s1
Split a given string on asterisk into several substrings and display each substring in Python
Write a Python program to count all lower case, upper case, digits, and special symbols from a given string
Write a python program to return a string such that the string is arranged from lowercase letters and then uppercase letters
Write a Python Class to Reverse a String Word by Word
Write a python class to implement pow(x, n)
Write a python class to convert an integer to a Roman numeral
Write a python program to find the factorial of a number using recursion
Write a Python program to convert temperature in Celsius to Fahrenheit
Write a Python program to find the largest number among the three input numbers
Write a Python program to print only even numbers using the function
Write a python program to filter integer, float, string from a list
Write a python program to check whether the given number is greater than 50 and also divisible by 2 using nested if else
Write a python program to demonstrate a simple class creation
Write a python program to demonstrate the object as an argument
Write a python program to demonstrate an object as an argument with default values
Write a python program to demonstrate method overriding
Write a Python program for Linear Search and Binary Search
Python list - insert, remove, append, len, pop and clear example
Write a python program to add two numbers
Write a python program to get the python version
Write a python program to check whether the first and last letters of the given word is vowel or not ?
Write a python program to count the number of digits
Write a python program to filter integer, float, string from a list
Write a python program to find the average of 10 numbers
Write a python program to traverse a list and print the values in it
Write a python program to print first 20 natural numbers using while loop
Write a python program to print the square of all numbers from 1 to 10
Write a python program to get the sum of digits
Write a python program to print right angle triangle pattern using *
Write a python program to remove vowels in a word
Write a python program to find absolute value using function
Wrtie a python program to demonstrate the use of variable length arguments
Write a python program to demonstrate the use of default arguments
Write a python program to demonstrate the use of keyword arguments
Write a python program to print a simple list using functions
Write a python program to find the max values in a list using function
Given a string of odd length greater 7, return a string made of the middle three chars of a given String
Arrange string characters such that lowercase letters should come first
Write a Python program to Count all lower case, upper case, digits, and special symbols from a given string
Write a Python program to Find all occurrences in a given string ignoring the case
Given an input string, count occurrences of all characters within a string and return the details as dictionary
Write a Python program to Split a given string on asterisk into several substrings and display each substring
Write a Python program to Check whether the given string startswith 'h'
Write a python program to concatenate strings in different ways
Write a python program to return a string such that the string is arranged from lowercase letters and then uppercase letters
Write a python program to repeat a givent string multiple times
Write a python program to create a simple list and nested list with different datatypes
Write a python program to add elements to an existing list from user input
Write a python program to reverse a given list
Write a python program to convert a list to tuple using tuple function
Write a python program to check whether the user given input is equal to the current working directory or not
Write a Python program for Linear Search and Binary Search
Selection Sort Algorithm in Python
Bubble Sort Algorithm in Python
Bogo Sort Algorithm in Python
Bucket Sort Algorithm in Python
Comb Sort Algorithm in Python
Counting Sort Algorithm in Python
Heap Sort Algorithm in Python
Insertion Sort Algorithm in Python
Merge Sort Algorithm in Python
Quick Sort Algorithm in Python
Shell Sort Algorithm in Python
Interpolation Search Algorithm in Python
Stack Implementation in Python
Queue Implementation in Python
Deque Implementation in Python
Singly Linked List Implementation in Python
Doubly Linked List Implementation in Python
Circular Linked List Implementation in Python
PriorityQueue Implementation in Python
Circular Queue Implementation in Python
Binary Search Tree Implementation in Python
Stack Implementation Using Linked List in Python
Stack Implementation Using Doubly Linked List in Python
Python - Convert Binary to Decimal Example
Python - Convert Binary to Hexadecimal Example
Python - Convert Binary to Octal Example
Python - Convert Decimal to Binary Example
Python - Convert Decimal to Octal Example
Python Convert String to Int
Python Convert String to DateTime
Python Convert String to Date
Python Convert String to JSON
Python Convert String to Number
Python Convert String to List
Python Convert String to Float
Python Convert String to Bytes
Python Convert List to String
Python Convert List to Set
Python Convert List to Dictionary
Python Convert List to Tuple
Python Convert List to JSON
Python Convert List to Array
Python Convert List to String With Commas
Python Convert List to Dataframe
Python Convert Set to List
Python Convert Set to String
Python Convert Set to Tuple
Python Convert Set to Dictionary
Python Convert Set to JSON
Python Convert Set to Comma Separated String
Python Convert Dictionary to JSON
Python Convert Dictionary to Dataframe
Python Convert Dictionary to String
Python Convert Dictionary to List
Python Convert Dictionary Keys to List
Python Convert Dictionary Values to List
Python Convert Dictionary to Tuple
Python Convert Array to String
Python Convert Array to String With Commas
Python Convert Array to List
Python Convert Array to Set
Python Convert Array to JSON
Python Convert Array to Dictionary
Python Convert Array to Tuple
Python Convert Int to String
Python Convert Int to Binary
Python Convert Int to Float
Python Convert Date to String
Python Convert Date to Epoch
Python Convert Date to Unix Timestamp
Python Convert Date to DateTime
Python Convert Date to DateTime
Python Convert Date to Timestamp
Python Convert Date String to DateTime
Python Convert Date String to Epoch
Python Convert Tuple to String
Python Convert Tuple to List
Python Convert Tuple to Dictionary
Python Convert Tuple to Comma Separated String
Python Convert Tuple to Array
Python Convert Tuple to JSON
Python Convert JSON to String
Python Convert JSON to Dictionary
Python Convert JSON to Array
Python Convert JSON to XML
Python Convert JSON to List
Python
Comments
Post a Comment