PSUP

PSUP

University

15 Qs

quiz-placeholder

Similar activities

Accounting 100

Accounting 100

University

13 Qs

Pemilu

Pemilu

KG - University

10 Qs

Competencias Ciudadanas

Competencias Ciudadanas

University

10 Qs

اسئلة عامة

اسئلة عامة

University - Professional Development

10 Qs

RH MAS level2

RH MAS level2

KG - Professional Development

10 Qs

YOU THINK YOU KNOW AH?

YOU THINK YOU KNOW AH?

University - Professional Development

11 Qs

Mrk - DaPembd

Mrk - DaPembd

University

15 Qs

TEKS IKLAN, SLOGAN DAN POSTER

TEKS IKLAN, SLOGAN DAN POSTER

8th Grade - University

20 Qs

PSUP

PSUP

Assessment

Quiz

Other

University

Practice Problem

Easy

Created by

Vaibhav Giri

Used 3+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?