answersLogoWhite

0


Best Answer

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

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Any violation in the syntax of a program statement is called logic error?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How the program statement and code are related?

A statement in your program is part of the code. In a low-level programming language, a statement will map directly to a single CPU instruction. In a high-level programming language, a statement is the smallest element of the language's syntax.


Explain goto and return in c?

A return statement is used to transfer the program control flow to the function that has called the current function under execution. If the function is main, then the program returns the control flow to the operating system. The syntax for return statement is:return return-type;A goto statement is used to transfer the control flow to a particular labelled statement, not necessarily back to the calling program. There are somerestrictionson using a goto statement. For eg: the goto statement should not skip any variable declarations. The use of goto statement is usually considered as a bad programming practice. The syntax for goto statement is:goto label_name;....label_name: statements;


What is syntax of a remark statement?

The only language, which has remark-statement, is BASIC. Syntax: REM any text


What is The process of locating and correcting syntax and logic errors in a program called?

debugging


Mistakes in a program that involve the improper use of the programming language are called?

syntax error


What are the kinds of conditional statement in foxpro with syntax?

The conditional statement in foxpro is DID YOU GET IT


Write a sample program using ASPNET explaining all the syntax and semantics of the program?

write a sample program using asp.net explaining all the syntax and semantics of the program


Syntax of nested if in c?

If(condition) { if-else statement; } else { if-else statement; }


What is a syntax for REM statement?

REM any text


Define Syntax Error in computer?

A syntax error is a scenario in programming where the code that is written by a programmer which is incorrect as per the language structure. For example I say the following statement in English: it is syntactically wrong: I currently in write java questions for wikianswers yesterday and tomorrow all day short. If you see the above statement, it is grammatically wrong. That is exactly what a syntax error is for a java program. It is incorrect as per the programming language specifications.


What is for statement in c?

It is one of the statements. Its syntax in BNF is the following: statement ::= for_statement for_statement ::= 'for' '(' opt_expression ';' expression ';' expression ')' statement


What will uncover any syntax errors in your program?

The compiler