answersLogoWhite

0

What is an error statement?

Updated: 12/16/2022
User Avatar

Wiki User

14y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is an error statement?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Any violation in the syntax of a program statement is called logic error?

No. A violation in the syntax of a program statement is called a syntax error.


What is a final catch statement?

A "final catch" or a "try catch" statement is an exception (error) handling statement that will try to run the code between the final/try and "catch". If an error has been encountered, then the computer will proceed to the catch portion of the statement to prevent the program from terminating on error.


What is the error in this SQL statement?

You need to tell us what the statement is - in order for us to help you !


What is the correct wording on a bank statement when the bank gives you a credit for an error they made?

There is no correct or specific wording. Normally, the word credit or credit for bank error will appear on your statement.


Is missing statement an empty statement that does nothing?

empty statement does nothing, 'missing statement' is an error-message from the compiler, eg: { if (x==2) } corrected version: { if (x==2); }


Can you write plus at end of c statement?

No. That would be a syntax error. Only a right semicolon (;) can go at the end of a statement.


What is meant by 'else without if '?

I'm guessing that this showed up as part of a compilation error. What it means is that it found an "else" statement without an "if" statement preceding it. { // this is the normal form of an if-else block if(a==b) { ; }else { ; } // this causes an "else without if" error else { ; } }


What are the advantages of bank reconciliation statement?

BRS is done to know the difference between Bank book and Cash book...to find any error occured in statement..


What is the difference between debugger and translator?

debugger find error and tell us and we remove them manually.interpreter is a translatol that translate source code to macihne statement by statement.


Can anyone give an example of a fallacy?

A fallacy is a statement that is in error or not correct. "The earth is flat" is a fallacy.


What is difference between syntx error and logical error?

A syntax error is when you break the grammar rules of the language, such as forgetting to terminate a C++ statement with a semi-colon. A logical error is when your code does not perform as expected, typically due to an assumption that proves to be incorrect.


What are computer debuggers?

Debuggers are software programs that are used to check other programs. One of their functions is to do a syntax check. For example, if a higher level language uses an "if else" statement and the programmer writes it as "if esle", which is a common error, the debugger would recognize the spelling error and "flag" (mark) the statement as being in error. That is a very simple error, however, there can be very complex errors that a human may not be able to discern.