0% found this document useful (0 votes)
6 views

Numerical computing final mcqs[1]

Uploaded by

toonstorytube
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

Numerical computing final mcqs[1]

Uploaded by

toonstorytube
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 22

Bisection Method

Easy Level MCQs:

1. What is the main purpose of the Bisection Method?


a) Solving differential equations
b) Finding the root of a function
c) Computing integrals
d) Maximizing a function
Answer: b) Finding the root of a function
2. In the Bisection Method, the root is located between which two
points?
a) The endpoints of the interval where the function changes sign
b) The midpoint of the interval
c) The maximum and minimum points of the function
d) The x-axis and y-axis intersection points
Answer: a) The endpoints of the interval where the function changes sign
3. What is the stopping criterion in the Bisection Method?
a) The interval becomes very small
b) Maximum iterations are reached
c) The function value at the midpoint is close to zero
d) All of the above
Answer: d) All of the above
4. What type of functions can the Bisection Method solve?
a) Linear functions only
b) Non-linear functions only
c) Functions that change sign in an interval
d) All types of functions
Answer: c) Functions that change sign in an interval
5. What happens to the interval in each iteration of the Bisection
Method?
a) It doubles
b) It is reduced by half
c) It remains the same
d) It increases by one unit
Answer: b) It is reduced by half
6. The Bisection Method is also known as:
a) Regula Falsi Method
b) Binary Search Method
c) Newton-Raphson Method
d) Iterative Refinement Method
Answer: b) Binary Search Method
7. What is the computational complexity of the Bisection Method?
a) Linear
b) Logarithmic
c) Quadratic
d) Exponential
Answer: b) Logarithmic
8. Which property is necessary for the Bisection Method to work?
a) The function must be differentiable
b) The function must be integrable
c) The function must change its sign in the interval
d) The function must be periodic
Answer: c) The function must change its sign in the interval
9. If f(a)>0 and f(b)<0, where does the root lie in the interval [a, b]?
a) Between a and b
b) Exactly at a
c) Exactly at b
d) Root cannot be determined
Answer: a) Between a and b

Hard Level MCQs:

10.If the initial interval in the Bisection Method is [1, 2], how many
iterations are needed to reach an accuracy of 10-3 ?
a) 5
b) 10
c) 11
d) 20
Answer: c) 11
What is the main disadvantage of the Bisection Method?
a) It requires derivative evaluation
b) It converges very slowly
c) It cannot be applied to transcendental equations
d) It requires the function to be continuous
Answer: b) It converges very slowly
11.The Bisection Method guarantees convergence:
a) Always
b) Only if the function is continuous and changes sign in the interval
c) Only for linear functions
d) Only for polynomial functions
Answer: b) Only if the function is continuous and changes sign in the
interval
12.What is the relationship between the initial interval and the
maximum number of iterations in the Bisection Method?
a) The larger the interval, the fewer iterations are needed
b) The smaller the interval, the more iterations are needed
c) The larger the interval, the more iterations are needed
d) The interval does not affect the number of iterations
Answer: c) The larger the interval, the more iterations are needed
13.If the function f(x) = x2 − 4, what is the root obtained using one
iteration of the Bisection Method in the interval [0, 3]?
a) 0.5
b) 1.5
c) 1.75
d) 2.0
Answer: b) 1.5
14.In a Bisection Method iteration, if the midpoint m satisfies f(m) = 0
what happens next?
a) Continue with the next iteration
b) Stop as the root is found
c) Increase the interval size
d) Decrease the step size
Answer: b) Stop as the root is found
15.Which of the following best describes the error in the Bisection
Method?
a) Absolute error increases with iterations
b) Absolute error decreases exponentially with iterations
c) Absolute error decreases linearly with iterations
d) Absolute error decreases logarithmically with iterations
Answer: d) Absolute error decreases logarithmically with iterations
16.In the Bisection Method, the interval is halved in each iteration.
What does this halving do to the error?
a) Multiplies it by 2
b) Divides it by 2
c) Reduces it by 25%
d) Keeps it constant
Answer: b) Divides it by 2
17.For a function f(x) = ex − 3x, the Bisection Method is applied to find a
root in [0, 1]. After two iterations, the estimated root is closest to:
a) 0.25
b) 0.375
c) 0.625
d) 0.5
Answer: b) 0.375
18.The Bisection Method fails to find the root when:
a) The function is discontinuous
b) The function does not change sign in the interval
c) Both a and b
d) None of the above
Answer: c) Both a and b
19.If the Bisection Method is applied to f(x) = x3 + 2x in the interval [0,
1], the first two midpoints are:
a) 0.25 and 0.5
b) 0.5 and 0.75
c) 0.5 and 0.25
d) 0.25 and 0.75
Answer: b) 0.5 and 0.75

Secent Method
Easy Level MCQs

1. What is the Secant Method used for?


a) Calculating integrals
b) Finding roots of equations
c) Solving matrices
d) Maximizing a function
Answer: b) Finding roots of equations
2. What is the key difference between the Secant Method and the
Bisection Method?
a) Secant Method requires continuity of the function
b) Secant Method does not require an interval where the sign changes
c) Secant Method uses derivatives
d) Secant Method is slower than the Bisection Method
Answer: b) Secant Method does not require an interval where the sign
changes
3. The Secant Method is based on approximating the function with:
a) A tangent line
b) A secant line
c) A quadratic curve
d) A horizontal line
Answer: b) A secant line
4. What is the stopping criterion in the Secant Method?
a) The function value is close to zero
b) The difference between two consecutive approximations is very small
c) The maximum number of iterations is reached
d) All of the above
Answer: d) All of the above
5. The Secant Method requires how many initial guesses?
a) 1
b) 2
c) 3
d) 4
Answer: b) 2
6. Which of the following is a limitation of the Secant Method?
a) It always converges
b) It requires a derivative
c) It may fail if the initial guesses are not chosen properly
d) It only works for polynomials
Answer: c) It may fail if the initial guesses are not chosen properly
7. The Secant Method falls under which category of root-finding
methods?
a) Bracketing methods
b) Open methods
c) Numerical integration methods
d) Iterative refinement methods
Answer: b) Open methods
8. The formula used in the Secant Method is derived from:
a) The Newton-Raphson Method
b) The slope of the secant line
c) The Bisection Method
d) Integration rules
Answer: b) The slope of the secant line

Hard Level MCQs

9. What is the order of convergence of the Secant Method?


a) 1
b) 1.5
c) 1.618 (Golden ratio)
d) 2
Answer: c) 1.618 (Golden ratio)
10.The Secant Method is faster than the Bisection Method because:
a) It uses derivatives
b) It avoids halving the interval
c) It does not require the function to change sign
d) It requires fewer iterations for convergence
Answer: d) It requires fewer iterations for convergence
11.If the initial guesses x0 = 1 and x1 = 2 are used for the Secant Method,
what is the next approximation x2 for f(x) = x2 – 4 ?
a) 1.5
b) 3.0
c) 0.0
d) 2.5
Answer: a) 1.5
12.Which of the following scenarios can cause the Secant Method to
fail?
a) If the function is discontinuous
b) If the initial guesses are very close to each other
c) If the secant line becomes horizontal
d) All of the above
Answer: d) All of the above
13.In the Secant Method, what happens if f (x1) − f(x0) = 0?
a) The method converges immediately
b) Division by zero occurs, and the method fails
c) The next approximation is the same as the previous one
d) The method switches to a different algorithm
Answer: b) Division by zero occurs, and the method fails
14.What is the main advantage of the Secant Method over the Newton-
Raphson Method?
a) It requires only one initial guess
b) It does not require the computation of derivatives
c) It converges faster than Newton-Raphson
d) It works for all types of functions
Answer: b) It does not require the computation of derivatives
15.For the Secant Method, if the iterations do not converge, the most
likely reason is:
a) The function is not differentiable
b) The interval is too large
c) The initial guesses are poorly chosen
d) The method was applied to a linear function
Answer: c) The initial guesses are poorly chosen
16.If the function f (x) = x3 – x − 2, and the Secant Method is applied
starting with x0 = 1 and x1 = 2, the root will be approximated in the
interval:
a) [1, 1.5]
b) [1.5, 2]
c) [1.5, 1.75]
d) [1.75, 2]
Answer: b) [1.5, 2]
17.The Secant Method generally converges faster than the Bisection
Method, but it may fail if:
a) The function is linear
b) The secant line is horizontal
c) The initial guesses are too far apart
d) None of the above
Answer: b) The secant line is horizontal
18.The number of iterations required by the Secant Method is generally:
a) Higher than the Newton-Raphson Method
b) Equal to the Newton-Raphson Method
c) Lower than the Newton-Raphson Method
d) Unpredictable
Answer: a) Higher than the Newton-Raphson Method
19.The Secant Method can approximate roots even if:
a) The function is discontinuous
b) The derivative of the function is unknown
c) The initial guesses are incorrect
d) The function is non-continuous and non-differentiable
Answer: b) The derivative of the function is unknown

Jacobi method:
1. What is the primary goal of the Jacobi method?

A) Solve linear systems directly


B) Find the determinant of a matrix
C) Solve linear systems iteratively
D) Compute matrix inverses

Answer: C) Solve linear systems iteratively

2. The Jacobi method is best suited for solving systems of linear equations
where the matrix is:

A) Sparse and symmetric


B) Diagonally dominant or symmetric positive definite
C) Non-square
D) Identity matrix
Answer: B) Diagonally dominant or symmetric positive definite

4. What is the stopping criterion for the Jacobi method?

A) When the determinant of matrix AAA is zero


B) When the difference between successive iterations is small
C) When the sum of all matrix elements is zero
D) When the inverse of AAA is computed

Answer: B) When the difference between successive iterations is small

5. Which of the following is not required for the Jacobi method to converge?

A) The matrix must be diagonally dominant


B) The matrix must be symmetric
C) The matrix should have a unique solution
D) The matrix must have no zero diagonal elements

Answer: B) The matrix must be symmetric

6. If the matrix AAA is not diagonally dominant, the Jacobi method:

A) Always converges
B) May fail to converge
C) Converges very quickly
D) Requires more iterations

Answer: B) May fail to converge

7. In the Jacobi method, the solution vector x(k+1)x^{(k+1)}x(k+1) is


calculated using:

A) The same values from the previous iteration for all components
B) Values from the current iteration for all components
C) The previous values for all components except for the iii-th element
D) Only the diagonal elements of the matrix

Answer: C) The previous values for all components except for the iii-th element

8. Which of the following matrices is diagonally dominant?


A) [2112]\begin{bmatrix} 2 & 1 \\ 1 & 2 \end{bmatrix}[2112]
B) [3−124]\begin{bmatrix} 3 & -1 \\ 2 & 4 \end{bmatrix}[32−14]
C) [5135]\begin{bmatrix} 5 & 1 \\ 3 & 5 \end{bmatrix}[5315]
D) [1111]\begin{bmatrix} 1 & 1 \\ 1 & 1 \end{bmatrix}[1111]

Answer: B) [3−124]\begin{bmatrix} 3 & -1 \\ 2 & 4 \end{bmatrix}[32−14]

9. What is the main disadvantage of the Jacobi method compared to other


methods like Gauss-Seidel?

A) It requires more memory


B) It converges more slowly
C) It requires less computation
D) It does not work for large systems

Answer: B) It converges more slowly

10. Which of the following is not a typical use case of the Jacobi method?

A) Solving large sparse linear systems


B) Solving small systems of equations
C) Solving systems that require direct methods
D) Solving systems in scientific computing

Answer: C) Solving systems that require direct methods

12. The Jacobi method can be parallelized because:

A) Each element update only depends on the diagonal element


B) Each element update only depends on the current value of that element
C) Each element update depends on all other elements from the previous iteration
D) The method does not require iteration

Answer: C) Each element update depends on all other elements from the previous iteration

13. The Jacobi method is an example of a:

A) Direct method
B) Iterative method
C) Divided difference method
D) Least-squares method

Answer: B) Iterative method

14. How do you determine the number of iterations required to achieve a


solution with sufficient accuracy using the Jacobi method?

A) By checking when the determinant of the matrix becomes non-zero


B) By determining when the residual is below a threshold
C) By inspecting the matrix AAA
D) By solving the system directly

Answer: B) By determining when the residual is below a threshold

15. Which of the following would be a suitable stopping condition for the
Jacobi method?

A) When the sum of the absolute values of the matrix elements is small
B) When the solution vector stops changing significantly between iterations
C) When the matrix is fully sparse
D) When the determinant of the matrix is positive

Answer: B) When the solution vector stops changing significantly between iterations

16. The Jacobi method is particularly effective when the matrix is:

A) Symmetric positive definite


B) Sparse and rectangular
C) Singular
D) Upper triangular

Answer: A) Symmetric positive definite

17. In the Jacobi method, the updated value of xi(k+1)x_i^{(k+1)}xi(k+1)


depends on:

A) The current value of xi(k)x_i^{(k)}xi(k)


B) The values of all other variables from the previous iteration
C) The diagonal element only
D) Only the right-hand side vector bbb

Answer: B) The values of all other variables from the previous iteration
18. If the initial guess for xxx in the Jacobi method is x(0)=[0,0,0]Tx^{(0)} =
[0, 0, 0]^Tx(0)=[0,0,0]T, the first iteration uses:

A) Only the diagonal elements of AAA


B) Only the values from the last iteration
C) The right-hand side vector bbb
D) A random initial guess

Answer: C) The right-hand side vector bbb

19. The Jacobi method is guaranteed to converge if:

A) The matrix AAA is symmetric


B) The matrix AAA is non-singular
C) The matrix AAA is diagonally dominant
D) The matrix AAA is sparse

Answer: C) The matrix AAA is diagonally dominant

20. A disadvantage of the Jacobi method compared to other iterative methods


is:

A) It requires more memory


B) It cannot be parallelized
C) It converges more slowly
D) It is not applicable to large systems

Answer: C) It converges more slowly

Guass seidal Method:


1. The Gauss-Seidel method is used to solve:

A) Quadratic equations
B) Systems of linear equations
C) Nonlinear equations
D) Polynomial equations

Answer: B) Systems of linear equations


2. In the Gauss-Seidel method, the updated values of
xi(k+1)x_i^{(k+1)}xi(k+1) are computed using:

A) Only the previous iteration values


B) The most recent updated values within the same iteration
C) The initial guess values
D) A random selection of values

Answer: B) The most recent updated values within the same iteration

3. The Gauss-Seidel method is more efficient than the Jacobi method because
it:

A) Updates all variables in one step


B) Uses the most recent values during the same iteration
C) Doesn’t require an initial guess
D) Has more complex calculations

Answer: B) Uses the most recent values during the same iteration

4. In the Gauss-Seidel method, after updating x1(k+1)x_1^{(k+1)}x1(k+1), it is


used immediately to update the next variables. This process makes the
method:

A) Slower
B) More memory-intensive
C) More efficient
D) Less accurate

Answer: C) More efficient

5. The Gauss-Seidel method is particularly useful when the matrix AAA is:

A) Sparse
B) Symmetric and positive definite
C) Diagonally dominant
D) Both B and C

Answer: D) Both B and C


6. What is the main advantage of the Gauss-Seidel method over other iterative
methods like Jacobi?

A) It requires fewer iterations to converge


B) It works for non-square matrices
C) It doesn't require an initial guess
D) It uses only the diagonal elements

Answer: A) It requires fewer iterations to converge

7. The Gauss-Seidel method is an example of a(n):

A) Direct method
B) Iterative method
C) Approximation method
D) Eigenvalue method

Answer: B) Iterative method

8. In the Gauss-Seidel method, the value of x1(k+1)x_1^{(k+1)}x1(k+1) is


computed using:

A) Only the diagonal element of AAA


B) The previous value of x1(k)x_1^{(k)}x1(k) and the updated values of other variables
C) The values from the right-hand side vector bbb
D) Only the previous iteration's values

Answer: B) The previous value of x1(k)x_1^{(k)}x1(k) and the updated values of other
variables

9. The Gauss-Seidel method guarantees convergence if the matrix AAA is:

A) Symmetric
B) Diagonally dominant or positive definite
C) Sparse
D) Non-singular

Answer: B) Diagonally dominant or positive definite

10. Which of the following is not a limitation of the Gauss-Seidel method?


A) Requires an initial guess
B) May not converge if the matrix is not diagonally dominant
C) Requires large memory for dense matrices
D) Always converges for non-diagonal matrices

Answer: D) Always converges for non-diagonal matrices

11. The Gauss-Seidel method is particularly suitable for:

A) Solving small systems with few equations


B) Solving systems with sparse and large matrices
C) Solving nonlinear systems of equations
D) Finding eigenvalues of a matrix

Answer: B) Solving systems with sparse and large matrices

12. The Gauss-Seidel method converges faster than the Jacobi method
because:

A) It uses all previous values for each variable


B) It updates variables sequentially using the most recent values
C) It requires fewer iterations
D) It requires fewer computational steps

Answer: B) It updates variables sequentially using the most recent values

13. In the Gauss-Seidel method, once x1(k+1)x_1^{(k+1)}x1(k+1) is updated,


it is used to update:

A) Only x2(k+1)x_2^{(k+1)}x2(k+1)
B) All remaining variables in the same iteration
C) Only xn(k+1)x_n^{(k+1)}xn(k+1)
D) No other variables in the same iteration

Answer: B) All remaining variables in the same iteration

14. The Gauss-Seidel method is more memory-efficient than the Jacobi


method because:

A) It doesn't require storing multiple vectors


B) It updates values simultaneously
C) It needs fewer iterations
D) It works with sparse matrices only

Answer: A) It doesn't require storing multiple vectors

15. If the matrix AAA is not diagonally dominant, the Gauss-Seidel method:

A) Will definitely converge


B) May fail to converge
C) Converges faster
D) Needs fewer iterations

Answer: B) May fail to converge

Here are 5 easy and simple multiple-choice questions (MCQs) related to the Gauss-Seidel
method:

16. The Gauss-Seidel method converges faster when the coefficient matrix is:

A) Diagonally dominant or symmetric positive definite


B) Sparse and rectangular
C) Identity matrix
D) Singular

Answer: A) Diagonally dominant or symmetric positive definite

C) Slower to converge
D) More complex to implement

Answer: B) More efficient in terms of computation and memory

17. The Gauss-Seidel method is typically used to solve:

A) Non-linear equations
B) Systems of linear equations
C) Ordinary differential equations
D) Polynomial equations

Answer: B) Systems of linear equation


Regula-falsi Method:
1. The Regula Falsi method is used to find:

A) The derivative of a function


B) The root of a function
C) The integral of a function
D) The maximum of a function

Answer: B) The root of a function

2. The Regula Falsi method is similar to which other root-finding method?

A) Newton's method
B) Bisection method
C) Euler's method
D) Trapezoidal rule

Answer: B) Bisection method

3. In the Regula Falsi method, you need to start with two points aaa and bbb
such that:

A) f(a)=f(b)f(a) = f(b)f(a)=f(b)
B) f(a)⋅f(b)>0f(a) \cdot f(b) > 0f(a)⋅f(b)>0
C) f(a)⋅f(b)<0f(a) \cdot f(b) < 0f(a)⋅f(b)<0
D) f(a)=0f(a) = 0f(a)=0

Answer: C) f(a)⋅f(b)<0f(a) \cdot f(b) < 0f(a)⋅f(b)<0

5. In the Regula Falsi method, once the new approximation ccc is computed,
the interval is updated based on:

A) The value of ccc and f(c)f(c)f(c)


B) The sign of f(c)f(c)f(c) and f(a)f(a)f(a) or f(b)f(b)f(b)
C) The sign of f(a)f(a)f(a) and f(b)f(b)f(b) only
D) The value of ccc alone

Answer: B) The sign of f(c)f(c)f(c) and f(a)f(a)f(a) or f(b)f(b)f(b)


6. The Regula Falsi method can only be used when:

A) The function has an extreme point


B) The function changes signs at the endpoints of the interval
C) The function is differentiable
D) The function is continuous

Answer: B) The function changes signs at the endpoints of the interval

7. Which of the following is true for the Regula Falsi method?

A) It always converges faster than the bisection method


B) It can fail to converge if the function has a horizontal tangent near the root
C) It requires no initial guesses
D) It finds complex roots only

Answer: B) It can fail to converge if the function has a horizontal tangent near the root

8. In the Regula Falsi method, when should the new approximation ccc
replace aaa or bbb?

A) When f(c)=0f(c) = 0f(c)=0


B) When f(a)⋅f(c)<0f(a) \cdot f(c) < 0f(a)⋅f(c)<0
C) When f(b)⋅f(c)<0f(b) \cdot f(c) < 0f(b)⋅f(c)<0
D) When f(a)=f(b)f(a) = f(b)f(a)=f(b)

Answer: B) When f(a)⋅f(c)<0f(a) \cdot f(c) < 0f(a)⋅f(c)<0 or C) When f(b)⋅f(c)<0f(b) \cdot
f(c) < 0f(b)⋅f(c)<0

9. The Regula Falsi method can be described as a:

A) Bisection method with a linear approximation


B) Newton's method with interval bracketing
C) Secant method with interval bracketing
D) Direct method without iterations

Answer: A) Bisection method with a linear approximation


10. The main advantage of the Regula Falsi method over the bisection method
is:

A) It always converges in fewer iterations


B) It uses linear interpolation, which may speed up convergence
C) It requires no initial guesses
D) It works only with continuous functions

Answer: B) It uses linear interpolation, which may speed up convergence

11. The Regula Falsi method guarantees convergence when:

A) The function is continuous


B) The function has a derivative
C) The function has opposite signs at aaa and bbb
D) The function is quadratic

Answer: C) The function has opposite signs at aaa and bbb

12. The formula for the new point ccc in Regula Falsi method is derived using:

A) Arithmetic mean
B) Geometric mean
C) Linear interpolation
D) Polynomial fitting

Answer: C) Linear interpolation

13. If the function in the Regula-Falsi method has a zero slope at the point, the
method may:

A) Converge slowly
B) Converge faster than expected
C) Fail to converge
D) Converge exactly

Answer: C) Fail to converge

14. Which of the following methods uses a linear interpolation to estimate the
root?
A) Newton's method
B) Bisection method
C) Regula Falsi method
D) Secant method

Answer: C) Regula Falsi method

15. The Regula Falsi method requires an initial guess for:

A) One point only


B) Two points such that f(a)⋅f(b)<0f(a) \cdot f(b) < 0f(a)⋅f(b)<0
C) Three points
D) The function’s derivative

Answer: B) Two points such that f(a)⋅f(b)<0f(a) \cdot f(b) < 0f(a)⋅f(b)<0

All defination MCQS:


1. What is the main purpose of rounding a number?

A) To make the number more precise


B) To reduce the number of digits for easier handling
C) To calculate the square root
D) To make the number larger

Answer: B) To reduce the number of digits for easier handling

2. Which of the following refers to how close a measured value is to the true
value?

A) Rounding
B) Precision
C) Accuracy
D) Inflection point

Answer: C) Accuracy

3. What does precision refer to in numerical calculations?

A) How close the result is to the true value


B) The number of significant digits used in representing a number
C) The amount of rounding applied to a number
D) The change in direction of a curve
Answer: B) The number of significant digits used in representing a number

4. An inflection point occurs where the second derivative of a function:

A) Is zero
B) Changes sign
C) Is undefined
D) Is equal to the first derivative

Answer: B) Changes sign

5. Which of the following is used for approximating the area under a curve?

A) Precision
B) Accuracy
C) Numerical integration
D) Rounding

Answer: C) Numerical integration

6. Which term refers to the process of approximating a value with fewer


digits?

A) Inflection point
B) Numerical integration
C) Rounding
D) Accuracy

Answer: C) Rounding

7. In numerical computing, the level of detail or exactness in a number is


referred to as:

A) Rounding
B) Precision
C) Inflection
D) Integration

Answer: B) Precision
8. Which of the following methods is used to find the area under a curve when
an analytical solution is not possible?

A) Rounding
B) Numerical integration
C) Precision
D) Accuracy

Answer: B) Numerical integration

9. An inflection point on a curve marks the point where:

A) The curve reaches its highest point


B) The slope of the curve is zero
C) The curve changes from concave to convex or vice versa
D) The curve intersects the x-axis

Answer: C) The curve changes from concave to convex or vice versa

10. If you round 3.14159 to two decimal places, what is the result?

A) 3.1
B) 3.142
C) 3.14
D) 3.141

Answer: C) 3.14

11. Which of the following is true about numerical integration?

A) It is used to find the root of a function


B) It is used to calculate areas under curves approximately
C) It helps to round numbers
D) It is used to determine the accuracy of a measurement

Answer: B) It is used to calculate areas under curves approximately

12. If a measurement has high precision, it means:

A) The measurement is very close to the true value


B) The measurement has many significant digits
C) The measurement is rounded to the nearest whole number
D) The measurement is inaccurate

Answer: B) The measurement has many significant digits

13. Which of the following is an example of high accuracy?

A) A measurement of 3.0 when the true value is 3.1


B) A measurement of 5.0 when the true value is 5.0
C) A measurement of 10.5 when the true value is 10.2
D) A measurement of 1.5 when the true value is 2.0

Answer: B) A measurement of 5.0 when the true value is 5.0

14. In numerical methods, what is typically used to approximate integrals?

A) Derivatives
B) Rounding
C) Numerical integration
D) Precision

Answer: C) Numerical integration

15. The process of determining the point where the curve changes direction is
called:

A) Rounding
B) Precision
C) Numerical integration
D) Inflection point

Answer: D) Inflection point

You might also like