Podcast
Questions and Answers
type of errors in which the program executes but gives incorrect result is
type of errors in which the program executes but gives incorrect result is
exception is generated by
exception is generated by
the block to handle all the exception is
the block to handle all the exception is
which block is executed when no exception is raised from the try block?
which block is executed when no exception is raised from the try block?
Signup and view all the answers
try block is immediately followed by _____ block to handle an exception.
try block is immediately followed by _____ block to handle an exception.
Signup and view all the answers
which exception is raised when two or more data types are mixed without coercion?
which exception is raised when two or more data types are mixed without coercion?
Signup and view all the answers
when you accept string instead of integer value,____ is raised.
when you accept string instead of integer value,____ is raised.
Signup and view all the answers
which statement raises exception if the expression is false?
which statement raises exception if the expression is false?
Signup and view all the answers
what will be the output of the following code?
x=[1,2,3,4]
print(x[4])
what will be the output of the following code? x=[1,2,3,4] print(x[4])
Signup and view all the answers
'1'==1 will result in
'1'==1 will result in
Signup and view all the answers