answersLogoWhite

0

What else can I help you with?

Continue Learning about Engineering

What was the purpose for the Aswan Dam?

The Aswan high dam is the dam located on the Nile River. It was built to help keep it contained. When it was being built , the dam backed up and created Lake Nasser, located near Cairo, a city in Egypt.


What is the differences between a logical error and syntax error?

Answer: Syntax Error - Occurs when the code isn't formatted or typed correctly. i.e. In python, typing If instead of if because it only recognizes lowercase. Logical Error - Occurs when there is a fallacy of reasoning. i.e. In python, typing if x < 0 and x > 5. Since a value can't be less than 0 and greater than 5, a logical error will occur. Answer: a) Syntax Error Definition : An error cause by violation of the programming language used. Symptoms : Code fails to compile (error message from compiler) b) Logical Error Definition : An error caused by violation of logic (range, comparison, etc.). This error will NOT crash the program. Symptoms : Unexpected output c) Runtime Error/Execution Error Definition : Any error, normally logical error that cause the program to crash. Symptoms : Program crashes.


What does a table tag do in HTML?

A TABLE in HTML is a way to display data in rows and colums. A simple example is shown below and the atributes that can be used.First Row - First CellFirst Row - Secon CellSecond Row - First CellSecond Row - Second CellThis opens the table then defines a row. Within that row you are placing two data items. You are then closing the row. You are then defining the second row. Within that row you are placing the next two data items. You are then closing the row. You are then closing the table.* … * * … * * * * * * *