My Cart
Your Cart 0

    Your cart is empty.

  • Total (Amount) ₹0.00
Previous year question hub

Numerical Methods - General Aptitude (GA) Previous Year Questions

Practice Numerical Methods - General Aptitude (GA) previous year questions organised from real papers, with year-wise coverage and clear topic navigation.

5Papers
3Years
7Questions
1Topics

Numerical Methods question pattern

Every graph below is calculated only from this selection.

Questions by year

Year-wise coverage for Numerical Methods. Each bar uses a separate theme-derived color.

Difficulty distribution

How the classified questions are distributed by difficulty.

Medium 6 85.7%
Easy 1 14.3%

Question type distribution

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

MCQ 4 57.1%
Numerical Answer Type (NAT) 3 42.9%

Subject weightage

Top subjects by unique question coverage.

General Aptitude (GA)
7 Qs

Most asked topics

Top topics across the included previous year papers.

Numerical Methods
7 Qs

Subtopic coverage

Top subtopics inside this exact selection.

Root Finding
4 Qs
Numerical Integration
3 Qs

Paper coverage

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

Computer Science & Information Technology (CS) 2017 [Session 2]
1 Qs
Computer Science & Information Technology (CS) 2015 [Session 1]
2 Qs
Computer Science & Information Technology (CS) 2015 [Session 2]
1 Qs
Computer Science & Information Technology (CS) 2015 [Session 3]
1 Qs
Computer Science & Information Technology (CS) 2012
2 Qs

Browse by subtopics

Open a focused page built from the same verified paper data.

Included previous year papers

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

PaperYear / sessionQuestions in this viewOpen
Computer Science & Information Technology (CS) 2017 [Session 2]20171View paper
Computer Science & Information Technology (CS) 2015 [Session 1]20152View paper
Computer Science & Information Technology (CS) 2015 [Session 2]20151View paper
Computer Science & Information Technology (CS) 2015 [Session 3]20151View paper
Computer Science & Information Technology (CS) 201220122View paper

Sample previous year questions

A varied preview from the papers represented in this selection, with every available option.

1
2012 · General Aptitude (GA) · Numerical Methods · Numerical Integration
Computer Science & Information Technology (CS) 2012
Q.7 The decimal value 0.5 in IEEE single precision floating point representation has
Open complete paper
2
2015 · General Aptitude (GA) · Numerical Methods · Root Finding
Computer Science & Information Technology (CS) 2015 [Session 1]
In the LU decomposition of the matrix \(\begin{bmatrix} 2 & 2 \\ 4 & 9 \end{bmatrix}\), if the diagonal elements of \(U\) are both 1, then the lower diagonal entry \(l_{22}\) of \(L\) is ________.
Open complete paper
3
2015 · General Aptitude (GA) · Numerical Methods · Root Finding
Computer Science & Information Technology (CS) 2015 [Session 2]
The secant method is used to find the root of an equation f(x) = 0. It is started from two distinct estimates xa and xb for the root. It is an iterative procedure involving linear interpolation to a root. The iteration stops if f(xb) is very small and then xb is the solution. The procedure is given below. Observe that there is an expression which is missing and is marked by ?. Which is the suitable expression that is to be put in place of ? so that it follows all steps of the secant method?

Secant
Initialize: xa, xb, ε, N  // ε = convergence indicator
                       // N = maximum no. of iterations
fb = f(xb)
i = 0
while (i < N and |fb| > ε) do
  i = i + 1  // update counter
  xt = ?      // missing expression for
                // intermediate value
  xa = xb     // reset xa
  xb = xt     // reset xb
  fb = f(xb)  // function value at new xb
end while
if |fb| > ε then  // loop is terminated with i=N
  write "Non-convergence"
else
  write "return xb"
end if
Open complete paper
4
2015 · General Aptitude (GA) · Numerical Methods · Numerical Integration
Computer Science & Information Technology (CS) 2015 [Session 3]
The velocity v (in kilometer/minute) of a motorbike which starts from rest, is given at fixed intervals of time t (in minutes) as follows:
t2468101214161820
v10182529322011520

The approximate distance (in kilometers) rounded to two places of decimals covered in 20 minutes using Simpson's 1/3^rd rule is __________.

Question diagram

Open complete paper
5
2017 · General Aptitude (GA) · Numerical Methods · Root Finding
Computer Science & Information Technology (CS) 2017 [Session 2]
The number of roots of \(e^x + 0.5x^2 - 2 = 0\) in the range \([-5, 5]\) is
Open complete paper
6
2012 · General Aptitude (GA) · Numerical Methods · Root Finding
Computer Science & Information Technology (CS) 2012
The bisection method is applied to compute a zero of the function \(f(x) = x^4 - x^3 - x^2 - 4\) in the interval [1,9]. The method converges to a solution after _____ iterations.
Open complete paper