NIGP Interview Questions, Process, and Tips

Ques:- Find the missing number of the the series 1, 3, 7, 13, 21, 31, ..
Recent Answer : Added by Soumya Rao On 2021-08-26 16:05:46:

43

Ques:- A bus started from the bus stand at 8 Am and after staying 30 minutes at a destination return back to the bus stand. The Destination is 27 miles from the bus stand . The Speed of the bus is 18mph . In the return journey the bus travells with 50% fast speed.At what time it is return to the bus stand ?
Recent Answer : Added by Admin On 2020-05-17 12:00:34:

Bus started at 8:00
it travelled with 18mph…
distance of destination is 27 miles…
we know velocity=(distance)/time
i.e., time=27/18hours=3/2hours=90 min…
i.e., the bus reached destination at 9:30
the bus stayed for 30 min…
so the bus started return journey at 10:00
now the bus returned with velocity 18 + (18/2)=27mph
the taken to the bus to travel = 27/27=1 hour = 60 min…
so bus would be returned on 11:00…

Ques:- The tens digit of a two-digit number is two more than its unit digit. The two-digit number is 7 times the sum of the digits. Find the units digits?
Recent Answer : Added by Jay On 2022-08-14 16:35:32:

31

Ques:- Why this company will choose you?
Ques:- Three 6 faced dice are thrown together. The probability that exactly two dice show the same number on them is -.
Recent Answer : Added by Admin On 2022-09-28 18:05:55:

Let A, B and C be the three 6-faced dice.
Then, according to the question,
Since two dices has to be equal, that value can be any of the 6 faces, i.e., 6C1​ cases.
Now for each case, 2 equal dices can be selected from 3 dices in 3C2​ i.e., 3 ways.
And for each of the above, the third dice can have any of the 5 remaining faces
The possible outcomes are P(A)=61​,P(B)=61​,P(C)=65​,P(A)=61​,P(B)=65​,P(C)=61​ and P(A)=65​,P(B)=61​,P(C)=61​
Hence the required probability = 61​×61​×65​×6×3=21690​=125​

Ques:- Greengrocer C. Carrot wants to expose his oranges neatly for sale. Doing this he discovers that one orange is left over when he places them in groups of three. The same happens if he tries to place them in groups of 5, 7, or 9 oranges. Only when he makes groups of 11 oranges, it fits exactly. How many oranges does the greengrocer have at least?
Ques:- Joe is fencing in a square area of 576 square feet. Fence posts, which are needed every three feet, cost 32.00 each. The fencing cost 4.50 per foot. What is the total cost of the fencing materials?
Recent Answer : Added by Vivek Bharadwaj On 2022-08-14 16:33:40:

Joe is fencing in a square area of 576 square feet.
Fence posts, which are needed every three feet, cost 32.00 each.
The fencing cost 4.50 per foot. What is the total cost of the fencing materials?

Solution:-
Area of Square is 576 sq ft.
so, the length of side = root(576) = 24 ft

Since the fencing would be done on the perimeter, we would need that
formula is 4*side = 96 ft.

Number of Fence post needed = 96/3 = 32

1 Fence post cost = 32
32 Fence Post cost = 32 * 32 = 1024

Fencing cost = Perimeter * fencing cost = 96 * 4.5 = 432

Total Cost = 432 + 1024 = 1456

Ques:- What is it when you have three you have three, when you have two you have two and when you have one there is none?
Ques:- What was the biggest mistake of your life?
Ques:- In a chess board you have placed the Horse (I dont know how to say this in chess terminology but the main thing is Horse moves in 'L' Shape) at a random position. What is the probability that the horse would move out of the chess
Ques:- What things frustrate you the most? How do you usually cope with them?
Ques:- What is Goal.
Ques:- What is the background of your family?
Ques:- Describe a time when your team did not agree?
Ques:- What do you about six sigma and lean?
Ques:- The ratio of two numbers is 2:3 and the sum of their cubes is 945. What is the difference of number ?
Recent Answer : Added by Preet On 2021-08-10 15:21:38:

Let numbers be 2x, 3x
Given: (2x)^3 + (3x)^3 = 945
8x^3 + 27x^3 = 945
x = 3
Difference between numbers = 3x – 2x = x
Hence difference = 3

Ques:- If 2x y = 10 and x = 3, what is x – y
Ques:- What is your role in this company?
Ques:- A rich man died. In his will, he has divided his gold coins among his 5 sons, 5 daughters and a manager. According to his will: First give one coin to manager. 1/5th of the remaining to the elder son.Now give one coin to the manager and 1/5th of the remaining to second son and so on….. After giving coins to 5th son, divided the remaining coins among five daughters equally.All should get full coins. Find the minimum number of coins he has?
Recent Answer : Added by Biplab Nath On 2021-07-31 16:35:53:

Answer: 3121 gold coins
Let total no of coins be M
Let the disbursement D to each son:

D1 = 1 + (M – 1)/5 = (M + 4)/5
D2 = 1 + ( M – D1 -1)/5 = (D1) * 4/5
D3= (D2) * 4/5
D4= (D3) * 4/5
D5= (D4) * 4/5
Total disbursements to sons=
= ∑D= (M+4)*1/5[ 1+4/5+(4/5)(4/5)+ (4/5)(4/5)(4/5)+(4/5)(4/5)(4/5)(4/5) ]
= (2101/3125)*(M+4)
Thus balance left for daughters =M-{(2101/3125)*(M+4)}
=(1024M-8404)/3125
This balance should be a positive integer ( assuming M and all disbursements are full coins )
Thus 1024M-8404 should be a multiple of 3125….so….
1024M – 8404 = N*3125 where N is an integer
Using Python code:
n=int(input(“Enter num n: “))
X=int()
a=int()
a=0
X=’ ‘
for a in range(0,n+1):
a=a+1
X= (3125*a + 8404)/1024
if (3125*a + 8404)% 1024== 0:
print(X,a)
Enter num n: 10000
3121.0 1020
6246.0 2044
9371.0 3068
12496.0 4092
15621.0 5116
18746.0 6140
21871.0 7164
24996.0 8188
28121.0 9212
We get minimum value of N = 1021 and M = 3121 gold coins

Ques:- When did you last acquire effective knowledge in your own time and how can you apply this towards your career?
Ques:- Why you are looking for change ?
Ques:- The largest natural number by which the product of three consecutive even natural numbers is always divisible by
A. 16
B. 24
C. 48
D. 96
Recent Answer : Added by Shashank Panddey On 2022-09-15 16:36:27:

Let three consecutive even numbers be 2n,2n+2,2n+4
product=2n(2n+2)(2n+4)
If n=1,
product =2(4)(6)=48.
So, all the numbers will be divisible by 48 if change n.

Ques:- WHAT YOU HAVE DONE SINCE MORNING
Ques:- 15 people entered a theater before Sujit. 7 people entered the theater between Sujit and Suraj and 20 people entered the theater after Suraj. If Suraj entered the theater before Sujit then how many people are there in the theater?
Ques:- How many cubes of edge 2 dm can be cut out of a meter cube?
Recent Answer : Added by SHRADDHA NANDKISHOR BANGARE On 2020-07-29 09:55:49:

8 cubes

Ques:- The smallest number which when divided by 20, 25, 35 and 40 leaves a remainder of  14, 19, 29 and 34 respectively is?
Ques:- While packing some return gifts, a mother decides to put some toffees in each gift packet. If she keeps 5 toffees in each packet, she is left with none. But if she keeps 2, 3 or 4 toffees in a packet, she is left with 1 toffee . What is the minimum number of toffees that she needs?
Ques:- if ELECTRICITY – GAS =100 then JACK – JILL = ?
Recent Answer : Added by Admin On 2020-05-17 11:59:51:

The ans is -20.
Solution:
A-1
B-2
C-3 D-4 …like wise till Z-26.
ELECTRICITY-5+12+5+3+20+18+9+3+9+20+25==129
GAS-7+1+9==27
ELECTRICITY-GAS=129-27-(Minus 2)=100
so
JACK-JILL=(10+1+3+11-(10+9+12+12)-(minus(2))==(-20)

Ques:- The equal amounts of money are deposited in two banks each at 15% per annum for 3.5 years and 5 years respectively. If the difference between their interests is Rs.144, find the each sum?
Ques:- What do you plan to become after say 2-5yrs (Ex: QA Manager, Why?)

Contact with us regarding this list

Devendra Bhardwaj With a decade of experience as a Job Hiring Expert, I am a results-driven professional dedicated to elevating recruitment strategies. My expertise lies in navigating the dynamic landscape of talent acquisition, employing innovative approaches to attract, assess, and secure top-tier candidates. I excel in optimizing hiring processes, leveraging cutting-edge technologies, and fostering collaborative relationships with stakeholders. A keen understanding of industry trends allows me to stay ahead, ensuring a competitive edge in securing the best talent for your organization. I am passionate about connecting the right people with the right opportunities and thrive in creating impactful, streamlined recruitment solutions.

Scroll to top