Question
Question
SECTION-A
There are FOUR questions in this section. Answer any THREE.
Notations have their usual meaning unless stated otherwise.
1. (a) Collar A and B are connected by a 525 mm long wire and can slide freely on
frictionless rods as shown in Fig. l(a). If a force P :0341 N is applied to collar A,
determine (i) the tension in the wire when y = 155 mm, (ii) the magnitude of the force Q
2. .(a) A slender steel rod of length 225 mm is placed inside a pipe as shown in Fig. 2(a).
Determine the largest value of e for which the rod will not fall into the pipe. Given that
static friction coefficient between the rod and the pipe is 0.2. (267j )
(b) Determine by direct integration the location .of the centroid of a parabolic spand~'d
shown in Fig. 2(b). (20)
3. (a) A thin semicircular plate shown in Fig. 3(a) has a radius la' and a mass 'm'.
. '
Determine the mass moment of inertia of the plate with respect to (i) the centroidal axis
BB' and (ii) the centroidal axis CC' that is perpendicular to the plate. (20)
(b) The two blocks shown in Fig. 3(b) start from rest. The pulleys are assumed to be
frictionless and massless. The coefficient of friction between the block A and the
horizontal plane is 0.25. Determine the acceleration of each block and the tension in
each cord. Comment on the type of friction coefficient required to solve the problem. (26%)
4. (a) Show that the'rate of change of angular momentum of a rotating slab is (20)
~ -~
HG=Ia.
where G is the center of gravity of the slab and j is the mass moment of inertia about
the axis at' G perpendicular to the slab.
(b) The steel roll shown in Fig.,4(b) has a mass of 1200 kg, a centroidal radius of
gyration of 150 mm, and is lifted by two cables looped around its shaft. Knowing that at
the instant shown the acceleration
, of the roll is 150 mm/s2 downward and that for each
cable tension TA = 3 kN, determine (i) the corresponding tension T B and (ii) the angular
ME 245/IPE
SECTION-B
There are FOUR questions in this section. Answer any THREE.
diagram. (23+23.% )
..TOL
zoommi
--i'
, -, '.' !
,-,-- L_
6. (a) Four masses A, B, C and D revolve at equal radii and are equally spaced along a
shaft. The mass B is 7 kg and the radii of C and D make angles of 90° 'and 240°
respectively with the radius of B. Find the magnitude of the masses A, C and D and the
, 777777
F/Vu'f.l.. gw a, to(b)
Contd P/3
=3=
ME 245/1PE
7. (a) A leather belt 125 mm wide and 6 mm thick, transmits power fr?m a pulley 750 mm
diameter which runs at 500 rpm. The angle oflap is 1500 and J.L = 0.3. If the mass of 1
m3 of leather is 1000 kg and the stress in the belt is not to exceed 2.75 MPa, find the
8. Draw the profile of the cam when tIle roller follower moves with uniformly accelerated
:36kN .A
Fig.l(b)
Fig. l(a)
\'1
_-- a.-~--'-'"
Fig.2(b)
Fig.2(a)
Fig.3(b)
B
C'
A
Fig.3(a)
Fig.4(b)
L-2ff -I/IPE Date: 13/12/2014
BANGLADESH UNIVERSITY OF ENGINEERING AND TECHNOLOGY, DHAKA
L-2/T-1 B. Sc. Engineering Examinations 2013-2014
Sub: MATH 291 (Differential Equations~ Vector Calculus and Laplace Transform)
SECTION-A
There are-FOUR questions .~nthis section. Answer any THREE.
dy x4 + y4
(c) = (10)
dx xy3
d2y x d (11)
2. (a) Solve: -+2J[+4y=e
2
sin2x
dx dx
2
(b) Solve: x2 d ;, -x dy +~ coslogx+xsinlogx (12)
dx dx ttl
(c) A generator having emf 100 V is connected in series with a IOn resistor and an
inductor of 2 H. If the switch k is closed at time t = 0, ob/tain a differential equation for
d2 d (35)
equation x~ + ; + xy = O.
c1 'A.,v
sinx
(c) Show that -J3/2 ()x =---cosx. (13)
~ 2 x
Contd P/2
=2=
MATH 291/IPE
SECTION-B
There are FOUR questions in this section. Answer any THREE.
Symbols used have their usual meaning.
O<t<c
5. (a)Draw a graph of the function H(C,t)={t where
2c-t c <t < 2c
H(c,t + 2c) = H(c,t.) and show that L{H(e,t)} = -\- tanh cs . (11)
s ,. 2
(b) Find the following: (i) L-1{ s+2 } (ii) r1{ln(S+j;2;iJ} (8+8=16)
(S2 +4s+13) 2s
3
(b) Evaluate the integral (13)
o
7. (a) Find the unit Tangent vector T, the principal normal N, the binormal B and curvature
(b) Use vectors to find the equation of the tangent plane and the normal line to the
(c) If a is an arbitrary constant vector, prove that V x (a r~r) = - r~ + r3~ (a.r). (10)
8. (a) Find the work done in moving a particle in the force field F = 3x2i + (2xz - y) j + zk
F(x, y, z) = x3j + l j + z3k over the surface of the solid bounded by the paraboloid
(c) Verify Stoke's theorem for the vector field A(x~y, z) = xzi - yj + x2 yk , where S is the
surface of the region in the first octant bounded by the coordinate planes and the plane
i) ,~.
.,.
SECTION-A
Th~re are FOUR questions in this section. Answer any THREE.
int rnain(void)
int a = 4;
int b 2;
int *p = &a;
*p = 55;
,
printf("l: a = %d, b=%d\n", a, b);
f (a, &b) ;
printf("2: a = %d, b=%d\n", a, b);
int ** q = & p;
*q & b;
*p 42;
printf("3: a = %d, b=%d\n", a, b);
return 0;
CSE 295/IPE
2. (a) Write a character-valued function named convertToGrade that has a single type
in t parameter named mark. The function should return the ~etter that corresponds to
0-49 F
50 - 59 D
60 - 69 C
70 -79 B
80 -100 A
Other X
(b) Write a complete C function named swapLargest that accepts two parameters:
(i) an array of integers and (ii) the array's length. The function finds the largest element
in the array, and swaps the largest element with the element in the last array position. (10)
(c) Write a recursive search procedure that looks for an element in a sorted array of
integers and the number of elements to be checked in every recursive call is half
compared to the previous call. (15)
3. (a) Declare a structure that contains: An integer called I D. Character arrays called
first and last, each of 10 characters. A pointer to the structure called next. Write
a function called de 1e tel D() that given a pointer to the head of a linked list of
structures of the type (you just created) and an I D, will search through the linked list
and remove the node with that I D and print the First and Last names out. If the I D is not
present, it will point out "No such ID present". Example of the function call:
delete_ID (myhead, myID); (15)
(b) Give an example of nested structure. (8)
(c) Given the definition of a struct for Point: (12)
struct Point
double x;
double y;
} ;
CSE 295/IPE
4. (a) Write a C program so that it reads the file whose name is given as input and prints
out the number of lines in the file and the total number of characters in the file. (8)
(b) Briefly explain call by value and call by reference with examples. (5+5)
(c) Give an example of mutual recursion. (8)
(d) Summarize the different modes that can be specified by the fopen function. (5)
(e) What is the purpose of the library function feof? (4)
SECTION -B
There are FOUR questions in this section. Answer any THREE.
5. (a) Explain the difference between 'float' and 'double' data type. (4)
(b) Write short notes on the following topics: (6+6+6=18)
(i) Header file
(ii) Main function
(iii) Type casting
(c) Explain the difference between local and global variables with examples. (7)
(d) What are the variable naming conventions (rules) in C? (6)
6. (a) Write three separate code fragments to generate and print the series 2 5 8 11 14 17
using 'for', 'while' and 'do while' loop. In each code fragment, use only a particular loop,
e.g., 'for'. (15)
(b) .What are the purposes of using the 'break' and 'continue' statement? (5)
(c) Write a code fragment to swap the value of two variables without using any
additional (temporary) variable. (5)
(d) Write short notes on the following topics: (5+5=10)
(i) Precedence
(ii) Associativity
7. (a) Write a C code to find the LCM (Least Common Multiple) of three given numbers. (15)
(b) Write a C code to check if a given positive number is a power of 3. If the given
number is a power of 3, then print "yes"; if it's not, then print "no". (12)
(c) Write a C code to convert the case of a given letter. If the given letter is in lower
case, then convert it into the corresponding upper case letter and vice versa. (8)
8. (a) Write a C code to sort an array of integers in descending order. You should take
inputs using a loop. (15)
(b) Find the number with maximum occurrence in an unsorted array of integers. Assume
that the integers in the array are within the range 1-100. (20)
L-21T -1/IPE Date: 10/0112015
BANGLADESH UNIVERSITY OF ENGINEERING AND TECHNOLOGY, DHAKA
L-2/T -1 B. Sc. Engineering Examinations 20 13-20 14
SECTION-A
There are FOUR questions in this section. Answer any THREE.
results: (18)
The test data have been taken from the primary side of the transformer.
(i) Find the equivalent circuit of this referred to the low-voltage side.
(ii) Calculate the full-load voltage regulation at 0.8 leading power factor.
3. (a) Explain the principle of operation of a 3-phase induction motor. How rotating
/
Contd P/2
=2=
EEE 271/IPE
Contd ... Q. NO.3
(b) A 208 V, 2-pole, 60 Hz, Y-connected induction motor is rated 15 hp. Its equivalent
4. (a) Briefly explain how synchronous motor can be used for power factor correction. (6)
(b) With necessary and neat'diagrams, discuss the effect of field current change on a
30 hp, what will be the new lA, IL, EA and power factor? (17)
SECTION-B
There are FOUR questions in this section. Answer any THREE.
(b) Derive the equation for the tenninal characteristics of a series dc motor. (10)
(c) A 50-hp, 250-V, 1200 r/minshunt dc motor has a rated armature current of 170 A
and a rated field current of 5 A. When its rotor is blocked, an armature voltage of 10.2 V
(exclusive of brushes) produces 170 A of current flow, and a field voltage of 250 V
produces a field current flow of 5 A. The brush voltage drop is assumed to be 2 V. At no
load with the temlinal voltage equal to 240 V, the armature current is equal to 13.2 A,
the field current is 4.8 A, and the motor's speed is 1150 r/min. (15)
(i) How much power is output from this motor at rated condition?
(ii) What is the motor's efficiency?
Contd P13
=3=
EEE 271/IPE
input offset current 110= 150 nA and average input bias current lIB = 300 nA. (14)
_.-.~------_ ..
1;'00 KQ.
t;) KSl
v.I 0
. --".
Fi3 ... 6 (c.) .
diagram. (12)
(c) Implement the following mathematical relations using Op-Amp. (18)
(i) Vo = 2~ + 10 V2dt J
")
(11 V0 = - 5Tl"I + 2 ----;:Jt
Y
dV2
(iii) Vo = ~ - V2
8. (a) Prove that the average voltage of a full wave controlled rectifier can be given by, (7)
V = Vmax
avg n(1 + cosa)
where, Vmax = Amplitude of input sine wave
(b) Explain the tum on process of SCR by two transistor model. (10)
(c) Write short notes on (18)
SECTION ~A
There are FOUR questions in this section. Answer any THREE.
1. (a) Prove that the survival probability of a ceramic component can be represented by (8X)
,
~ (v) = exp{- ~(~Jm}
Vo 0"0
you design the window with tempered glass (crr = 150MPa), the thic!rness would be J3
times thinner than ordinary (soda-lime) glass.' (15)
Consider a failure probability of 10-6 an~ the design life under load is 103 hrs. The stress
analysis of a disc is given by
MME 295/IPE
Contd ... Q. No. 2(c)
(i) Compute the resolved shear stress on (1 1 0) plane along [111] direction when
(ii) If slip occurs on a (110) [111] slip system with a critical resolved shear stress
of 40 MPa, compute the magnitude of the applied tensile stress necessary for
yielding.
3. (a) Show that stiffness of particulate composites falls within upper and lower bound
stiffnesses. (10 X)
(b) Prove that the critical fibre length for effective strengthening is (7)
L = r'CYb
c
r
where, r = fibre radius, (J'b = breaking stress, and 't = shear strength of fibre-matrix
interface.
(c) A composite made of long parallel fibres of Kevlar in an epoxy resin matrix is
designed to sustain a tensile strength of 1800 MPa. If the strengths of Kevlar and epoxy
resin are, respectively, 2600 MPa and 85 MPa, what volume fraction of Kevlar must be
4. (a) What do you understand by glass transition temperature (Tg)? What are the factors
(c) What is tempered glass? Glass panel (tempered) used in architectural building
generally contains surface (skin) compressive stress of 110 MPa and internal (core)
Contd P/3
;i;
=3=
MME295/IPE
SECTION...:.B
There are FOUR questions in this section. Answer any THREE.
5. (a) A simple parallel plate capacitor is being designed, which can store a charge of 4 x
10-5C at a potential of 1000 V. The separation between the plate is 0.2 mm: Calculat~
(b) If a total capacitance of 0.025 ~F is required, how many plates of BaTi03 of the
6. (a) Describe the perovskite structure of BaTi03 crystal. Why does BaTi03 have a dipole
moment at room temperature? Explain your answer with the help of figures. (20)
(b) What are Piezoelectric Ceramics? (3}j)
7. (a) Describe the drying curve and the drying rate curve of a ceramic body being dried at
(b) With the help of diagrams describe the process of slip casting. (15)