0% found this document useful (0 votes)
13 views7 pages

Set 2 Recruitment Paper

The document is an exam paper for the Dinobots Recruitment, consisting of four sections: Aptitude, C Programming, Electronics, and Mechanics. Candidates must attempt all questions, with specific sections being mandatory and others optional. The exam includes various types of questions such as logical reasoning, programming concepts, and fundamental principles of electronics and mechanics.

Uploaded by

firyfusion
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views7 pages

Set 2 Recruitment Paper

The document is an exam paper for the Dinobots Recruitment, consisting of four sections: Aptitude, C Programming, Electronics, and Mechanics. Candidates must attempt all questions, with specific sections being mandatory and others optional. The exam includes various types of questions such as logical reasoning, programming concepts, and fundamental principles of electronics and mechanics.

Uploaded by

firyfusion
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 7

DINOBOTS RECRUITMENT

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

Q2. Blood Relations:


Pointing to a photograph, Ramesh said, "She is the daughter of the only son of my
grandfather." How is the girl in the photograph related to Ramesh?
A) Sister B) Cousin C) Niece D) Aunt

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

Q5. Number Series:


What is the next number in the series?
2, 6, 12, 20, 30, ___
A) 36 B) 40 C) 42 D) 48

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

Q7. Odd One Out:


Which of the following is different from the others?
A) Apple B) Orange C) Tomato D) Grapes

Q8. Analogy:
'Book' is related to 'Read' in the same way as 'Pen' is related to ___.
A) Write B) Ink C) Paper D) Draw

Q9. Logical Connectives:


If "All roses are flowers" is true, and "Some flowers are red" is true, which of the
following must be true?
A) All roses are red B) Some flowers are not roses C) Some roses are red D)
None of the above

Q10. Logical Sequence:


Arrange the following in a logical sequence:
Cooking
Buying vegetables
Eating
Washing utensils
Serving food
A) 2, 1, 5, 3, 4 B) 2, 1, 3, 5, 4 C) 1, 2, 5, 3, 4 D) 1, 2, 3, 4, 5

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

Q2. In a flowchart for a C program, which symbol is used to represent a decision


(such as an if or switch statement)?
A) Rectangle B) Oval C) Diamond D) Parallelogram

Q3. Consider the following pseudo code:


if x > y then
x := x + 1
else
y := y + 1
end if

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.

Q5. What is the logical error in the following code?


#include <stdio.h>
int main() {
int a = 10;
if (a = 5) {
printf("Equal\n");
} else {
printf("Not Equal\n");
}
return 0;
}

A) if condition uses = instead of == B) Missing else if C) Incorrect variable


declaration D) Syntax error in if condition

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

Q7. What will be the output of the following code?


#include <stdio.h>
int main() {
int i, j;
for (i = 0; i < 2; i++) {
for (j = 0; j < 3; j++) {
printf("%d ", i + j);
}
}
return 0; }

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

Q8. What will be the output of the following code?


#include <stdio.h>
int main() {
int i, j;

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

Q10. What will be the output of the following code?


#include <stdio.h>
int main() {
int i, j;
for (i = 0; i < 2; i++) {
for (j = 0; j < 2; j++) {
if (i == j)
printf("%d ", i + j);
}
}
return 0; }

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 __.

A) NAND Gate B) AND Gate C) OR Gate D) NOR Gate

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

5. The AND operation implies ______________________


A) Boolean addition B) Boolean multiplication C) Boolean subtraction D) Boolean division
6. The charge of an electron is ___________________.
A) 1.602*10+27 Coulomb B) 1.602*10-27 Coulomb C) 1.602*10+19Coulomb D) 1.602*10-19 Coulomb
7. In a semiconductor material, the number of valence electrons is ___________.
A) less than 4 B) equal to 4 C) greater than 4 D) equal to 8

8. A fuse wire has:


A) a low resistance B) a low melting point C) a low radium D) a low mechanical strength

9. When two resistances are connected in series , they have :


A) Same voltage B) Same resistance C) Same current D) None of the above

10. In a charged capacitor the energy appears as


A) Magnetic Energy B) Electromagnetic Energy C) Electrostatic Energy D) Neither electric nor magnetic

Section D: Mechanical(10 Questions)


1. What are the fundamental dimensions used in mechanics?
A) Time B) Mass C)Length D) All of the above

2. Which of the following is not a vector quantity ?


A) Force B) Acceleration C) Speed D) Velocity

3. The dimensional formula of the power?


A) M^{1}L^{2}T^{-3} B) M^{1}L^{2}T^{-2} C) ML^{2}T^{-2} C) ML^{-1}T^{-2}

4. Hertz is the unit of?


A) Frequency B) Force C) Electric Charge D) Magnetic flux

5. Which of the following quantity is expressed as force per unit area?


A) Work B) Pressure C) Volume D) Area

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

8. Find the acceleration of pulley in the figure


A) 9.9 m/s^2 B) 8.75 m/s^2 C) 12 m/s^2 D). 34.89 m/s^2

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

You might also like