TECHTRIX2025 BUGHUNT FINALS

TECHTRIX2025 BUGHUNT FINALS

University

35 Qs

quiz-placeholder

Similar activities

MEME QUIZ

MEME QUIZ

University

31 Qs

Conquer C

Conquer C

University

40 Qs

Java

Java

University

30 Qs

GANJIL 2025_UTS_XII RPL2_PEMROGRAMAN BERORIENTASI OBJEK

GANJIL 2025_UTS_XII RPL2_PEMROGRAMAN BERORIENTASI OBJEK

12th Grade - University

30 Qs

Section-B MLP LA-1 Quuiz

Section-B MLP LA-1 Quuiz

University

30 Qs

Webathan

Webathan

University

30 Qs

ROUND 2 (Python and Current Affairs )

ROUND 2 (Python and Current Affairs )

University

30 Qs

CC104 2nd quiz

CC104 2nd quiz

University

30 Qs

TECHTRIX2025 BUGHUNT FINALS

TECHTRIX2025 BUGHUNT FINALS

Assessment

Quiz

Other

University

Hard

Created by

Sarmistha Moharer

Used 1+ times

FREE Resource

35 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the error in the code? numbers = [1, 2, 3, 4, 5] for i in range(6): print(numbers[i])

Index out of range

Syntax error in loop

Incorrect list initialization

No error

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the error in the code? def add(a, b): return a + b result = add(5, "10") print(result)

Syntax error in function definition

Type error (adding int and string)

Missing return statement

No error

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the error in the code? def greet(name): print("Hello, " + name) greet("Alice") greet("Bob", "Charlie")

Missing return statement

Too many arguments in the second function call

Syntax error in print statement

No error

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the error in the code? x = [1, 2, 3] y = x.append(4) print(y)

Syntax error in list append

`append` returns `None`, so `y` is `None`

Incorrect list initialization

No error

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the error in the code? def multiply(a, b): result = a * b return result print(multiply(2))

Missing return statement

Missing argument in function call

Syntax error in function definition

No error

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the error in the code? x = 10 if x > 5: print("x is greater than 5")

Missing colon

Incorrect indentation

Syntax error in condition

No error

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the error in the code? def square(n): return n ** 2 print(square("5"))

Syntax error in function definition

Type error (string cannot be squared)

Missing return statement

No error

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?