Advertisements
Advertisements
प्रश्न
“Every syntax error is an exception but every exception cannot be a syntax error.” Justify the statement.
उत्तर
Exception is an error which occurs at Run Time, due to Syntax Errors, Run Time Errors or Logical Errors. In Python Exceptions are triggered automatically. It can be called forcefully also by using the code.
Syntax Error means errors occurs at compile time, due to not followed the rules of Python Programming Language. These errors are also known as parsing errors. On encountering a syntax error, the interpreter does not execute the program unless we rectify the errors, save and rerun the program. When a syntax error is encountered while working in shell mode, Python displays the name of the error and a small description about the error.
Because Exception can be occurred due to Syntax Errors, Logical Error and Run Time Errors, while Syntax errors occurs only due to syntax. So that “Every syntax error is an exception but every exception cannot be a syntax error.”
APPEARS IN
संबंधित प्रश्न
Which of the following error is also known as Syntax Error?
What types of errors are also known as parsing errors?
What will be the output for the following code?
x = ""hello""
if not type(x) is int:
raise TypeError(""Only integers are allowed"")
The only exception that is raised when the program is syntactically incorrect:
What exception will be thrown in the following case?
>>> import math
>>> math .sqrt(– 4)
An error object does not have information of:
What error is returned by the following statement if the file does not exist?
f = open("A.txt")
Atharva is a Python programmer working on a program to find and return the maximum value from the list. The code written below has syntactical errors. Rewrite the correct code and underline the corrections made.
def max_num (L):
max=L(O)
for a in L:
if a > max
max=a
return max
The code given below accepts a number as an argument and returns the reverse number. Observe the following code carefully and rewrite it after removing all syntax and logical errors. Underline all the corrections made.
define revNumber (num) :
rev = 0
rem = 0
While num > 0:
rem ==num %10
rev = rev*10 + rem
num = num//10
return rev
print (revNumber (1234))