Set 2 Recruitment Paper
Set 2 Recruitment Paper
EXAM
Name: Lib. ID: Date: ___/___/_____ Year: 1st / 2nd
Time: 1 Hour
Set-2
Note:
Attempt all questions.
All questions carry equal weightage i.e. +3(For correct Answers), -1(For
incorrect answers)
There are 4 Sections.
You have to attempt one section from either Aptitude or Programming.
Electronics and Mechanics are mandatory.
Aptitude Test: Logical Reasoning
Section A: Logical Reasoning (10 Questions)
Total Questions: 10
Time: 30 minutes
Q1. Coding-Decoding:
In a certain code, "MANGO" is written as "OCPIT". How will "APPLE" be written in the
same code?
A) CQORN B) CQRON C) BQRON D) BQORN
Q3. Syllogism:
Statements:
All cats are animals.
Some animals are lions.
Conclusions:
I. Some cats are lions.
II. All lions are animals.
A) Only conclusion I follows B) Only conclusion II follows C) Both conclusions I
and II follow D) Neither I nor II follows
Q4. Directions:
A man walks 30 meters north, then turns to his right and walks 40 meters, then
again turns to his right and walks 30 meters. How far is he from the starting point?
A) 30 meters B) 40 meters C) 50 meters D) 60 meters
1
Q6. Seating Arrangement:
Five friends—P, Q, R, S, and T—are sitting in a row facing north. Q is sitting to the
immediate right of P, but to the left of R. S is sitting to the left of P but not at the
extreme left. Who is sitting in the middle?
A) P B) Q C) R D) S
Q8. Analogy:
'Book' is related to 'Read' in the same way as 'Pen' is related to ___.
A) Write B) Ink C) Paper D) Draw
C-Programming
Section B: C Programming(10 Questions)
Q1. You are tasked with writing an algorithm that calculates the factorial of a
number using recursion. Which of the following is the correct representation of the
base case in the algorithm?
A) factorial(n) = n * factorial(n - 1) B) factorial(1) = 1 C) factorial(n) = n D)
factorial(0) = 1
2
What is the final value of y if x = 5 and y = 6?
A) 5 B) 6 C) 7 D) 8
Q4. Which of the following statements about the process of converting source code
to executable code is false?
A) The preprocessor handles macros and includes.
B) The compiler converts source code into object code.
C) The linker combines object code into an executable.
D) The assembler directly produces the executable code from source code.
Q6. What is the result of the following expression, assuming int a = 5, b = 10, and
c = 15:
a += b -= c;
A) a = 5, b = -5 B) a = 10, b = 5 C) a = 0, b = 10 D) a = -5, b = 5
A) 0 1 2 1 2 3 B) 0 1 2 1 2 3 C) 0 1 2 1 2 3 2 D) 0 1 2 1 2
3
for (i = 1; i <= 3; i++) {
for (j = 1; j <= i; j++) {
printf("%d ", i);
}
}
return 0;
}
A) 1 2 2 3 3 3 B) 1 1 2 2 3 C) 1 1 1 2 2 3 D) 1 2 2 3 3 3
Q9.What will be the output of the following code?
#include <stdio.h>
int main() {
int i, j;
for (i = 3; i > 0; i--) {
for (j = 1; j <= i; j++) {
printf("%d ", j);
}
}
return 0; }
A) 1 2 3 1 2 1 B) 3 2 1 2 1 C) 1 1 2 D) 1 2 3 2 1
A) 0 1 B) 0 C) 0 2 D) 1
Section C: Electronics(10 Questions)
1. In the saturation region, the emitter-base & collector-base junctions are _________________ biased.
A) forward B) reverse C) unbiased D) none of the above
2. Which electronic component is used to convert AC to DC?
A) Transformer B) Capacitor C) Rectifier D) Inductor
3.The Output Y of the given Logic gate is similar to the output of __.
4
4. Identify the set in which all the materials are good conductors of electricity.
A) Cu, Ag & Au B) Cu, Si & Diamond C) Cu, Hg & NaCl D) Cu, Fe & Hg
6. An object moving along a line has a displacement equation of x(t)=5x2−40x, where t is in seconds.
For what value of t is the object stationary?
A) 4sec B) 3sec C) 2sec D) 10sec
5
7. The coefficient of static friction between a wooden block of mass 0.5 kg and a vertical rough wall is
0.2. The magnitude of horizontal force that should be applied on the block to keep it adhere to the
wall will be ______ N. [g = 10 ms-2]
A) 25 N B) 10 N C) 100 N D) 30N
9. A 250 N of point load is applied to the simply- supported beam as shown in figure . calculate the
reaction at point A .
….…………………………….
10. The branch of physics which deals with the heat and direction of heat flow?
A) Kinematics B) Thermodynamics C) Fluid Mechanics D) Thermal Mechanics
6
7