2023 2024 Student Forum > Management Forum > Main Forum

 
  #2  
5th December 2014, 02:10 PM
Super Moderator
 
Join Date: Apr 2013
Re: BEL PE Question Paper

Hi, as you want the question paper of BEL PE so here I am providing you.

BEL PE Computer Science Question Paper

1. Which one of the following is provided by a data dictionary ?
(A) User data (B) Functional data
(C) Database structure data (D) Sorted data

2. Which one of the following is a direct benefit of databse normalization ?
(A) higher query processing efficiency (B) smaller number of tables
(C) reduced I/O for most queries (D) reduced data redundancy

3. What is the result of the following SQL statement ?
SELECT A.Employee_Name, B.Spouse_Name
FROM Employee A LEFT OUTER JOIN Spouse B
ON A. Employee_ID = B.Employee_ID
(A) A list of all employee’s names, including the name of their spouse if they have one
(B) A list of all employees that have spouses, with spouse names included in the list
(C) A list of employee’s spouses
(D) Two lists : One list of employees, the other of spouses.

4. The ability to modify the conceptual schema without causing any change to the application
program is known as :
(A) Physical data independence (B) Logical data independence
(C) External data independence (D) Static data

5. A field or a combination of fields that has a unique value is called :
(A) Secondary key (B) Foreign key
(C) Primary key (D) Alternate key

6. Relational operator that yields all values from all rows in a table is known as
(A) difference (B) product
(C) select (D) project

7. Referential integrity controls relationships between :
(A) attributes in a table (B) operations of an object
(C) instances of a class (D) tables in a database.

8. What will be suitable criteria that should be entered for a query to search for Employee
Names beginning with M ?
(A) Start with M (B) Like M
(C) Like ‘M?’ (D) Like ‘M*’

9. What rows will this select statement return ?
SELECT * FROM products WHERE ordernumber > = 1000
(A) All rows in the products table whose order number is greater than or equal to 1000
(B) All rows in the products table whose order number is less than or equal to 1000
(C) The first 1000 rows of the product table
(D) All rows in the products table whose order number is greater than 1000

10. A television broadcast is an example of ______transmission.
(A) Simplex (B) half-duplex
(C) full-duplex (D) automatic

11. ______ is the protocol suite for the Internet which we use presently :
(A) TCP/IP (B) NCP
(C) UNIX (D) ACM

12. _______ switching is well suited for voice communication while______ switching is better
suited for data and other non-voice communication.
(A) Message; circuit (B) Circuit; message
(C) Packet; circuit (D) Circuit; packet

13. Forty-five physical channels link________devices arranged in a mesh topology.
(A) NINE (9) (B) TEN (10)
(C) FORTY (40) (D) FORTY-FIVE (45)

14. The most frequently used UTP connector is _______ .
(A) category 5 connector (B) EIA 232
(C) RJ45 (D) JR45

15. The natural mask for class C IP address is _______ .
(A) 255.255.255.0 (B) 255.255.0.0
(C) 255.0.0.0 (D) 255.255.255.255

16. The Internet began as an experimental network called
(A) Intranet (B) ARPANET
(C) ARPA (D) DoDNET

17. Clock speed is measured in
(A) Bits per second (B) Baud
(C) Bytes (D) Hertz

18. Cache memory enhances
(A) Memory capacity (B) Memory access time
(C) Secondary storage capacity (D) Secondary storage access time

19. A user complains that he has created a shell script ‘myuse’ that will report his usage of
disk space by a directory in UNIX, but when he executes the script he only receives the
message : myuse : cannot execute. What is the probable cause of the error described
above ?
(A) The file ‘myuse’ contains syntax errors
(B) The file ‘myuse’ cannot be located because the user has not set his PATH properly
(C) The user does not have permission to read his directory
(D) The file mode for the owner of ‘myuse’ is not executable.

20. Three players A, B, C are in a race. A is twice as likely to win as B and B is twice as likely
to win as C. Then the probability that B wins =
(A) 1/2 (B) 2/3
(C) 1/3 (D) 2/7

21. In following Java code snippet, what will be the output of following :
int var 1 = 5, var 2 = 7;
System.out.println(“Result=” + var l * var 3);
(A) Result = 35 (B) Result = 57
(C) Result = 3 (D) Error

22. Consider the following segment of a Java program,
int num, alpha = 10;
num = 4;
switch (num)
{
case 3 : alpha++; break;
case 4 :
case 6 : alpha = alpha + 3;
case 8 : alpha = alpha + 4; break;
default : alpha = alpha + 5;
}
System.out.println (alpha);
What will the output be when the above segment is executed as a program ?
(A) 15 (B) 16
(C) 17 (D) 18

23. The region of memory sufficiently large to hold all pixels of the display is called a
(A) Frame buffer (B) RAM
(C) ROM (D) Cache Memory

24. Which of the following statements is correct regarding Bitmap images ?
(A) They are based on lines and curves
(B) They are best for real-world images like Photography and Painted pictures
(C) They have a small data size
(D) One does not need to compress the file for transferring.

25. ………… is a process model used to show the flow of data through a system and the
work or processing performed by the system :
(A) Document Flow Diagram
(B) Data Flow Diagram
(C) Entity Relationship Diagram
(D) Use Case Diagram.

26. Consider the following two relations :
A (Students) B
St_Id Name Address St_Id Name Address
1000000004 Ratan Mumbai 1000000001 Mahesh Gangtok
1000000001 Mahesh Gangtok 1000000002 Samir Indore
1000000008 Babita Delhi 1000000004 Ratan Mumbai
1000000002 Samir Indore 1000000008 Babita Delhi
Applying a certain SQL statement to relation A gives relation B. Which of the following statements
could this SQL statement be ?
(A) SELECT * FROM Students ORDER BY St_Id;
(B) SELECT * FROM Students ORDER BY Name;
(C) SELECT * FROM Students ORDER BY St_Id DESC;
(D) SELECT * FROM Students ORDER BY Name DESC;

27. Consider the code snippet given below :

& lt H1 & gt Hello BIT & lt H1 & gt

Which of the following is correct in relation to the above code snippet ?
(A) Hello BIT is displayed as the output with H1 font.
(B) Hello BIT ; is displayed as the output with H1 font.
(C) ; is displayed as the output with default font.
(D)
Hellow BIT is displayed as the output.

28. When you are creating a structure in C/C++, you need to use the keyword
(A) structure (B) object
(C) struct (D) record

29. 54__7 = 5. Which arithmetic operator can replace the blank to make the statement
correct ?
(A) – (B) /
(C) % (D) *
30. What is the output of the following code in C ?

for (int i = 0; i < 10; i++)
{cout << i% 2 << ” “;}
(A) 0 1 2 3 4 5 6 7 8 9 (B) 0 2 4 6 8 10 12 14 16 18
(C) 10101010101 (D) 10 10 10 10 10

31. In C++, if a catch statement is written to catch exception objects of a base class type, it
can also catch all ______ derived from that base class.
(A) Exceptions for objects (B) Objects of classes
(C) Arguments (D) Errors

32. The design of classes in a way that hides the details of implementation from the user is
known as :
(A) Encapsulation (B) Information Hiding
(C) Data Abstraction (D) Reusability

33. Can two classes contain member functions with the same name ?
(A) No.
(B) Yes, but only if the two classes have the same name
(C) Yes, but only if the main program does not declare both kinds
(D) Yes, this is always allowed.

34. What is printed when the following sample code of C is executed ?
char *ptr;
char my String = “abcdefghijklmnop”;
ptr = myString;
printf (“ptr=%s/n”, ptr+5);
printf (“ptr = %s”, ptr);
(A) ptr = fghijklmnop (B) ptr = fghijklmnop
ptr = fghijklmnop ptr = abcdefghijklmnop
(C) ptr = efghijklmnop (D) ptr = efghijklmnop
ptr = abcdefghijklmnop ptr = efghijklmnop

35. How many times will the “while” body be executed in the sampe code above ?
int ch = 10;
int ci = 15;
while (ch > ci)
{
cout << ch << endl ;
++ ci; — ch ;
(A) 0 (B) 1
(C) 2 (D) 3

36. What standard include file is needed to use the exit ( ) function ?
(A) None (B) Stdlib.h
(C) stdio.h (D) std.h

37. The processing speed of different computers is compared using :
(A) RPM (B) GHz
(C) MIPS (D) CPS

38. Who is associated with the development of ‘C’ language ?
(A) Niklaus Wirth
(B) Donald Knuth
(C) Dennis M Ritchie
(D) Charles Babbage.

39. Boolean expression for NAND gate with two inputs x and y can be written as :
(A) x – y (B) x + y
(C) x + y (D) xy + xy

40. Two’s complement of 1011.01 is :
(A) 0100.10 (B) 0100.11
(C) 1011.10 (D) 0100.01

41. A friend function can be used to :
(A) avoid arguments between classes
(B) allow access to classes whose source code is unavailable
(C) allow one class to access an unrelated class
(D) increases the versatility of an overload operator

42. In TCP, which layer is not present ?
(A) physical layer (B) data link layer
(C) transport layer (D) session layer

43. The digit F in Hexadecimal system is equivalent to ________ in decimal system.
(A) 16 (B) 15
(C) 17 (D) 8

44. The output of a______gate is only 1 when all of its inputs are 1 :
(A) NOR (B) XOR
(C) AND (D) NOT

45. 110012—100012 =
(A) 10000 (B) 01000
(C) 00100 (D) 00001

46. Which is correct :
(A) A.A=0 (B) A+1=A
(C) A+A=A’ (D) A’.A’ = 0

47. The basic storage element in a digital system is
(A) flip flop (B) counter
(C) multiplexer (D) encoder

48. AB + AB’ =
(A) A (B) B
(C) 1 (D) 0

49. In UNIX, which command is used to sort the lines of data in a file in reverse order
(A) sort (B) sh
(C) st (D) sort –r

50. The commonly used UNIX commands like date, ls, cat etc. are stored in
(A) /dev directory (B) /bin directory
(C) /tmp directory (D) /unix directory

1 C 2 D 3 A 4 B 5 C 6 X 7 D 8 X 9 A 10 A 11 A 12 D 13 B 14 C 15 A 16 B 17 D 18 B19 D 20 D 21 X 22 C 23 A 24 B 25 B 26 A 27 X 28 C 29 C 30 X 31 A 32 A 33 D34 B 35 A 36 B 37 C 38 C 39 C 40 B 41 C 42 D 43 B 44 C 45 B 46 B 47A 48 A 49 D 50 B
  #3  
20th March 2015, 10:44 AM
Unregistered
Guest
 
Re: BEL PE Question Paper

Hi I want to apply for BEL Probationary Engineer written Test so can you please provide me the previous year question paper of this exam?
  #4  
20th March 2015, 10:45 AM
Super Moderator
 
Join Date: May 2012
Re: BEL PE Question Paper

Ok, here I am providing you the question paper of BEL Probationary Engineer written Test.

BEL Probationary Engineer(Mechanical) Written Test Questions

BEL Technical Questions

1. Newton’s law of viscosity relates
A. Velocity gradient and rate of shear strain
B. Rate of shear deformation and shear stress
C. Shear deformation and shear stress
D. Pressure and volumetric strain
Ans: B

2. Calculation of meta-centric height of a floating body involves second moment of area.The axis about which this moment is to be calculated passes through the
A. Top horizontal surface of the body
B. Bottom horizontal surface of the body
C. Centre of gravity of the body
D. Centre of buoyancy
Ans: B

3. The buoyancy force is
A. Equal to volume of liquid displaced
B. Force necessary to maintain equilibrium of a submerged body
C. The resultant force acting on a floating body
D. The resultant force on a body due to the fluid surrounding it
Ans: D

4. Navier – stokes equations are useful in the analysis of
A. Turbulent flows
B. Vortex flows
C. Viscous flows
D. Rotatioal flows
Ans:C

5. When air is adiabatically saturated, the temperature attained is the
A. Dew point temperature
B. Dry bulb temperature
C. Wet bulb temperature
D. Apparatus Dew-point temperature
Ans: C

6. Air vessels are used in reciprocating pumps in order to
A. Increase the delivery head
B. Reduce suction head
C. Minimize delivery head fluctuation
D. Reduce accelerating head
Ans: D

7. A Kaplan turbine is a
A. Outward flow reaction turbine
B. Inward flow impulse turbine
C. Low head axial flow turbine
D. High head mixed flow turbine
Ans: C

8. Clapeyron’s equation is used for finding out the
A. Dryness fraction of steam only
B. Entropy of superheater vapour only
C. Specific volume at any temperature and pressure
D. Total heat of superheated steam only
Ans: C

9. In a single stage reciprocating air compressor, the work done on air to compress it from
suction pressure to delivery pressure will be minimum when the compression is
A. Isothermal process
B. Adiabatic process
C. Polytropic process
D. Constant pressure process
Ans: A

10. The function of economizer in a boiler is to
A. Superheat the steam
B. Reduce fuel consumption
C. Increase steam pressure
D. Maintain saturation temperature
Ans: B

11. Which one of the following represents open thermodynamic system?
A. Manual ice cream freezer
B. Centrifugal pump
C. Pressure cooker
D. Bomb calorimeter
Ans:B

12. Isentropic flow is
A. Irreversible adiabatic flow
B. Reversible adiabatic flow
C. Ideal fluid flow
D. Frictionless reversible flow
Ans: B

14. Lowest COP is of vapour
A.Compression cycle with superheated vapour
B. Compression cycle with dry compression
C. Compression cycle with wet compression
D. Absorption cycle
Ans: D

15. Air injection is IC engine refers to injection of
A. Air only
B. Liquid fuel only
C. liquid fuel and air
D. Supercharging air
Ans: B

16. In the SI engine, highest UBHC concentration is observed during
A. Maximum load
B. Acceleration
C. Deceleration
D. Idling
Ans: D

17. In the film established along a vertical plate during condensation of any vapour over the
plates, the temperature distribution curve is
A. Concave upwards
B. Concave downwards
C. Parabolic
D. Straight line
Ans: D

18. Ice is very close to a
A. Gray body
B. Black body
C. White body
D. Specular body
Ans: B

19. Which of the following is not an essential component of any refrigeration system, where refrigeration effect is produced by vaporization of refrigerant ?
A. Compressor
B. condenser
C.Evaporator
D. Expansion device
Ans: A

20. The centre of pressure for an inclined surface area
A. Lies below the centroid of the surface strain
B. Coincides with the centroid
C. Lies above the centroid of the surface
D. None of the above
Ans: (a)

BEL General Aptitude

1. The total number of digits used in numbering the pages of a book having 366 pages is
A. 732
B. 990
C.1098
D.1305
Ans:B

Explanation: Total number of digits= (No. of digits in 1- digit page nos. + No. of digits in 2-digit page nos. + No. of digits in 3- digit page nos.)
= (1 x 9 + 2 x 90 + 3 x 267) = (9 + 180 + 801) = 990

2. A and B together can do a piece of work in 30 days. A having worked for 16 days, B finishes the remaining work alone in 44 days. In how many days shall B finish the whole work alone?

A.30 days
B. 40 days
C. 60 days
D. 70 days
Ans:C

3. 39% of a number exceeds 19% of the same by 48. What is the number ?
A.180
B. 260
C. 240
D. 280
Ans:C

4. (√5+√3)/(√5-√3) is equal to :
A. 1
B. 2
C. 4-√15
D. 4+√15
Ans:C

5. A is the son of C; C and Q are sisters; Z is the mother of Q and P is the son of Z. Which of the following statements is true?
A. P and A are cousins
B. P is the maternal uncle of A
C. Q is the maternal grandfather of A
D. C and P are sisters
Ans:B

Explanation: C and Q are sisters and A is the son of C. Hence, C is the mother of A or Z is the mother Q.Hence, Z is the maternal grandmother of A. P is the son of Z. Hence, P is the maternal uncle of

6. QAR, RAS, SAT, TAU, _____
A. UAV
B. UAT
C. TAS
D. TAT
Ans:A
Explanation: In this series, the third letter is repeated as the first letter of the next segment. The middle letter, A, remains static. The third letters are in alphabetical order, beginning with R.

7. .”School” is related to “Education” in the same way as “court” is related to
A. Lawyer
B. Criminal
C. Justice
D.Jugde
Ans:C

8. The sum of the first 47 terms of the series 1/4+1/5-1/6-1/4-1/5+1/6+1/4+1/5-1/6… is:
A. 0
B. –(1/6)
C. 1/6
D. 1
Ans:B

9. The smallest value of m, for which 2m+1 is not a prime number, is:
A. 3
B. 4
C. 5
D. 6
Ans:B

10. How big will an angle of one and a half degree look through a glass that magnifies things three times?
A. 1 ½
B. 2 ½
C.3 ½
D. 4 ½
Ans: A. 1 ½ degrees
Explanation : The magnifying glass cannot increase the magnitude of an angle.

11. Nitin's age was equal to square of some number last year and the following year it would be cube of a number. If again Nitin's age has to be equal to the cube of some number, then for how long he will have to wait?
A. 10
B. 38
C. 39
D. 64
Ans:B
Explanation: Clearly, we have to first find two numbers whose difference is 2 and of which the smaller one is a perfect square and the bigger one a perfect cube.
Such numbers are 25 and 27.
Thus, Nitin is now 26 years old. Since the next perfect cube after 27 is 64,
so required time period = (64 - 26) years = 38 years.

12. 1, 6, 24, 60,120, 210
A. 336
B. 366
C. 330
D. 660
Ans: A. 336

13. A cylindrical container has a radius of eight inches with a height of three inches. Compute how many inches should be added to either the radius or height to give the same increase in volume?
A. 13
B. 16/3
C. 11/3
D. 17/3

Ans: B.16/3 inches

Explanation : Let x be the amount of increase. The volume will increase by the same amount if the radius increased or the height is increased.
So, the effect on increasing height is equal to the effect on increasing the radius.
i.e., (22/7)*8*8*(3+x) = (22/7)*(8+x)*(8+x)*3
Solving the quadratic equation we get the x = 0 or 16/3. The possible increase would be by 16/3 inches.

14. 12 men take 36 days to do a work while 12 women complete 3/4 th of the same work in 36 days.In how many days 10 men and 8 women together will complete the same work?
A. 6
B. 27
C. 12
D. Data inadequate
Ans:B

15.If the average marks of three batches of 55, 60 and 45 students respectively is 50, 55, 60, then the average marks of all the students is:
A. 53.33
B. 54.68
C. 55
D. None of these
Ans:B


Quick Reply
Your Username: Click here to log in

Message:
Options




All times are GMT +5. The time now is 11:52 PM.


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

1 2 3 4