In: Math
For this discussion, comment on any programming errors you encountered.
Did the same issues keep recurring?
Programming errors are some faults that make our program to run not according to our expectation , sometimes due to these errors program may not run. Programming errors are very common in the program field. Most of the time , I come in to face so many errors during programming. Among those one common error is missing or extra use of brackets, semicolons and some typing mistakes like 'Int' instead of 'int' . So these errors are seen among beginners and these event can prevent program from running. These type of errors are commonly called as syntax error. And these error occurs due to typing mistakes or improper use of syntax of the programming language . For proper running of the program these errors should be found and fixed. If there is any syntax error in your program it will be shown by compiler , when you try to run it .This makes the finding and fixing of error more easy .
When we type programs very fast chances of syntax error is high and in my case this issue was repeating when I started the programming but now syntax errors are very rare in my programs.