Python Exception

Python Exception

University

15 Qs

quiz-placeholder

Similar activities

Java Programming

Java Programming

University

20 Qs

PL SQL

PL SQL

University - Professional Development

20 Qs

Code Junction 4

Code Junction 4

University

20 Qs

Talent Next Java MCQ-1

Talent Next Java MCQ-1

University

10 Qs

Python Test1 (If Statement)

Python Test1 (If Statement)

University

10 Qs

Quiz1_7A

Quiz1_7A

2nd Grade - Professional Development

20 Qs

C Programming Quiz-5

C Programming Quiz-5

University

10 Qs

Exception handling -oracle plsql

Exception handling -oracle plsql

University

15 Qs

Python Exception

Python Exception

Assessment

Quiz

Computers

University

Hard

Created by

RAJKUMAR. K Chennai

Used 1+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The unexpected event happened during program execution should be handled by

EXCEPTION

EXPERIMENT

ASSERTION

EXTRAORDINARY

2.

MULTIPLE CHOICE QUESTION

30 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

30 sec • 1 pt

Exception disrupts the

Abnornal flow of the program

Hard Disk

Normal flow of the program

None of the Above

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The suspicious code is put inside the

Try Block

Finally Block

ELse Block

Except Block

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

________ statement can also be used without specifying Exception.

Try

Finally

Except

Else

6.

MULTIPLE CHOICE QUESTION

30 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

30 sec • 1 pt

An exception can be manually triggered by the command

try

raise

except

trigger

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?