EXCEPTION HANDLING IN PYTHON

EXCEPTION HANDLING IN PYTHON

University

22 Qs

quiz-placeholder

Similar activities

C++ Assesment 1

C++ Assesment 1

University

20 Qs

ARRAY

ARRAY

University

22 Qs

Revision : Chapter 1

Revision : Chapter 1

University

19 Qs

Control Structures  C#

Control Structures C#

University

20 Qs

PROGRAMMING CAMP

PROGRAMMING CAMP

University

20 Qs

EIT Quiz 2

EIT Quiz 2

University

20 Qs

Programación Básica Prácticas Tema 2

Programación Básica Prácticas Tema 2

University

19 Qs

Pengantar Teknologi Informasi 8

Pengantar Teknologi Informasi 8

University

17 Qs

EXCEPTION HANDLING IN PYTHON

EXCEPTION HANDLING IN PYTHON

Assessment

Quiz

Computers

University

Practice Problem

Hard

Created by

M.NIRMALA MCA

Used 132+ times

FREE Resource

AI

Enhance your content in a minute

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

22 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

The unexpected event happened during program execution should be handled by

EXCEPTION

EXPERIMENT

ASSERTION

EXTRAORDINARY

2.

MULTIPLE SELECT QUESTION

20 sec • 1 pt

try:

a=int(input("\n Enter a Value"))

b=int(input("\n Enter a Value "))

c=a/b

print (c)

except:

print("\n Something Went Wrong")


Assume a = 10 and b = 5, then the output will be

5.0

Something Went Wrong

Arithmetic Error

2.0

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Exception disrupts the

Normal flow of the program

Abnornal flow of the program

Hard Disk

None of the Above

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

The suspicious code is put inside the

Try Block

Finally Block

Else Block

Except Block

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

________ statement can also be used without specifying Exception.

Try

Finally

Except

Else

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

try:

a=10/5

print (a)

except ArithmeticError:

print ("This statement is raising an exception" )

finally:

print (" final block executed " )

2.0

final block executed

This statement is raising an exception

final block executed

final block executed

2.0

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

An exception can be manually triggered by the command

raise

try

except

trigger

Access all questions and much more by creating a free account

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?

Discover more resources for Computers