answersLogoWhite

0

What else can I help you with?

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 a categorical error and how does it impact the validity of a statement or argument?

A categorical error occurs when the terms or categories used in a statement or argument are not logically related or do not align properly. This impacts the validity of the statement or argument because it introduces a flaw in the reasoning, making it less reliable or convincing.


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.