My Cart
Your Cart 0

    Your cart is empty.

  • Total (Amount) ₹0.00
Previous year question hub

Linear and Nonlinear Numerical Solvers - Numerical Methods - Engineering Sciences Previous Year Questions

Practice Linear and Nonlinear Numerical Solvers - Numerical Methods - Engineering Sciences previous year questions organised from real papers, with year-wise coverage and clear topic navigation.

6Papers
6Years
22Questions
1Topics

Linear and Nonlinear Numerical Solvers question pattern

Every graph below is calculated only from this selection.

Questions by year

Year-wise coverage for Linear and Nonlinear Numerical Solvers. Each bar uses a separate theme-derived color.

Difficulty distribution

How the classified questions are distributed by difficulty.

Medium 11 50%
Easy 11 50%

Question type distribution

MCQ, numerical, multiple-select and other formats found in these papers.

MCQ 21 95.5%
Numerical Answer Type (NAT) 1 4.5%

Subject weightage

Top subjects by unique question coverage.

Engineering Sciences
22 Qs

Most asked topics

Top topics across the included previous year papers.

Numerical Methods
22 Qs

Subtopic coverage

Top subtopics inside this exact selection.

Linear and Nonlinear Numerical Solvers
22 Qs

Paper coverage

Question coverage for the most populated papers. Every active PYP paper remains listed below.

Engineering Sciences (XE) 2020
1 Qs
Engineering Sciences (XE) 2015
1 Qs
Engineering Sciences (XE) 2011
1 Qs
Engineering Sciences (XE) 2009
1 Qs
Engineering Sciences (XE) 2008
8 Qs
Engineering Sciences (XE) 2007
10 Qs

Included previous year papers

Newest papers appear first. Sort by year, question coverage or name.

PaperYear / sessionQuestions in this viewOpen
Engineering Sciences (XE) 202020201View paper
Engineering Sciences (XE) 201520151View paper
Engineering Sciences (XE) 201120111View paper
Engineering Sciences (XE) 200920091View paper
Engineering Sciences (XE) 200820088View paper
Engineering Sciences (XE) 2007200710View paper

All Linear and Nonlinear Numerical Solvers previous year questions

Practice every matching question in batches of 20, with every available option.

1
2007 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2007
Consider the following four FORTRAN statements
S1: X = 5 ** 3
S2: X = (-5) ** 3.0
S3: X = 5 ** -3
S4: X = 5 ** 3.0
Which of the following sets contains the set of valid statements from above?
Open complete paper
2
2007 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2007
The iteration scheme \( x_{n+1} = 1/(1 + x_n^2) \) converges to a real number x in the interval (0, 1) with \( x_0 = 0.5 \). The value of x correct up to 2 places of decimal is equal to
Open complete paper
3
2007 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2007
The value of sum that will be printed by the above program is
Open complete paper
4
2007 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2007
The equation \( g(x) = x \) is solved by Newton-Raphson iteration method, starting with an initial approximation \( x_0 \) near the simple root \( \alpha \). If \( x_{n+1} \) is the approximation to \( \alpha \) at the \( (n+1)^{th} \) iteration, then
Open complete paper
5
2007 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2007
If Runge-Kutta method of order 4 is used to solve the differential equation $\frac{dy}{dx} = f(x), \; y(0)=0$ in the interval $[0,h]$ with step size $h$, then
Open complete paper
6
2007 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2007
If a root of \( f(x) = x^2 - 2x + 1 = 0 \) is obtained by using the iterative scheme \( x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n)} \) with initial value \( x_0 = 0.5 \), then the convergence rate is
Open complete paper
7
2007 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2007
Consider the system of linear simultaneous equations \( x + 10y = 5; \; y + 5z = 1; \; 10x - y + z = 0 \). On applying Gauss-Seidel method the value of x correct up to 4 decimal places is
Open complete paper
8
2007 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2007
The iteration scheme
\(x_{n+1} = \sqrt{a} \left(1 - \frac{3a^2}{x_n^2} - \frac{3a^2}{x_n}\right)\), \(a > 0\) converges to the real number
Open complete paper
9
2007 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2007
Consider the following recursive function g().

Recursive integer function g(m,n) result (r)
integer:: m,n
if (n == 0) then
r = m
else if (m <= 0) then
r = n+1
else if ((n - n/2*2) == 1) then
r = g(m-1, n+1)
else r = g(m-2, n/2)
end if
end

Which value will be returned if the function g is called with 6, 6?
Open complete paper
10
2007 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2007
If the following function is called with x = 1

real function print_value(x)
real:: x, sum, term
integer:: i
i = 0
sum = 2.0
term = 1.0
do while (term > 0.00001)
term = x * term/(i+1)
sum = sum + term
i = i + 1
end do
print_value = sum
end

the value returned will be close to
Open complete paper
11
2008 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2008
An approximate solution of the equation \( x^3 - 3x + 1 = 0 \) is 0.347296. Which of the following iterating functions will converge most rapidly to this root?
Open complete paper
12
2008 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2008
A continuous function f(x) defined in the interval [a,b] is such that f(a)f(b)<0. A possible number of simple roots of the equation f(x)=0 in this interval is
Open complete paper
13
2008 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2008
The set of simultaneous equations \[ 4x - y = 15 \] \[ x + 5y = 9 \] is to be solved using Jacobi’s iterative method. Starting with the initial values \( x = 2, y = 2, \) the values of \( x \) and \( y \) after two iterations are, respectively,
Open complete paper
14
2008 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2008
A real root of the equation \(x^3 - 2x - 5 = 0\) lies between \(x = 2\) and \(x = 3\). The location of the root obtained after the second iteration using the method of false position is
Open complete paper
15
2008 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2008
Consider the following part of a Fortran 90 function ```fortran INTEGER FUNCTION RESULT(X) INTEGER :: X VALUE = 1 DO IF ( X == 0 ) EXIT TERM = MOD (X, 10) VALUE = VALUE*TERM X = X/10 END DO RESULT = VALUE END FUNCTION RESULT ``` If the above function is called with an integer \(X = 123\), the value returned by the function will be
Open complete paper
16
2008 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2008
A portion of a Fortran 90 program is reproduced below:
PROGRAM CHECK_CYCLE
    DO I = 1, 10, 2
        IF (MOD(I, 3) == 0 ) CYCLE
        PRINT *, I
    END DO
END PROGRAM CHECK_CYCLE
The result displayed by the program is
Open complete paper
17
2008 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2008
A Fortran-90 subroutine for Gauss-Siedel Method to solve a set of N simultaneous equations [A][X]=[C] is given below.
```fortran
SUBROUTINE SIEDEL(A, C, X, N, IMAX)
REAL :: SUM
REAL, DIMENSION(N,N) :: A
REAL, DIMENSION(N) :: C, X
DO K = 1, IMAX
DO I = 1, N
SUM = 0.0
DO J = 1, N
IF ( I /= J ) THEN
SUM = SUM+A(I,J)*X(J)
ENDIF
ENDDO
*****
ENDDO
ENDDO
END SUBROUTINE SIEDEL
```
The missing statement in the program, indicated by *****, is
Open complete paper
18
2008 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2008
The equation f(x) = x^3 - 1.8x^2 - 1.35x + 2.7 = 0 is known to have a multiple root in the interval [1,2]. Starting with an initial guess x_0 = 1.0 in modified Newton-Raphson method, the root, correct up to three decimal places, is
Open complete paper
19
2009 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2009
The root of ax + b = 0 (a, b constants), can be found by the Newton-Raphson method with a minimum of
Open complete paper
20
2011 · Engineering Sciences · Numerical Methods · Linear and Nonlinear Numerical Solvers
Engineering Sciences (XE) 2011
Suppose \(x_n\) is the \(n\)-th iterated value while finding the positive square root of 7 by the Newton-Raphson method with a positive initial guess \(x_0\) (\(\neq \sqrt{7}\)). If \(e_n = \sqrt{7} - x_n\) for \(n \geq 1\), then
Open complete paper

Showing 20 of 22 questions