
PSUP

Quiz
•
Other
•
University
•
Easy
Vaibhav Giri
Used 3+ times
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
What will be the output of the following code?**
```python
arr = ["apple", "banana", "cherry"]
print(arr[1][2])
a
n
e
error
Answer explanation
Explanation: The element at index `1` is `"banana"`. The character at index `2` in `"banana"` is `"n"`.
2.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
What will be the output of the following pseudo-code?**
```
arr = ["hello", "world", "python"]
print(arr[0][-2])
h
L
o
Error
Answer explanation
Explanation: `arr[0]` is `"hello"`. The index `-2` refers to the second last character, which is `"l"`.
3.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
What will happen if you execute the following code?**
```python
arr = ["A", "B", "C"]
print(arr[3])
C
A
B
Error
Answer explanation
Explanation: The index `3` is out of range because `arr` has indices `0`, `1`, and `2` only.
4.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
Identify the error in the following code.**
```python
arr = ("one", "two", "three")
arr[1] = "four"
print(arr)
No error
IndexError
SyntaxError
TypeError
Answer explanation
Explanation: `arr` is a tuple, which is immutable, meaning elements cannot be reassigned.
5.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
What is the output of the following code?**
```python
arr = ["cat", "dog", "fox"]
print("-".join(arr))
cat-dog-fox
cat dog fox
cat,dog,fox
Error
Answer explanation
Explanation: The `join()` method concatenates elements of the list with `"-"` as a separator.
6.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
What is the output of the following code?**
```python
arr = ["red", "green", "blue"]
print(arr[::-1])
['red', 'green', 'blue']
['blue', 'green', 'red']
Error
None
Answer explanation
Explanation: `[::-1]` reverses the list.
7.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
What is the output of this pseudo-code?**
```
arr = ["apple", "banana", "cherry"]
print(len(arr[2]))
6
5
7
Error
Answer explanation
Explanation: `"cherry"` has 6 characters.
Create a free account and access millions of resources
Similar Resources on Wayground
17 questions
Basics of Programming with C

Quiz
•
University
18 questions
Abschlusssitzung

Quiz
•
University
10 questions
Arduino ELESA

Quiz
•
University
10 questions
Undertale AU

Quiz
•
5th Grade - University
20 questions
CodeMavarick

Quiz
•
University
20 questions
Java Debugging Questions - H

Quiz
•
University
20 questions
TECHTRIX2025 BUGHUNT SET6

Quiz
•
University
10 questions
Java Quiz

Quiz
•
University
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
15 questions
Core 4 of Customer Service - Student Edition

Quiz
•
6th - 8th Grade
15 questions
What is Bullying?- Bullying Lesson Series 6-12

Lesson
•
11th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
Discover more resources for Other
20 questions
Definite and Indefinite Articles in Spanish (Avancemos)

Quiz
•
8th Grade - University
7 questions
Force and Motion

Interactive video
•
4th Grade - University
36 questions
Unit 5 Key Terms

Quiz
•
11th Grade - University
7 questions
Figurative Language: Idioms, Similes, and Metaphors

Interactive video
•
4th Grade - University
15 questions
Properties of Equality

Quiz
•
8th Grade - University
38 questions
WH - Unit 3 Exam Review*

Quiz
•
10th Grade - University
21 questions
Advise vs. Advice

Quiz
•
6th Grade - University
12 questions
Reading a ruler!

Quiz
•
9th Grade - University