Prerequisite: Loops and
String
Note: Output of all these programs is tested on Python3
1. What is the output of the following?
- None
- geeksforgeeks
- i i i i i i …
- g e e k s f o r g e e k s
Output:
1. None
Explanation: 'i' is not present in string 'geeksforgeeks'
2. What is the output of the following?
- 0 1 2 3 0
- 0 1 2 0
- 0 1 2
- Error
Output:
2. 0 1 2 0
Explanation: The else part is executed when the condition in the while statement is false.
3. What is the output of the following?
- 0 1 2 3 ... 12
- geeksforgeeks
- None
- Error
Output:
4. Error
Explanation: range(str) is not allowed.
4. What is the output of the following?
- GEEKSFORGEEKS
- geeksforgeeks
- Error
- None
Output:
2. geeksforgeeks
Explanation: Changes do not happen in-place, rather it will return a new instance of the string.
5. What is the output of the following?
- gaaaaaaaaaaaa
- geeksforgeeks a a a a a a a a a a a a
- Error
- None
Output:
2. geeksforgeeks a a a a a a a a a a a a
Explanation: String is modified only after ‘geeksforgeeks’ has been printed once.