2023 2024 Student Forum > Management Forum > Main Forum

 
  #2  
31st July 2014, 12:36 PM
Super Moderator
 
Join Date: Apr 2013
Re: EIL Management Trainees Exam paper for CSE stream

On your request here I am sharing paper of EIL Management Trainees Exam paper of CSE stream

1 Which of the following is/are storage class
A. Automatic
B. Static
C. Allocated
D. All of Above
Ans- D

2 What will the output of following code
{
int x = 10, y = 15;
x = x++;
y = ++y;
printf(%d, %d \n, x, y);
}
A. 10, 15
B. 10, 16
C. 11, 16
D. 11, 15
Ans-C

3 NULL Pointer can be used as
A. To stop indirection in a recursive data structure
B. As an error value
C. As a sentinel Value
D. All of Above
Ans-D

4 Which one of the following is not the advantages of functions?
A. Debugging is easier
B. Testing is easier
C. Recursive call is possible
D. It consumes low disk space
Ans-D

5 What is the result of the following statement?
x = y = z = 0;
A. x = 0, y = Null, z = Null
B. x = 0, y = 0, z = 0
C. x = 0, y = 1, z = 2
D. the statement is incorrect
Ans-B

6 What is the result of the following statement?
X = 10;
y = ++x;

A. x = 10, y = 10
B. x = 10, y = 11
C. x = 11, y = 10
D. x = 11, y = 11
Ans-D

7 Which of the following statement creates infinite loop?
A. for ( ; ; )
B. while ( ; ; )
C. when ( ; ; )
D. if( ; ; )
Ans-A

8 The use of break Statement
A. to terminate a case in the switch statement
B. to force immediate termination of a loop
C. Both A & B
D. Only A
Ans-C

9 to use the function tolower(), which of the following header file should include
A. string.h
B. conio.h
C. ctype.h
D. Dont need any header file
Ans- C

10 What is the function overloading?
A. Calling a function from another function
B. Having more than one functions of same name
C. Calling a function from itself
D. There is no such term in C/C++
Ans-B

11.
A.2
B.3
C.1
D.4
Ans- A

12.How do you get information from a form that is submitted using the "get" method?
A.$_GET[];
B.Request.Form;
C.Request.QueryString;
D.$_POST[];
Ans-A

13.Full form of PHP
A.PreHypertextProcessor
B.HypertextPreprocessor
C.Hypertext Postprocessor
D.PostHypertextProcessor
Ans-C

14.
A.43
B.1
C.8
D.6
Ans-B

15.PHP variables are
A.Multitype variables
B.Double type variables
C.Single type variable
D.Trible type variables
Ans- A

16.Father of PHP?
A.Larry Wall
B.Rasmus Lerdorf
C.James Gosling
D.Guido Van Rossum
Ans-B

17.The PHP syntax is most similar to-
A.PERL and C
B.Java script
C.VB Script
D.Visual Basic
Ans-A

18.Which of the following extensions suggest that the file is a backup copy
A.Bak
B.Bas
C.Com
D.Txt
Ans- A

19.Each IP packet must contain
A.Only Source address
B.Only Destination address
C.Source and Destination address
D.Source or Destination address
Ans-C

20.Bridge works in which layer of the OSI model?
A.Appliation layer
B.Transport layer
C.Network layer
D.Datalink layer
Ans-D

21. _______ provides a connection-oriented reliable service for sending messages
A.TCP
B.IP
C.UDP
D.All of the above
Ans-A

22.Which layers of the OSI model are host-to-host layers?
A.Transport, Session, Persentation, Application
B.Network, Transport, Session, Presentation
C.Datalink, Network, Transport, Session
D.Physical, Datalink, Network, Transport
Ans-A

23.Which of the following IP address class is Multicast
A.Class A
B.Class B
C.Class C
D.Class D
Ans-D

24.Which of the following is correct regarding Class B Address of IP address
A.Network bit 14, Host bit 16
B.Network bit 16, Host bit 14
C.Network bit 18, Host bit 16
D.Network bit 12, Host bit 14
Ans-A

25.The last address of IP address represents
A. Unicast address
B. Network address
C. Broadcast address
D. None of above
Ans-C

26.How many bits are there in the Ethernet address?
A.64 bits
B.48 bits
C.32 bits
D.16 bits
Ans-B

27.How many layers are in the TCP/IP model?
A.4 layers
B.5 layers
C.6 layers
D.7 layers
Ans-A
28.Which of the following layer of OSI model also called end-to-end layer?
A.Presentation layer
B.Network layer
C.Session layer
D.Transport layer
Ans-D

29.A network that requires human intervention of route signals is called a ?
A.Bus network
B.Ring netwkork
C.Star network
D.T-switched network
Ans-D

30.Adaptive or dynamic directory used in packet routing changes ?

A.within each user session
B.with each user session
C.at system generation times only
D.Both A and B
Ans-A

31.Which of the following signal is not standard RS-232-C signal ?

A.VDR
B.RTS
C.CTS
D.DSR
Ans-A

32.In a DMA write operation the data is transferred
A.from I/O to memory.
B.from memory to I/O.
C.from memory to memory.
D.from I/O to I/O.
Ans-A

33.Number of the times the instruction sequence below will loop before coming out of
loop is
MOV AL, 00h
A1-INC AL
JNZ A1
A.00
B.01
C.255
D.256
Ans-D

34.Direction flag is used with
A.String instructions.
B.Stack instructions.
C.Arithmetic instructions.
D.Branch instructions.
Ans-A

35.LOCK prefix is used most often
A.during normal execution.
B.during DMA accesses
C.during interrupt servicing.
D.during memory accesses.
Ans-C

36.8251 is a
A.UART
B.USART
C.Programmable Interrupt controller
D.Programmable interval timer/counter
Ans-B

37.Which interrupt has the highest priority?
A.INTR
B.TRAP
C.RST6.5
Ans- C

38.Which stack is used in 8085?
A.FIFO
B.LIFO
C.FILO
Ans-B

39.Using DeMorgan,s Theorem we can convert any AND-OR structure into

A.NAND-NAND
B.OR-NAND
C.NAND-NOR
D.NOR-NAND
Ans-A

40.Which of the following file format supports in Windows 7?
A) NTFS
B) BSD
C) EXT
D) All of the above
Ans-A

41.The Primary job of the operating system is
A) Manage Commands
B) Manage Users
C) Manage Programs
D) Manage Resources
Ans-D

42.What is the meaning of Hibernate in Windows XP/Windows 7?
A) Restart the Computer in safe mode
B) Restart the Computer in hibernate mode
C) Shutdown the Computer terminating all the running applications
D) Shutdown the Computer without closing the running applications
Ans-D

43.Who is called a supervisor of computer activity?
A) Memory
B) Operating System
C) I/O Devices
D) Control Unit
Ans-B

44.Virtual Memory is
A) Extremely Large Main memory
B) Extremely Large Secondary memory
C) An illusion of extremely large main memory
D) An illusion of extremely large secondary memory
Ans-C

45.Operating System manages
A) Memory
B) Processor
C) I/O devices
D) All of the above
Ans-D

46.What should be the first step while OS upgrading?
A) Delete old Operating System
B) Backup old Operating System
C) Backup Critical Data
D) Format Hard Disks
Ans-C

47.Unix Operating System is an
A) Multi User Operating System
B) Time Sharing Operating System
C) Multi Tasking Operating System
D) All the Above
Ans-D

48.In which type of the following OS, the response time is very crucial.
A) Network Operating System
B) Real Time Operating System
C) Batch Operating System
D) Unix Operating System
Ans-B

49.The file system NTFS stands for
A) New Type File System
B) Never Terminated File System
C) New Technology File System
D) Non Terminated File System
Ans- C

50.ASK, PSK, FSK, and QAM are examples of ________ conversion.
A.digital-to-digital
B.digital-to-analog
C.analog-to-analog
D.analog-to-digital
Ans-B

51.AM and FM are examples of ________ conversion.
A.digital-to-digital
B.digital-to-analog
C.analog-to-analog
D.analog-to-digital
Ans-C

52.In QAM, both ________ of a carrier frequency are varied.
A.frequency and amplitude
B.phase and frequency
C.amplitude and phase
D.none of the above
Ans-C

53.Quadrature amplitude modulation (QAM) is a combination of ___________.
A.ASK and FSK
B.ASK and PSK
C.PSK and FSK
D.none of the above
Ans-B

54.The constellation diagram of BPSK has ______ dots.
A.2
B.1
C.0
D.none of the above
Ans-A

55.Analog-to-analog conversion is needed if the available bandwidth is _______.

A.low-pass
B.band-pass
C.either (a) or (b)
D.neither (a) nor (b)
Ans-B

56.A phase-locked loop (PLL) is a feedback circuit consisting of a
A.phase detector
B.low-pass filter.
C.VCO.
D.all of the above
Ans-D

57.Amplitude modulation is a ________ process.
A.multiplication
B.division
C.sum/difference
D.[NIL]
Ans-A

58.What does VCO stand for?
A.Visually-Controlled Organization
B.Voltage-Controlled Oscillator
C.Voltage-Centered Oscilloscope
Ans-B

59.The intermediate frequency in a standard AM receiver is
A.455 Hz.
B.455 kHz.
C.4.55 MHz.
D.none of the above
Ans-B

60.Light may be propagated along a fiber-optic cable in which of the following modes?
A.multimode step index
B.single-mode step index
C.multimode graded index
D.all of the above
Ans-D
  #3  
2nd December 2015, 03:48 PM
Unregistered
Guest
 
Re: EIL Management Trainees Exam paper for CSE stream

I am going to appear in EIL Management Trainees Exam. So I need a sample paper for CSE stream. So here can you provide me a sample paper for EIL Management Trainees Exam?
  #4  
2nd December 2015, 03:49 PM
Super Moderator
 
Join Date: Apr 2013
Re: EIL Management Trainees Exam paper for CSE stream

I have a sample paper of EIL Management Trainees Exam, so here I am providing you as you want.

Here I am providing you all types as you want as well as pattern of this exam;
Exam Pattern


Section Questions Syllabus
Technical Section 100 Question related to your discipline
General Aptitude 50 Quantitative Aptitude, General Awareness, Reasoning and English Language

Exam duration: 2 hours
Negative marking: 1/4th

Part-I : Technical Part
This part will include questions from the technical side or what you have studied during your engineering, there are 38 vacancies in Chemical, Civil, Electrical & Mechanical discipline.


Mechanical discipline major topics are

Experimental Reporting Skills
Fluid Mechanics
Stress Analysis
Heat Transfer
Technical Presentation Skills
Engineering Mechanics
Strength of Materials
Hydraulics and Fluid Mechanics
Hydraulic Machines
Thermodynamics
Steam Boilers and Engines
Steam Nozzles and Turbines
Machine Design
IC Engines and Nuclear Power Plants
Engineering Materials
Compressors, Gas Dynamics and Gas Turbines
Theory of machines
Heat Transfer, Refrigeration and Air Conditioning
Workshop Technology
Production Engineering
Industrial Engineering and Production Management

Sample Questions of Mechanical Engineer
Ques: The friction experienced by a body, when in motion, is known as
A. rolling friction
B. dynamic friction
C. limiting friction
D. static friction

Ques: If the masses of both the bodies, as shown in the below figure, are reduced to 50 percent, then tension in the string will be

A. same
B. half
C. double
D Equal

Ques: Screws used for power transmission should have
A. Sow efficiency
B. high efficiency
C. very fine threads
D. strong teeth

Ques: Which of the following material has the maximum ductility?
A. Mild steel
B. Copper
C. Zinc
D. Aluminium

Ques: A diagram showing the path followed by men and materials while performing a task is known as
A. string diagram
B. flow process chart
C. travel chart
D. flow diagram

Civil Engineering major topics are

Geotechnics
Energy and Infrastructure
Soil mechanics
Geology
Computational methods
Structural Mechanics
Soil Mechanics and Engineering Geology
Transport
Concrete and Earthquake Engineering
Building Materials
Building Construction
Surveying
Concrete Technology
Soil Mechanics and Foundation Engineering
Advanced Surveying
Strength of Materials
RCC Structures Design
Steel Structure Design
Irrigation
Highway Engineering
Airport Engineering
Fluid Mechanics
Construction Management
SI Units
Theory of Structures
Structural Design Specifications
Estimating and Costing
Tunnelling
Docks and Harbours

Sample Questions

Ques 1: Which one of the following represents an activity
A. excavation for foundation
B. curing of concrete
C. setting of question paper
D. preparation of breakfast
E. all the above.
Answer: E

Ques: The most widely used antenna in GPS is
A. Parabolid antenna
B. Microstrip antenna
C. Horn antenna
D. Slotted antenna
Answer: B

Ques: The maximum area of tension reinforcement in beams shall not exceed
A. 0.15%
B. 1.5%
C. 4%
D. 1%
Answer: C

Ques An R.C.C. beam not provided with shear reinforcement may develop cracks in its bottom inclined roughly to the horizontal at
A. 25°
B. 35°
C. 45°
D. 55°
E. 60°
Answer: C

Ques: An ideal vertical curve to join two gradients, is
A. circular
B. parabolic
C. elliptical
D. hyperbolic
Answer: B

Ques: SI unit for the surface tension, is
A. kg/m3
B. kg/m2
C. kg/m
D. N/m
Answer: D


Electrical Engineering major topics are

Communications
Control Engineering
Energy and Power
Integrated Circuit Design
Intelligent Systems
Optical and Semiconductor Devices
Signal Processing
Analogue Electronics
Digital Electronics
Signals and Linear Systems
Semiconductor Physics
Analysis of Circuits
Operational Amplifiers
Magnetism and Electromagnetism
Alternating Current and Voltage
RL Circuits
Transformers
Time Response of Reactive Circuits
Transistors and Applications
Basic Op-Amp Circuits
Special-Purpose Op-Amp Circuits
Measurement, Conversion and Control
Resistance and Power
Alternating Current vs Direct Current
Semiconductor Principles
Bipolar Junction Transistors (BJT)
Field Effect Transistors (FET)
Thyristors and Tranducers
Analog to Digital
Number Systems and Codes
Logic Gates
Logic Circuit Simplification
Standard Logic Devices (SLD)
Programmable Logic Devices (PLD)

Chemical Engineering

Properties of Matter
Process Dynamics and Control
Industrial Chemistry and Biochemistry
Reaction Engineering
Transfer Processes
Process Analysis
Heat Transfer
Mechanical Operations
Mass Transfer
Petroleum Refinery Engineering
Fertiliser Technology
Chemical Process
Stoichiometry
Process Control and Instrumentation
Chemical Engineering Thermodynamics
Chemical Reaction Engineering
Fuels and Combustion
Materials and Construction
Process Equipment and Plant Design
Chemical Engineering Plant Economics
Nuclear Power Engineering
Furnace Technology

Sample questions:
Ques: A high pressure boiler generates steam at a pressure greater than __________ kg/cm2 .
A. 10
B. 30
C. 50
D. 80

Ques: The number of kg vaporized per kg of steam fed to the evaporator is defined as
A. capacity
B. rate of evaporation
C. economy
D. rate of vaporisation

Ques: Heating of ortho phosphoric acid to 250°C produces
A. metaphosphoric acid
B. pyrophosphoric acid
C. no change in it
D. none of these

Ques: A coal containing very high percentage of durain is called __________ coal.
A. bright
B. splint
C. non-banded
D. boghead

Ques:One 'amu' is equivalent to
A. 9.31 MeV
B. 931 eV
C. 931 Mev
D. 931J

Ques: Buna-S is also known as
A. teflon
B. PTFE
C. SBR
D. polycrylates

Ques: Which of the following sugars is the sweetest?
A. Glucose
B. Fructose
C. Sucrose
D. Lactose



Part-II: General Aptitude

Quantitative Aptitude
Part

Topic

Sub topics
Part-I

Number System

Fractions, Square root, cube root, HCF, LCM, Prime,
Composite, whole Number
Part-II

Algebra

Equations(Liner, Quadratic), Inequalities, Functions,
Graphs, Progression, Logarithms
Part-III

Arithmetic


Percentage, Ratio & Proportion, Profit & Loss, Partnership,
Average, Simple Interest & Compound Interest, Time &
Work, Time, speed & Distance
Part-IV

Geometry

concepts of lines & angles, Triangle, Polygon, circles, Area, Volume

Ques: How many digits are required to number a book containing 200 pages?
(a) 200 (b) 600 (c) 492 (d) 372

Ques: The sum of the two numbers is 45 & difference of 2 numbers is 675. Find the number ?
a) 20, 25 b) 15, 30 c) 10,35 d) 12,13'

Ques: What is the minimum value of x^2 + 8x + 8?
a) -6 b) -8 c) 8 d) 6

Ques: A cloth merchant claims to sell is material at cost price but uses a scale which reads 1 meter for every 95 centimeter. Find the gain percent?
(a) 0.4% (b) 52.6% (c) 4 % (d) 5.26%

Ques: In right angled triangle if 2 sides are 3 & 4 then length of hypotenuse is ?
(a) 5 (b) 6 (c) 6.5 (d) 4

General Awareness

Reasoning
This will test your mental ability its quite easy but time consuming just you need to understand what is being asked, so we recommend you to at temp this section at last.

1) Data Structure
Like you will be given an
I/P: 18, 12, 27, 11, 14, 25
Step-I: 27, 18, 12, 11, 14, 25
Step-II: 27, 25, 18, 12, 11, 14
Step III: 27, 25, 18, 14, 12, 11
Step IV: ?
You have to analyse the pattern & have to tell the step 4

2) Series
like 5, 7, 10, 15, 22, __
(1) 30(2) 38 (3) 33 (4) 42 (5) 50
Ans is 33
33 as you can see the diff. b/w 2 successive no. is 2, 3, 5, 7 & so on...

English Language
Here your basic English grammar skills will be tested, candidates having reading skills or who have read/found of reading novels will have a plus point in this section
Knowledge of: Verbs: past, present, future tense, nouns, participial, adjectives & all other basics

Ques: He quickly glanced .............................. the book to find what it said about the Indian economy.
(1) at (2) through (3) in (4) to (5) over
The correct answer is “through” which is answer No. 2.

Ques: The counsel urged the court to ........................... down the obnoxious law.
(1) enact (2) enforce (3) cancel (4) strike (5) declare

Ques: The local official ........................... the Minister of the situation.
(1) explained (2) warned (3) apprised (4) told (5) intimated
Ans is 5


Quick Reply
Your Username: Click here to log in

Message:
Options

Thread Tools Search this Thread



All times are GMT +5. The time now is 07:04 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
SEO by vBSEO 3.6.0 PL2

1 2 3 4