Computer Science, asked by jansisinghal, 4 months ago

the errors in calculations arise due to.......... input by the users​

Answers

Answered by kajalmhaskar
1

Answer:

Python will find these kinds of errors when it tries to parse your program, and exit with an error message without running anything. Syntax errors are mistakes in the use of the Python language, and are analogous to spelling or grammar mistakes in a language like English: for example, the sentence Would you some tea? does not make sense – it is missing a verb

please mark me brainlist please

Answered by aditijaink283
0

Answer:

The answer to the given question is:

wrong/incorrect

Explanation:

The errors in calculations arise due to....wrong/incorrect...... input by the users​.

Calculation errors are usually the result of incorrect data entry or an error in the program. It's very rare for a physical failure like a component failure or power surge to cause bad values. These often cause system crashes.

However, some programs only compute an "approximate" value because the actual value cannot be represented as a finite sequence of symbols. For example, the number 1/3 cannot be written exactly in decimal or binary. It can only be approximate. In addition, the trigonometric, exponential, and logarithmic functions can only be approximated to the solution of the differential equation. So you are using floating point arithmetic with a fixed and limited number of digits. When performing a long calculation, addition, subtraction, multiplication, and division, the error increases. In particular, when subtracting two very large numbers that are nearly equal, the percentage error can increase significantly. All of this is covered in the "numerical analysis" topic so you can find algorithms that produce results that are accurate enough for your purposes.

There are however so-called "chaotic" systems. Of these, there is no feasible way to compute an exact value within a limited time.

#SPJ3

Similar questions