0% found this document useful (0 votes)
57 views98 pages

2019 August I-II

Uploaded by

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

2019 August I-II

Uploaded by

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

KATHMANDU UNTVERSITY Mark scored:

End Semester Examination


August,2019
Level : B.E./B.Sc./B.Tech. Course : COMP 116
Year : I Semester : II
I
I
I
t
I
I
i
i
I
i
I
I
I
I
I
I
I
I
I
I
I
I

KATHMANDU UNIVERSITY Mark scored:


End Semester Examination
August,2019
Level : B.E./B.Sc.lB.Tech. Course : COMP 116
Year : I Semester : II
Exam Roll No. : Time: 30 mins. F.M. :10

Registration No.: Date Aw 2 7 2019

SECTION "A"
[20Q x 0.5 = 10 marks]

Encircle the most appropriate answer

1. The C++ header file contains function prototypes for the standard input
and standard output functions.
a. <cmath> c. <c stdio>
b. <fstream> d. <iostream>
B
2 The act of representing essential features without including the background
explanations is called
a. Abstraction c.
PolYmorPhism
b. Encapsulation d. Inheritance
a
J Object oriented programming gives priority to
a. Data c' Both a and b
b. Function -.
d. None of the mentioned
4. If class A is friend of class B and class B is friend of class C then, which of the
followings is true?
a. Class C is friend of class A
b. Class A is friend of class C
c. Class A and Class C do not have friend relationship
d. None of the above
@ The output of following code segment is
5
int a = 10;
int b = 10;
-.
a. Syntax Error c. 10
b.5 d. None of the mentioned

6. Default access specifier for data members of a class is


a. Protected c. Internal
b. Public d. Private
1 A function declaration inside a class gives importance to of arguments.
a. type c. type and name
b. type and identifier d. variable
-
8. How do we define a destructor for a class A?
a. A-( ){ } c. A( ){ }-
b. -Ao{ } d. Ao-{ }
-\

9 The use of an object of one class in definition of another class is called


a. Encapsulation c. Abstraction
b. Inheritance d. Composition
10. Consider the following three classes
class A
t .),
cLass B
{ )

class C : public B, public A


{ ),
Which is the order of invocation of constructors when an object of class C is
instantiated?

a. first B0, then A0, and then C0 c. first C0, then B0, and then A0
b. only C0 is invoked d. first A0, then B0, and then C0 G-
11. If class A is inheriting class B as, Class A: B then
a. Public members of B becomes protected members of A
b. Private members of A becomes public members of B
c. Protected members of B becomes private members of A
d. Public members of B becomes public members of A

t2. Rethrowing an exception should


a. Have argument as mandatory in throw keyword
b. Have multiple catch section
c. Have keyword used "rethrow"
d. Have nested block of trv and catch
13. Virtual function is used to
a. deal ambiguous scenario in sub-ordinate class
b.
c.
d.
deal non-ambiguous scenario in super class
achieve run time polymorphism
create abstract class
c
t4. Which of the followings is true?
a. Parameterized constructor should take arguments by pass by reference
b. We can send argument by pass by value to copy constructor
c. We must send argument by pass by reference to copy constructor
d. We can send argument to copy constructor by both pass by value and pass by
reference.

l5 How can we initialize private base class variables from a derived class constructor?
a. We can assign values to the variables directly in the derived class constructor
b. We can call the base class constructor inside the { } of the derived class
constructor
c. We can call the base class constructor after the function header of the derived
class constructor, with a : in-between the two
d. It is not possible to initialize private base class variables from a derived class
constructor
I
AUo 2 / 20tg
t6. Temolate in C++
a. is way of achieving procedural programming
b. is way of achieving generic programming
c. is way of achieving object oriented programming
d. is way of achieving run time polymorphism

t7. Which of the followings operators cannot be overloaded?


a.?:b.==c.! d.+
18 Which of the followings cannot be considered as polymorphism in OOP?
a. Function Overloading c. Constructor Overloading
b. Operator Overloading d. Function Oveniding
19. Static linkage of base class pointer with base class members can be avoided by using

a. Virtual base class c. Vitual function


& b. Abstract class d. derive class pointer

20 For overloading A++, the operator overloading is defined as _.


a. Return-type operator ++( )
b. Return-type operator ++(int)
c. Friend Return-type operator ++ ( )
d. Friend Return-type operator ++ (int)


o

D
KATHMANDU UNTVERSITY
End Semester Examination
August,2019 AUG 2 7 2015
Level B.E.iB.Sc./B.Tech. Course :COMP 116
Year I Semester : II
Time 2 hrs. 30 mins. F. M. :4O
SECTION "B"
[6Qx 4=24 marks]
Attempt ANY SIX questions.

1. How are data and functions organized in object oriented programming?

2. Write of objects which


a program to create a class called "Province". Create an alTay
stores information about seven provinces of Nepal as given below:
Province name: State 3
Area: 20304 sq km
Population: 5529452
Store information of all seven provinces and display the information as in the above
3 format. Make necessary assumptions for Area and Population.

J Write a program to define two inline functions using concept of function overloading.
o'R" and an another function
One function returns area of a circle having radius of
returns area of a rectangle having length of "L" and breath of "8".
[Area of circle: 3.l4xRxR, Area of Rectangle: LxB]

4. Describe in brief about two levels of access control over class members in inheritance.

5 With an example, briefly explain the initializatton of base class data members by
using derive class constructor.

6 How does pure virtual function help to achieve abstraction? Explain with appropriate
example.

1 Write short notes on:


a. Rethrowing an exception b. Function Template
@
SECTION "C"
[2Qx8=16marks]
Attempt ANY TWO questions.

8. a. Describe the mechanism of accessing public data members and member functions
for the following cases:
i. program
Inside the main tll
ii. Inside a member function of the same class t1.51
iii. Inside a member function of another class t l.5l
b. What sort of ambiguity can be addressed by the use of virtual base class? Explain
it withdiagram. t4l

9 Write a program to define a class "Length" which has data members: feet and inches.
Define appropriate constructors to initialize objects of the class. Implement concept of
operator overloading to add two objects of the class "Length". Write well driven
program to set and display values ofthe objects. t8l
(Hint: Check the condition 12 inches= l foot inside the overloading function.
If Ll=2 feet 9 inches, L2=3 feet 9 inches, L3=LL+L2 then L3=6 feet 6 inches)
10. a. Write a program
to handle an exception where if user enters an alphabetic character,
the program displays welcome message and if user enters numeriial character, it
displays error message. H)
b Write in brief about static data member of a class. How does a static method access
static data member of a class? Explain with appropriate example.
t1+31

@
KATHMANDU UNryERSITY Mark scored:
End Semester Examination
August,2019
Level : B.Sc./B.Pharm.lB'Tech. Course : COMP 102
Year :I Semester : II
Exam Roll No. : Time: 30 mins. F.M. :10

Registration No Date AUG 2 i ?019

SECTION "A''
[20Q x 0.5 = 10 marks]

Encircle the most appropriate answer.

1. C is a-- and programming language.


a. algebraic, structured b. algebraic, system
c. general-purpose, structured d. general-purpose, aPPlications

( 2. Can reserved words and keywords be same in C?


D
a. yes b. no
c. iepends upon context d. reserve words does not exist in C

a
J Certain nonprinting characters are known as
a. blank sequence b. backslash sequences
c. Iine feed sequences d. escape sequences

4. The operators within C are grouped hierarchically according to their


a. associativity b. precedence c. ancestor d. sibling

5 The result of following expression


i=8, j =5 -'
2* ( (t/s) + (4* (j -3) ) ? (i+j -2) )

a.19.2 b. 18 c.0 d. none

q 6. Which is the output of following program?


#includecstdio. h>
main ( )

{
int r] = 10;
printf ("U d" , functl (n) ) ;
)

int functl- (int n)


{
if (n>0) return (n+fuct1(n-2) ) ;

a.0 b.30 c. infinity d. garbage value

7 Which is not a conversion character?


a.i b.o c.x d.y
8. The statement causes a particular group of statement to be chosen
from several available groups.
a. expression b. compound c. control d. switch

9 Which is the output of following program?


#include< stdio . h>
main ()

t
int. i=0, x =0;
ror'';lii;l::ii"
x+=i; '
else
x--;
printf ("?d",x) ;
)
printf ("\n x - ,x) ;
t
%d,,
)

a. 10327613 t2 2t
x=21
b.01 t32613 1220
x=21
c.11132613 t2 20
x=20
d. 103276t3 t22l
x=20

10. Which is the different storage-class specifications in C?


a. automatic, external, static and register b. auto, extern, static and register
c. local, global, static and register d. all of the above

1l Which is the output of following program?


#includecstdio. h>
main
t
() c
int at count;
for ( count=1 i count<=S ; ++count ) {
a=functl (count) ;
print.f ("?d" , a) ;
)
)

functl (int x)
t
static int Y =6;
f*=Xr'
return (y) ;
)

a.1361015 b.12345 c.54321 d. 15 10631


AUG 2 i 2019

12 Which bitwise operator is suitable for turning off a particular bit in a number?

a. &&operator b' & oPerator


c. operator
ll
d. ! oPerator

13 In expression i = g0 + f0, the first function called depends on


a. compiler b. associativiY of 0 operator
.. pr.."d"nce of 0 and + operator d' left to write of the expression

t4. Which is the output of following program?


#include <stdio-h>
int maino
i
int *Ptr, a = 10;
ptr = &a;
*ptr += l;
printf ("?d, Zdfn", *Ptr, a);
)
(
, d. 11
a.10 10 b. 10 11 c.11 10 11

15 Which is true for a, if a is defined as: int a[10][20]; ?


a. a is true for two-dimensional array
b. 200 int-sized locations have been set aside
*
c. The conventional rectangular subscript calculation20 row + col is used to find the
element a[row, col].
d. all of the above

1,6. What is the output of the following program?


#include <stdio.h>
struct student
{
\;
void maino
{
€ struct student s12);
printf ("?d", sizeof(s) ) ;

a.2 b.4 c.8 d.0

t7. The size of a union is determined by the size of the


a. first member in the union b. last member in the union
c. biggest member in the union d. sum of the sizes of all members

18. Member of a union is accessed


a. union-name.member
b. union-pointer->member
c. both union-name.member and union-pointer->member
d. none of the mentioned
19, Which is the output of following program?
#include <stdio.h>
void maino
t
int a[2] [3] = {f , 2, 3, 4, 5};
int I - o, j = o;
for (i = 0; i < 2; i++)
for (j = 0; j . 3; j++)
printf (,'?d," a til tj I ) ;
)

a.123450 b.l2345garbagevalue
c.123455 d. run time error

20. Which one of the following header files must be included to use dynamic memory
allocation functions?
a. stdlib.h stdio.h
b. memory.h
c. d. dos.h

6
li

c
KATHMANDU I.INIVERSITY
End Semester Examination
August,2019
AUG 2 I 2019
Level : B.Sc./B.Pharm./B.Tech. Course : COMP 102
Year :I Semester : II
Time : 2 hrs. 30 mins. F. M. :4O
"B"
[6Q'" 4:24 marks]
Attempt ANY SIX questions.

1. Summarize the rules for naming identifies. What are the restrictions to be applied for
the keywords use? 12+21

Z. How can the value of an expression be converted to a different data tlpe? What is it
called? Describe two equality operators included in C. How do they differ from the
relational operators? [1+1+1+1]
U)
a
J How can the getchar fi.rnction be used to read multicharacter strings? If whitespace
characters are present within a control string, how are they interpreted? How can the
maximum field width for a data item be specified within a scanf function? How can the
minimum field width for a data item be specified within the printf function? [1+1+1+l]

4. Write a loop that generates every third integer, beginning with i:2 and continuing for
all integers that are less than 100. Calculate sum of those integers that are evenly
divisible by 5. Use two different methods to carry out the test. [2+2]
a. Use the conditional operator (? :).
b. Use an if-else statement.
5 What is the purpose of return statement? Summarize the ruIes associated with function
prototypes. Write a function that calculates and displays the real roots of quadratic
equation. )., , n [1+1+2]
ax2+bx+g:6
? 6. What advantage is there in defining ar-affay size in terms of a symbolic constant rather
than a fixed integer quality? How is an anay name interpreted when it is passed to a
function? Write a C program that enters a line of text, stores it in an array and then
displays it backwards. Allow the length of the line to be unspecified (terminated by the
pressing the Enter key), but assume that it does not exceed 80 characters. [1+1+2]

7 Write a program to count the number of vowels, consonants, digits, whitespace


characters and other characters in a line of text using function and array. 14]

SECTION "C"
[2Q.*8=16marks]
Attempt ANY TWO questions.

8. What is the purpose of do-while statement? How does it differ from the while
statement? What is the purpose of the break statement? We use function to make our
program modular. State at least three advantages of making your program modular.
With example, differentiate between pass by value with pass by reference.
[1+1+1+3+2]
9 Write program that defines a structure called STUDENT with suitable attributes and
a
reads data fot'n' students. Your program should display the records in ascending
order
according to the name of student. tS]

10 Write a recursion program to find sum of r natural number. Write a program that reads
a sentence and counts the total number of character. Write a program that reads
the
mark of the course and prints the equivalent grade.
[3+3+Z]

t
t
t

KATHMANDU UNIVERSruY N{ark scoted:


End Semester Examination
August,2019
Level : B.E.lB.Sc./B.Pharm'/B.Tech Course ENGT 102
Semester II
Year : I
Exam Roll No Time: 30 mins. F. M. 10

No. Date [u0 z 3 20ls


t,

t20Q x 0.5 = 10 marksl

Circle the best alternative for each question.

1. ln To Know a Fly Yrncent Dethier calls "act of faith"


a. a question.
b. in our senses with which an experiment commences.
a trust
c. something which hinders experiments most of the time'
G d. experimental control'

2. Semmelweis finally revised hii hypothesis that childbed fever ...


a. was not a problem at all, because the actual problem was in how the doctors
treated their Patients.
b. can be caused not only by a cadaveric material, but also by putrid matter.
c. was, in fact, a kind of cancer.
d. had actually to do with minor carelessness.
3. Armand Denis' The Four-tusked Elephant shows that field research .. .
a. is more difficult than lab research'
b. accompanies coincidences besides hard work'
c. does not require any planning and hard work.
d. Involves a lot of time.
4. "Your highly learned men are my big fools," a line from Devkota's poem The
Lunatic, is a...

a 5.
a. simile. b. personification. c. contradiction.
"Easter Island is Earth writ small." This Statement in a way walns us '..
d. paradox.

a. against the destructions of natural resources on earth.


b. about our careless ways of living.
c. that Earth is almost destroyed and there is no hope'
d. that we need to civilize Easter Islanders.
6. One of Vasili Svetlovidov's final observations is that ...
a. talent does not actually help people when they are undergoing extreme suffering.
b. his talent has helped him overcome his personal tragedies'
c. talent makes people boastful.
d. his own talent is his enemy.

7 . Imaginary dialogues, according to Bertrand Russell, lead us to ...


a. dismiss hypothetical opponents. b. change our mind.
c. delusions. d. dilemmas.
I(

8. "They must be in Cadiz.I can almost see


them!" muttered Uncle Buscabeatas,
because he knew that ...
a' Rota was just a small town where the thief would not get .proper, price for
the
pumpkins.
b' it-would be impossible for the thief to sell the pumpkins at Rota, withour
the risk
of his recognizing them.
c. the thief would get double the price he would ger ar Rota for the pumpkins.
d' in the town of Rota everybody knew uncle FJano was a thief, so they
would not
buy anything from him.

9 which of the foilowing-gives the story Mr. Know Ail itsmajor twist?
a. the narrator's prejudice towards Mr. Kelada
b. the issue of Mrs. Ramsay,s necklace
c. Japanese cultured pearls
d. the open-ended nature ofthe story

l0 In Toulmin's model of argument, .rebuttal, stands for


a. the other side or sides of the topic being discussed.
...
b. negation of irrelevant issues uno ais-iJral of all of them. c
c. unfair arguments.
d. evaluation of a text.
11. which of the following must be considered prior to writing
a paper or article?
a. The purpose of the writing and its role
b. One's credentials
c. Audience
d. Potential publication venues
12. which of the following should the subject line of a memo proposal
include?
a. A topic b. A main idea
c. A topic and a main idea d. Complete sentence
13. The main purpose of including credentiars in an external proposal
is to ...
a. establish the fact that the project is an important adventure.
b. detail qualifications, expertise and experiences of the project managers.
c. include qualifications about all the team members.
d. explain that the project team involves too many good people.
o
14. 'Problem definition' is mainry done in a project proposal
with an intention to ...
a. list out possible solutions.
b. criticize the lack of attention.
c. determine the amount of budget involved.
d. justify the urgency of a solution proposed.
15 which oNE of the following does a Trip Report essentially include?
a. Major details of an official trip b. Discursive personal details
c. A list of things to be done d. Helpful extlrnal information
t6 Which ONE of the following is the best option to visually represent A Task
Schedule?
a. Pie Chart b. Bar Chart c. Flow Chart d. Gantt Chart
{

[uG 13 2s1$

fl A 'Literature Review' section in a research article ...


a. provides surveys of all the information available on a particular topic.
b. introduces the subject of study.
c. basically includes the writer's argurnents.
d. includes the most important finding made by the researcher.

18 A Technical Report/ Article claims high academic/ professional merits if ...


a. it helps its author earn high financial gains.
b. its author earns professional recognition from it.
c. it is not published.
d. it creates controversies.
L9 A Formal Report usually presents the problems encountered, which
a. occasionally trigger future research.
b. essentially come with solutions within themselves.
c. stand as part of the least important section in the report.
d. may not have any value.
D
20. Funding agencies usually ask one to first submit a concept paper rather than a fully
developed proposal because ...
a. they first want to see if the submission is worthy.
b. such a practice is becoming universal these days.
c. they do not want to read long proposals.
d. concept papers are better than proposals.


o

I
KATHMANDU UNTVERSITY
End Semester Examination
August,2019 AUG 2'3 2019
Level : B. E./B.Sc./B.Pharm./B.Tech' Course : ENGT 102
Year : I Semester: II
Time : 2 hrs. 30 mins. F. M. :4O
S N "B"
[Writing]
[8Qx5=40marks]
Answer the following questions

1 The narrator begins the story Mr. Know All with these words: "I was prepared to
dislike Max Kelada even before I knew him." What kind of prejudice is this? Is the
prejudice sustained throughout the story? Why?
OR
What is the correlation of Vasili Svetlovidov's social status in his youth and the
subsequent pain he undergoes in his old age?
rJ
2. The persona in the poem The Lunatic first tells the reader how he himself is. Then he
goes on to talk about the differences between himself and "You." What do you think
is the rationale behind doing so?
OR
How does Uncle Buscabeatas uss reasoning in de Alarcon's The Stub Book?

a
J What similarities and differences do you find in Deither's To Know a Fly and
Russell's Keeping Errors at Bay?
OR
What important lessons can we learn from Jared Diamond's Adaptive Failure:
Easter's End?

4. Develop a paragraph (300 words) with ONE of the statements below using Toulrnin's
Model of argument.
a. What should matter in your studies and research is 'fun and impact'.
? b. Genuine change cannot be expected only through changes in systems.
5 Develop a short concept paper on ONB of the following statements
a. Introducing interactive digital boards in KU's classrooms
b. The need for charity documentation to prevent comrption
6 Suppose you have recently participated in a workshop or training. Prepare a short
memo report about the valuable experiences gained from it.

7 What is an external proposal? Develop the project description section of a proposal on


the project you carried out recently.

8 Write the Introduction section of a technical article on ONE of the following topics:
a. Effects of overusing mobile phones
b. Flood Management
-

t-

a
KATHMANDU UNWERSITY Mark Scored:
End Semester Examination
August,2019
Course : MATH 103
Level : B.Sc. II
Semester:
Year : I
Exam Roll No. : Time: 30 mins. F.M. :20

No.
Date luG2020lg
SECTION "A''
[10Qxl=10marks]
(s)'
Fill in the blank space (s) by most appropriate word (s) or symbol

1. The numbers that constitute a matrix are called

A system of linear equations is said to be . if it has one or more columns


2.
(-t
3. The set of vectors containing null vector is ' " '

4. A vector space of dimension 5 over a field 9t is isomorphic to

5. The diagonal elements of a skew-Hermitian matrix are ...

6. The of a matrix is the dimension of its kemel

7. The direction of the vector projection of u along v is the same


as that of v if "

g. The .. . ... of two non-collinear vectors vr and v2 is plane through these vectors

2 1

9. The inverse of the matrix IS


-1 1

o 10. The ........ .. of two subspace of a vector space over a field is its subspace.

"8"
SECTION
[10Qx1=l0marks]

Fill in the blank space(s), DO NOT TICK, by choosing the most appropriate answer from
among the given ones.

-)AAn-)
11 The cosine of the angle between P = 10i+ ll i -2k and Q =3 i + 4k is

l- ll3; - ltl; ll2; ll3)

t2. Theinnerproductof two vectorsu= (-1, 1,2,4) andv =(1,2, -1, 1) is

t-3; -1; 1; 3l

t3 The product of eigen values of a matrix


[l l" t2)
[6; 8; 10;
14. The size of the matrix represented by a linear transformation
T : gt3 +gts Is.........
[3x3; 5x3; 3x5; 5x5l

,-rl
15. If C= It +; -i
lo*, t-i t and D_
Li i
2
t)
l,thenCDis....
2-3i
t
I+i ,1r,)'
2-3i
I t-i
2
7 +5i
I
l
2-3i 2
Fi 7 -5i ],t 2+3i
l-i
2l
, -t,)1
16. The unit vectors in the direction of i = (1, _ l, l) is u/"8 where y is
[( -1, 1, 1); (1, -1, l); (1, 1, _1); (1, 1, 1)l
17. The length of the vector ( l, 2, 4, - 3) is .. ... Unit.
[o; 5; 'tffi; 6l

l8 A square matrix A is said to be ...... ..... if A2 = A, an identity matrix.


(r
[symmetric ; involuntary; idempotent I singularl

19 kernel of the linear transformation T : yz -+yzdefined by T(xr,


.The x2) = (0, xt + x2)
Is.....
[{(1, -l)}; {(-1, 1)}; {(0,0)}; {(1, 1)}l

-2 1,

20. The cofactor of 3 in the square matrix J -1


l: 2 2
IS

L1
t 1 0; l; 2l

,::i$t
KATHMANDU UNTVERSITY
End Semester Examination
August,2019 AUG2 0 2019
Level : B.Sc.
Course : MATH 103
Semester: II
Year : I
Time : 2 hrs. 30 mins.
F.M. : 55
SECTION "C"
t3Qx7=2lmarksl
the set of all 3+uples
1 Define a field and a vector space over a field. Also, show that
multiplication defined on it'
forms a vector space under the usual addition and scalar
U+2+41

Define a linear transformation on vector spaces over a field' Show that


a linear
2.
transformation is completely determined by its values on the elements
of a basis' Also,
verify the linearity of mapping T : Vl + Vz given by T(xr, xz, xt) =
(xt - xz, xt + xr)'
l2+3+21
D OR

What is meant by a basis on a vector space? Prove that any set of n linearly
independent vectors in n-dimensional vector space Vn is a basis. Also, verify
that the
,.tofvectors {(1,2,I),(2,1, 1),(1, 1,2)} formsabasisforgt3. L2+3+21
a
J Define an eigen value and associated vector of a matrix. Also, determine the eigen
[: 1l
space of the matrix A=1"- -
2)
I l2+l+41
L6
SECTION "D''
[6Qx4=Z4marks]

4 If T is a one-one linear map from vector space U to another vector space V and Ltt, u2,
..., ynare LI vectors of U, then show that TQt),T(uz), ..., T(un) are also LI, symbols
/@ have their usual meanings.

5 If S and T are linear transformations on 9t2 and both S and T are non-singular, then
-rS-' .
show that (i) ST is non-singular and (ii) (Sf)-' - f

OR

Find the matrix representation of the linear transformation T: 912+912 defined by


T(x, y) = (x, x - 2y) relative to the basis {( 1, 0), (- I , 1) }.

6 If T is a linear mapping from vector space U to another vector space V over the same
field, then prove that T is one - one if and only if the Kernel of T is zero subspace of U.

7 Apply Gram-Schmidt process to orthonormalize the set of linearly independent


vectors {(1, 1, 1), (0, 1,2),(2,1, 1)} of V:.

8 If A and B are matrices of order 3 over the set of complex numbers, then verify that
(AB)* = B*A*, where A* denotes the tranjugate of A.
9 use matrix method to solve the system the system
of linear equations: x + y + zz 3,
2x + 2 y + 2z =7, 3 x + 4y + 3z- 2. =

SECTION "E"
[5ex2=l}marks]
Find the vector projection of 3) onto p (_ 2,3,7).
e e,2,
11. Find the inverse of the real mappin
e S@) defined by S(x) = 3x + l.
If is a nonempty subset of a vector space v, then
.s show that the span of S is a
subspace of V.

13. Show that the eigen varue of a matrix and


its transpose are the same.

14. In any vector space V, prove that ( _1)u


- u, for each u in V.

o
KATHMANDU UNTVERSITY Mark Scored:
End Semester Examination
August,2019
Level : B.E./B.Sc./B.Tech. Course : MATH 104
Year : I Semester: II
Exam Roll No. : Time: 30 mins F.M. :2O

Date AL|G 2o 201$


Registration No.:
SECTION "A''
[0Qx 1= l0marks]
Fill in the blank space (s) by most appropriate word (s) or symbol (s)
6
1. ' - z+2tire ise=
4--
The eccentricity of the ellipse

2. Spherical coordinate equation of the cone , - tf *' + y' IS

r3
a
J At the point where rc * 0, the principal unit normal vector for a smooth curve in the
plane is defined ut ff =

x2-xy
4. lim
(r,y)+(0,0) !x-1/y
-
5. The function f (x,fl -+ +lincreases mostrapidly at (1,1) in the direction il =

6. The equivalent polar integral of the integral trtY dydx is

l The value of B(1,2) = where, the symbol B(m,n) has its usual
meaning.

? 8. The speed of the particle at the given value of


i(t) - (2 cos t)i + (3 sin t)7- + Ati at t - ! ts
f, whose motion in space is given by

9 theorem is the generalization of Green's theorem in tangential form


to three dimensions.

10. The Fourier coefficient en of a function f(x) of period 2n is defined by the


formula ar, :

SECTION "B"
ll0Qxl=10marksl
Fill in the blank space (s) by choosing the most appropriate answer from among the given
ones. DO NOT TICK the answers.

l1'Thepoint(_2,:)labelsthesameaSthepoint.
l,(-2,-2), Q,-:), G2,+), Q,+) l
12. r = 6 cos g represents a circle with its centre at
[ (2,,0), (3,0 ), (r,r,), (3, rc)l

13. Tangent plane of the surface f (x,y,z): x2 + y, + z = 0 at (0,0,0) IS

Lx*y*z=0, Zx*Zy*L=0, x*y_0, z=01


14. If 13 + z2 + ye*, * z cos! = 0,tnenfiat (0,0,0)
[-1, 0, ' ,, =
undefinedl

15

y? Ztt
'e E '/sn
;, ZtB nl

16. ti ti ti xyz dxd.ydz = -


7

l7
[0,
B,
1
3
1l
L
The plane containing unit tangent vector
and binormal vector is called
[normal plane, osculating plane, ,..,iffi plane, principal planel

18 The divergence of the vecror field F(r, !) = Zxi _ yi is


[0, 1, y_Zx, Zx+y] -
t9 The primitive period of the function
f (x) _ sin j is
L;, n, ZE, 4nl

20. If a function f (x) is odd then,


[ "^ f (x)) dx=
[0, 2a, z [0" y1x11dx, z !!,11x11ax1

fi ''1
KATHMANDU UNIVERSITY
End Semester Examination
August,2019 AUG 2 0 201$
Course :MATH 104
Level : B.E./B.Sc./B.Tech.
Semester: II
Year :I
F.M. :55
Time : 2 hrs. 30 mins'
SECTION "C"
[4Q * 7:28 marks]

Define divergence and flux of vector field F @,y) across


a smooth simple closed
1
this form of the theorem for
curve c. state Green's Theorem in normal form. verify
the unit circle
the vector field F - (x - y)t + xi and the region R bounded by
ii + y, = t. 12+1+41

OR

Define potential function. write the partial derivative criteria for


a vector field
F = Mt+ Nj+ Pfr,tobeconservativefield. ShowthatF = (e' cosy*
yz)i+ (xz-
r, er sin y)i + @y + z)iis conservative over its natural domain and find its
potential
function. t1+1+51

check the symmetry and sketch the graph of the polar curver =2cos20.
Find the
2.
areaoftheregionsharedbythe circle r -- Zand acardiod r = 2-2cos0' [4+3]

3 What is TNB frame? Derive the formular = -X.fr for torsion r' Find i,fr,rc for

thespacecurve i(t) - (cost* tsin t)i+ (sint- rcos t)i+Zi. [1+3+3]

Sketch the region of integration for the integrat fi fii 1+x + Z)dy d'x, write
an
4
equivalent integral with the order of integration reversed and evaluate that integral.
FindtheaveragevalueofF(x,y,z)=xyzthroughoutthecubicalregionDbounded
by the coordinate planes and the planes x = 2,y -- 2,2 = 2' [4+3]

SECTION "D"
@ [9Q * 3:27 marks]

5 Show that I (n + l) - nf (n),1"(n) represents the Gamma function.


7t
0 -n1x<-- 2
Ttfi
6. Find the Fourier series expansion of the function f (x) - 1.
-r<x<;.
0 !<x<n
2

7 Find the derivative of f (x,!,2) = x3 - xy' - z at Po(1't'0) in the direction of


i -2i-3i+6i.
OR

Use chain rule to evaluate ffand#O* - xy + yz * zx,x -- l.t 1v,! = lt - u,Z =


uv at (u,u) - (1, L).
8 Find the point on the curve i(t) (5 sin r) i + (5 cos t)i + 12tk at a distance 26r
-
units along the curve from the point (0, 5, 0) in the direction of increasing arc length.

9 Find the maximum and minimum values of the function f(x,y) -3x* 4y on the
circle x2 + y2 1. -
t0.
l]r]:". IrF.f at for the vector field F = x,i-yi arongthe curve x- yz from
(0, 0) to (4,2).
OR
Findtheworkdonebytheforcefield F (y xz)i+ (z
- -
the line segment joining (0,0,0) and (1,,1,1). -yz)i+ e-x\tarong

Evaluate the integrat,


[i E-'. !i-'.-, d.z d"y dx.

12 Define f (0,0) in such a way that the function f (x,y) - xy# becomes
continuous at (0,0).

13. Find the area of surface generated by revolving the


right-hand loop of the Lemniscate
r2 = cos20 about y-axis.

c
KATHMANDU I.INIVERSITY Mark Scored
End Semester Examination
August,2019
Level : B.Arch. Course : MATH 106

Year : I Semester: II
Exam Roll No. : Time: 30 mins F. M. :2O

Date ALJG 2 O 2OIg


Registration No.:
SECTION"A"
[10Qx1:10marks]

Fill in the blanks space(s) by most appropriate word(s) or symbol(s).

1. The order of best scoring students in mathematics examination is an example


of...... .. scale.

2. The temperature in degree Celsius is .. scale

rJ 3 If a software application developing company asks their users to rate the user friendly
quality of this application as excellent, very good, good, and poor' This is an example
of the. ........scale.

4 Coefficient of variation of a random variable distributed as binomial with parameters

5. The central difference operator is denoted by "


6. Every polynomial equation of the 6th degree has .. ' " ' " roots'
3
7. For the ven distributed data find the value of A is?
x 3.60 3.65 3.70 3.75

v 36.598 38,475 40.447 42.s21

8 If the parameter of a binomial distribution are n & p, then its standard deviation is

€ n2
9 AL ^"3 -

10. The example of a continuous data is .

"B"
SECTION
[0Qx1=10marks]
Choose and encircle the most appropriate answer from the given choices

11. The shifting operator is denoted by


a.E b.D c'P d.a

t2 The process of finding the values inside the interval (Xo, Xn) is called
-.
a. Interpolation b. Extrapolation
c. Iterative d. Polynomial equation

13. Newton forward interpolation formula is used for intervals.


a. open b. unequal c. equal d. closed
t4 Find A (x + cos x)?
a. I +2sin1; +l 12).sinl /2
b. I -2sin(x +t 12).sint /2
c. I -2sin(x -tl2).sinU2
d. 1+2s;n1a -t 12).sint /2
l5 By using Newton's backward difference
table form the following data:
0.5000, f (35) = 0.5736,f (40) = 0.6428, (4s):
lr.rol^=
Vtyn?
f o.lolt what is the varue of
a. - 0.0049 b. -t.B7Z c. - 0.0005 d. _0.0469
t6 The next iterative value of the root of _ 4 '= 0 using
xz secant method, if the initial
guesses are 3 and 4, is
a.2.2857 b. 2.5000 c. 5.5000 d. 5.7143
17. Box plots with a large positive skew is
a.A b.B c. C d. None of these

C.
c

18. Frequency polygon with a large negative


B,

skew is
I =

a. A b.B c.C-neofrhese
A

E,

(-)
19 The number of significant digits in the number 204.0200s0
is...
a.5 b.6 c.g d.g
20 If you had a z-score of -2.33 this would tell you that :.
a. Your score was 2.33 standard deviations above the mean
b. Your score was 2.33 standard deviations berow the mean
There was a probability of 2.33 of obtaining a score greater
:
d. There was a probability of 2.33 of obtainin[ u ,.or.
than your score
--
iess than yo* ,.or.
KATHMANDU LINIVERSITY
End Semester Examination
August,2019 AUG 2 0 20tg
Level : B.Arch. Course : MATH 106
Year : I Semester: II
Time : 2 hrs. 30 mins F.M. :55
Ltc))

[3Q. 7 :21marks]
"
1. Elongation (in percent) of steel plates treated with aluminum is random with
probability density function 12+2+t+21
L.zo<x(30
f(x) = 2SO'
0, otherwise
a. What proportion of steel plates has elongation of greater than25oh?
b. Find the mean elongation
c. Find the variance of elongation

l
d. Find the cumulative distribution function of the elongations

) For the annual rainfall data in inches given below, do the following. [2 + 2 + 2 + l]
a. Construct the stem and leaf plot for these data and find the quartiles.
b. Construct the histogram of these data
c. Construct the box plot of these data
d. Interpret the box plot
0.2 3.7 1.2 13.7 1.5 0.2 1.7

0.6 0.1 8.9 1.9 s.5 0.5 3.1


3.1 8.9 8.0 12J 4.1 0.3 2.6
1.5 8 4.6 0.7 0.7 6.6 4.9
0.1 4.4 3.2 11.0 7.9 0.0 1.3

2.4 0.1 2.8 4.9 3.5 6.1 0.1

? 3 The life time of a battery in a certain application is normally distributed with mean
V= 16 hours and standard deviation o =2 hours U +2+2+21
a. Draw the shape of the probability distribution and find and represent the
probability that a battery will have life time between 14.5 and 17 hours?
b. Find the 10 th percentile of the life times.
c. A particular battery last 14.5 hours. What percentile is its lifetime on?

SECTION "D"
[6Q.* 4:24 marks]
4 p(x) = cX,x= 1,,2,3,or4 wherecisaconstant.
a. .Find the rralue"of the constant c so that p(x) is a probability mass function
b. Find P(X:2)
c. Find the cumulative distribution function of X

5 Provethata) 6- pA +f; b) L3yz= V3ys


6' The number of flaws in a certain type of lumber
follows a poison distribution with a
rate of 0.45 per linear meter.
a' what is the probabilityirrut u board of one meter
has more than two flaws?
12+21
b' How long must a board be so that the probabiriiy
trru, it has no flaw is 0.5?
7' Given-the equation 4e-x stnx
- -
1 0, find the root between 0 and 0.5 correct
to
three decimal-places using Newton,s Raphson,s
method.
8. Find the absorute error inlhe sum of the
numbers r05.6, 27.2g, s.63,0.1467,
208'5' 0'0235' 0'432 and 0.0467, where each number
is correct to the digits
!,l3ll"'
9 Find f(0'23) and f(0'29) from the following
table using Newton,s forward and
backward difference formula
+2
x 0.20 0.22 0.24 0.26 0.28 0.30
v 1.6596 1.6698 1.6804 1.6912 1.7024 1.7139

SECTION "E"
[5Q.r 2= l0 marks]
10. A pair of dice is rolled once. Let X be a random variable
denoting the sum of the
e
number appearing on the faces of these dice.
a. What is the sample space of this experiment?
b. What values does random variable X take?
1t rf p - 3c6 - 6c2 find,the percentage e,,or in p at c=I, if the error
in c is 0.05.
12. Find a real root of f (x) = x3 4x
method. Test till four iterations.
- - 9 correct to three decimal places using bisection

1e{ rool of f (x) = e*


13 Find a
method. Test till four iterations.
- 3r correct to three decimal places using iteration

t4 A continuous random variable X has the pDF f(x)


= 2x if 0Sx<1. Find the cumulative
distribution function (CDF) for X.
6'€ 196666'0 996666'0 W6666.0 t%666.0 tg6ffi6.O 696666'0 896666'0 9s6ffi6'0 vs6666.a 7,96666.0 6'E
8'g 0s6666'0 8r6666'.0 9W666.0 EW666.O t?6tr)6.O 8t6666'0 986666'A $6666'0 rt6666'0 8C6666-O 8't -
L'.t, s3,6666'0 e26666'O 816666.0 916666.0 ?,t66ffi.0 806666'0 ?06666'0 006666'0 968666'0 268666.0 L'T
9'E 888666'0 t88666'0 618666'0 t186ffi-O 698666.0 t98666'0 858666'0 t98666'0 118666'0 Ii8666.0 9'g
s'€ sr8666'0 8a86ffi'0 128666,0 918666-0 008666'0 C61666'0.F8r666'0 911666'0 191666.0 9'g -
n'€, 891666'0 6i1666'O ovL666,O 0fl.666.0 '08666-0
07,16ffi.A 601666'0 869666'0 189666'0 EL9ffi6',O €99666.0 t't,
E't 099666'0 899666'0 V29666.0 019666-0 965666.0 18S666'0 99s666'0 0S9666'0 e€s666'0 Lts666'O €'6
z't 66v666'0 18'666'0 29t666.0 EW666.O eW666.O 2w666'0 18€666'0 6S€666'0 9€t666.0 rr8666.0 c'E
I'g 687,ff,6'.0 wc666'O 8C2666.0 u2666-O ?{11666.0 ssl666'0 97,t666'0 960666'0 S90666'0 e90666'0 l'g
0'€ 666866'0 s96866'0 096866'0 868866-0 958866.0 r,t8866'0 111866',0 9e1866'.0.169866'0 0S9866.0 0'I
6'e s09866'0 6s9866'0 r rs866.0 C9V866.0 r tr866.0 69t866'0 S0t866'0 0se866'0 [6r866'0 6'Z
8'e n10866',0 2t0866'0 8n6166.0 288166.0 rl8a66.0 wLL66'0 €,19166'0 669166'0 tZsL66'0 '9t866'0
sWL66'0 8'Z
L'C 99t166'0 287,166'A 1il166.0 0fi166-0 oT,oL66-O 826966'0 t€8966'0 9e1966'0 989966'0 €tS966'0 L'7
9'C LCW66'.0 6r€966'0 nzg66.a t60966.0 sl1gffi.o 958S66'0 teL966'.0 nws66'0 tLts66'0 6Ets66'0 9'7,
s'7, t02966'0 090s66'0 $t6r66.0 ggLtffi.o vtgn66.o LSW66'0 L6Zt66'0 ZEtV66',0 e96e66'0 061966'0 )L
?'z tI9€66'0 t€rt66'0 wzE66.O €S0t66.0 1s87,6,0 959C66'0 $nC66'0 0n7266'0 n20266'.0 208t66'0 t'c
E',(, 9Lst66'0 wlt66'O 90I I66.0 €98066.0 €t9066.0
T'.C 686886'0 969886'0 96[886.0 680886.0 1LLL86.O
l'7, 8€aS86'0 Ir€s86'0 t66?86.0
0'7, 169t86'0 LEZ\86.O rLLO86.O 't9r86,0
zc\v86.o
8St066'0 160066'0 0€8686'0 999686'0 gLT,686'O
s9rr86'0 gztL86',A 16[986'0 Ltw86'0 t60986'0
gz8E86'0 rrr€86'0 t66286'0 tLEz86'0 9rrz86'0 l'z
i*
I09086.0 8t86t5,0 9Ze6L6'0 TZ88L6'0 80€8t6'0 WLLL6'0 09T,LL6'0 0'7,
6'.1 901916'0 8rI9/6'0 t89St6.0 cwiL6.o z,twL6.o 0r8€t6'0 L6ttL6'0 tL9zL6'0 e€,6t16'A E8ztL6',0 6'I
8'I tc90l6'0 9i6696'O 852696,0 15S896-0 tt8Lg6.o 9n196'0 SLE996'0 ta9s96'0 3,98W6'0 0r0i96'0 8'l
L',l tlz€96'0 79t296'O 9€9196.0 g6LOg6,O 116656.0 tL06s6'0 s8t8s6'0 i87,Ls6'0 L9E9s6'0 5&SS6'0 L'l
9'l 98?tg6'0 rzs[s6'0 ovsc96.o gr9ts6.0 6zs0s6-0 L6n6n6'0 6tt8r6'0 v8€,1t6'0 r0t9,6'0 r0c9t6'0 9'l
9'l t80rh6'0 Lt6zt6'0 7,6Lrt6.O OZflAV6-O 6?t6t6'0 0278t6'0 7,669t6'0 ttL9€6'0 8LhVE6'0 €6r€€6'0 E't
t't 888t96'0 €9s0€6'0 6tz6T,6'O SS8LC6.O tLWC6-O 990926'.4 \WET,6'0 96rZZ6'0 0€,1026'0 €va6t6'0 t'l
€'l 9tLLt6'0 L0c9t6'o Ls9rt6'O s80tr6.0 z6vtr6-o 118fi6'0 rtz806'0 185906'0 c06fi6'0 661806'0 €'t
z'l 91rrc6'0 LC,L668'O 856168.0 591968,0 0S€168-0 ctsz68'a rs9068'0 191888'0 098988'0 0€6188'0 CI
I'I LL6t88'0 000r88'0 666818'0 9L6qL8.O 876V18.0 198718'0 291018',0 €19898'0 009998'0 r6€i98'0 t't
0'l frrz98'0 6266E8'0 069198'0 8Z?9S8'0 rrrg98.0 0€8098'0 E6r8r8'0 98r9r8',0 z9LEng'0 Irgr'8'0 0'l
6'0 [t6898'0 /s]998'0 LL6€i8'O T,LVte}.O W68Z8.O rce978'0 SI8SZ8'0 ttZtZS'0 689818'0 0,6518'0 6'0
8'0 L97,Et8'0 0l,s0t8'0 0s8t08'0 90r908'0 8Egz08-o 9V9661'A rc,1961'0 Z68e6r0 0€016r'0 Stt88r,'0 8'0
L'O 9tz98t'0 s0gz8r,'0 as€6L'o ELEILL.O 0$E0LL'0 EatLgL'A S[,ZWL'A 8VIIqlA 9t08sr'0 L'0
9'0 e06rsr'0 Iil,tgr'o tLsstL'} tLt*L.a tsrct[o
'LEELL,O ir686r'0 ts99eL'0 tLEttfo 6906210 LtLgzL'o 9'0
9'0 90vzz[0 6r06tt'0 r999rr'0 ogzr,tro 0t880r'0 r0rs0r'0 w6l0l'0 891869'0 vL6?69'a z9tt69'0 9'0 (
,'0 E€6r.89'0 989t89'0 2e8089'0 ztzlLg'| svg|'Lg'o rg00l,9'0 c0w99'0 L9Lz99'0 16a699'0 zzw99'0 t'0
t'0 z€Ltsg'0 LZASW'0 60€?19'0 gLioW',O rt89t9.0 ztog€g'0 009629'0 9t9929'0 6tltz9'0 fi61t9'0 €'0
z'0 7.60tt9'0 t9z0t9'0 021909'0 89szo9'0 90r86s.0 5[8?65'0 ?S6069'0 ]90189'0 99rs8S'0 092619'0 z'0
I'0 9F€9rS'0 vzvtLg'0 s6tL9s'o 69s€9E'0 8t969S'0 091999'0 LtLrSE',o BgLLVS'A 961W9'A 8286€5'0 I'0
0'0 9s89gg'0 r88r€s'0 Eo6LZs'o u,6gz9'o 6t66r9'0 €s6sr5'0 r.96r r5'0 8t6L0E 0 68690s'0 00000s'0 0'0
.4...6o,,o.]...,'.8il,.u.i,.rui*,0oo-1
, 0

(40

tLzL--l
np
t
a
trJ
: Pl z)a : F)o
{-
(?fiu+ruor) uotrnqprqq IEIuroNPrePuBrS e^p€lnutnC I elgE;1

>tflJ z snv
6101,0
Gal
a

?
KATHMANDU UNTVERSITY Mark Scored:
End Semester Examination
August,2019
Level : B.Sc./B.Pharm./B.Tech. Course : MATH 102

Year :I Semester: II
Exam Roll No. : Time: 30 mins. F.M. :2O

Date ALlo 2 0 20lg


Registration No.
SECTION"A"
[10Qx1=l0marks]

Fill in the blank space (s) by most appropriate word (s) or symbol (s).

1 The listing of all possible values of a random variable and their corresponding
probabilities is ..

2. Ifthree coins are tossed simultaneously, than the probability of getting at least two
rJ heads, is

a
J If X is a discrete random variable and f (x) is the probability of X, then the expected
value of this random variable is equal to . ' '.

4. If X-N(3,1), then the probability density function for X is .... '. "

5. The coefficient of skewness of a normal distribution is '..... ' " '

6. The 100(1 - a)Vo two-sided confidence interval for difference in population means,
Ut - i) of two normal populations X1 -N(p,o]) and Xr-N(pz,oz2) when
population variances are equal and unknown is given by

7 . The range of the correlation determination is

A computer manufacturer wants to establish that the average time to set up a new
aY
8
desktop computer is greater than 2 hours. The null hypothesis of the corresponding
test is:

g. A quantity resulting from an experiment that, by chance, can assume different values
is called

10. In theregressionequation Y = a + b X, b is .......


SECTION "B''
l10Q.x 1= l0marksl

Fill in the blank space(s), DO NOT TICK, by selecting the most appropriate answers from
among the given ones.

11 In a frequency curve of scores the mode was found to be lesser than the mean. This
shows that the distribution is .. ..
[symmetric; negatively skewed; positively skewed; normal]
12. The value of the finite popuration correction factor for n= 10
is..... and N = 1000
[0.1; 0.991: 0.88 j.; 0.77t]
13. considering sample statistic, if mean of
sampling distribution
!!rv'r re
is equal
vYucr to
tu population
PUI
3"11 then sample statistic is classified as ....
[unbiased estimator.
intervar
-' fffi,i:x,tTlli,i,".n
",ti-uao,;
14. In an paired sample t-test with sample
tabulated t should be obtained for: ......
sizes n1 = 11and tt2 = ll, the value of
.
[ 10 d.f.; 21 d.f; 8 d.f.; 20 d.f.]
15. According to the central limit theorem, the
standard deviation of the sampling
distribution of the sample mean is ....
[o; o
S;
li' :,tn l
.s

16. If 's2 is the variance of a random sample of size n takenfrom a normal population
having the varianc e o2 , thenthe statistic,
c
ry follows with n _ I
degrees of freedom.
[Normal distribution I t_ distribution;
Chi-square distribution; F_distributionl

17. A fitted least squares regression line


[may be used to predict a value of y if the corresponding x value
is evidence for a cause-effect relationship
i s given;
between x andy;
can only be computed if a strong linear relationship
exists between x and.v:
can only be computed if a weak linear relationship
exists between x andy;l
l8 A type II error occurs when
[the null hypothesis is incorrectly accepted when it is false;
the null hypothesis is incorrectti rqectea
when it is true;
the sample mean differs from the pLpulation
mean; dB
the test is biasedl \tb17

19. independent, var(x1) = 5 and var(x) __ 10, then var(Xt _ xz)


,T Ii ::: !:..ur"
Is -5; t0; l5l
20 If the random variable takes negative values, then the probability of
negative values
will have:
[Positive values; Negative Values; Zero value; Difficult to tell]
I

KATHMANDU UNIVERSITY
End Semester Examination
August,2019 AU(i 2 0 2019
Level : B.Sc./B.Pharm./B.Tech. Course : MATH 102
Year :I Semester: II
Time : 2 hrs. 30 mins. F.M. :55
SECTION "C"
[3Q.x 7 =21marks]
1. The following data represent the length of life, in seconds, of 50 fruit flies subject to a
new spray in a controlled laboratory experiment: 12+2+31
17201092313 t2 t9 t8 24
t21469136 1 10137
1618813332 9 7 10 11
137187104 27 19168
7105141510 9 6715
i) Construct a double-stem-and-leaf plot for the life span of the fruit flies using the
stems 0*, 0+, 1*, l+, 2*,2+, and 3* such that stems coded by the symbols '*' and
D '+'are associated, respectively, with leaves 0 through 4 and 5 through 9'
ii) Set up a relative frequency distribution.
iii) Construct a relative frequency histogram.
OR
What do you mean by multiplication theorem on dependent events for two events? In
a certain assembly plant, three machines, M1, M2, and Ms, make 30Vo, 45Vo, and
25?0, rcspectively, of the products. It is known from past experience that2Vo,37o, and
2Vo of the products made by each machine, respectively, are defective. Now, suppose
that a finished product is randomly selected. What is the probability that it is
defective? If a product was chosen randomly and found to be defective, what is the
probability that it was made by machine M3? 12+2+3)
2. Explain the confidence interval for differences between two population means. As
part of an industrial training program, some trainees are instructed by Method A,
which is straight computer-based instruction, and some are instructed by Method B,

a which also involves the personal attention of an instructor. If random samples of size
10 are taken from large groups of trainees instructed by each of these two methods,
and the scores which they obtained in an appropriate achievement test are;
Method A : 7 1,75, 65, 69,73,66, 68, 7 1,74, 68
Method B; 72, 77, 84, 7 8, 69, 70, 77, 73, 65, 7 5
Use the 0.05 level of significance to test the claim that method B is more effective.
Assume that the populations sampled can be approximated closely with normal
distributions having the same variance. t3+41

3 Raw materials used in the production of a synthetic fiber is stored in a place which
has no humidity control. Measurements of the relative humidity (x) in the storage
place and the moisture content (y) of a sample of the material (both in percentage) on
8 days yielded the [3+4]
x 42 35 50 43 48 62 31 36
Y T2 8 I4 9 11 16 7 9

i) Make a scatter plot to verify that it is reasonable to assume that the regression of
Y on x is linear.
ii) Compute the coefficient of correlation between the measurements of the relative
humidity (x) in the storage place and the moisture content (y) of a sample.
t

SECTION "D"
[6Q.x4=24marks]
4. If the probability density of a random variable is
siven bv
f(x\ _{k(L - xz) for0 I * .i
Find the value or t unatt. ,n#'Irt"fr'ii
orlouo9,r,,". variable having this probability
density will take on a value
i) between 0.1 and 0.2;
ii) greater than 0.5.
5
probability of at most 0.01 that the difference
between the proportion of tails and 0.50
will be ar least 0.04?
OR

The mean of a random sample of size n 25 is used


= to estimate the mean of an
infinite population that has standard deviation o
probability that the error will be less than L.2 if -
z.4.what can we assert about the
we use (a) Chebyshev,s rheorem; (b)
C
the central limit theorem?

6. The following table gives the probabilities that a certain


computer will malfunction
0,L,2,3,4,5, or 6 times on any one day

Number of 0 I 2
a
J 4 5 6
malfunctions, x
f(x) 0.17 0.29 0.27 0.16 0.07 0.03 0.01

Use the formulas which define p and o to find the mean and standard deviation of this
probability distribution.

7. Iy 6a randomly selected hours of a production, the mean and the standard


deviation of
the number of acceptable pieces produced by an automatic sampling
machine are
x = 1,038 and s = L46. At the 0.05 level of significance, does this enable
reject the null hypothesis lt = L,000 against the alternative hypothesis
) L,000
us to
?
c
8 Draw a box plot from the following numbers of minutes that a person
had to wait for
a bus to work on 15 working days:
L0, !, 73, g,S, g, 2, 1.0, 3, B, 6, 17, 2, 10, 15.

9 Ten bearings made by a certain process havb a mean diameter of 0.5060


cm and a
standard deviation of 0.0040 cm. Assuming that the data may be looked
upon as a
random sample from a normal population, construct a 95 Vo confidence
interval for
the actual average diameter of bearings made by this process.

SECTION "E"
[5Q.x2=t0marks]
10 Write down the sample space for throwing two dice.

11 How many different samples of size n = 2 can be chosen from a finite population
of
size N= 7?
I
ruc 2 0 20tg

12. X is distributed as a normal variable with mean p and variance o2,frnd the value of a
in terms of o such that PQt - a I X S lt* a) = 9.95.

t3 Find the probability of getting five multiple-choice questions answered correctly, if


for each question the probability of answering it correctly is ] .

14. Write short notes on poisson distribution.

,
I

)
lvwr'Lt1 .lu'L
rUG2O
-lP\l<
STUDENT'S,-DISTRIBUTION

c[

to,n

VALIJES OF h"
dl 0.2s 0.20 0.r5 0.10 0.0s 0.025 0.01 0.00s df
I 1.000 1.376 1.963 3.078 6.3t4 12.76 31.821 63.657 I
2 0.816 1.061 1.386 1.886 2.920 4.303 6.96s 9.925 2
3 0.76s 0.978 1.350 1.638 2.353 3.182 4.541 5.841 3
4 0.741 0.94t 1.190 1.533 2.r32 2.776 3.?47 4.604 4
5 0.727 0.920 1.156 1.476 2.015 2.571 3365 4.032 5
=' 6 0.718 0.906 1.t34 t.440 1.943 2.447 3.t43 3.707 6
7 a.7tt 0.896 1.119 1.415 1.895 2.365 2.998 3.499 7
8 0.706 0.889 1.108 1.397 1.860 2.306 2.896 3.35s 8
9 0.703 0.883 1.r00 1.383 1.833 2.262 2.82t 3.250 9
l0 0.700 0.879 1.093 1372 1.812 2.228 2.764 3.r69 IO
ll 0.697 0.876 r.088 r.363 1.796 2.201 2.718 3.106 ll
t2 0.695 0.873 1.083 1.356 1.782 2.179 2.681 3.055 l2
l3 0.694 0.870 t.079 1.350 1.77t 2.1@ 2.650 3.012 l3
l4 0.692 0.868 1.076 1.345 t.761 2.145 2.624 2.977 t4
15 0.591 0.865 t.074 1.341 1.753 ?,t3t 2.602 2.947 r5
t6 0.690 0.86s 1.07t 1.337 1.746 2.120 2.583 2.92r l6
t7 0.689 0.863 1.069 1.333 1.740 2.tt0 2.567 2.898 t7
l8 0.688 0.862 t.067 1.330 1.734 2.10r 2.552 2.878 t8
t9 0.688 0.861 1.066 1.328 1.729 2.093 2.539 2.861 l9
20 0.687 0.860 1.064 1325 t.725 2.086 2.528 2.845 20
2r 0.686 0.859 1.053 1.323 t.721 2.080 2.518 2.83 r 21
22 0.686 0.858 1.06r 1.321 t.7t7 2.074 2.508 2.8t9 22

? 23
24
25
0.685
0.685
0.684
0.858
0.857
0.856
1.060
1.059
1.058
1.319
1.318
l3l6
1.714
l.7l I
1.708
2.069
2.064
2.060
2.500
2.492
2.485
2.807
2.797
2.787
23
24
25
26 0.684 0.856 1.058 1.315 1.706 2.056 2.479 2.779 26
27 0.684 0.855 r.0s7 1.314 t.703 2.052 2.473 2.77t 27
28 0.683 0.8s5 1.056 1.313 1.701 2.048 2.467 2.763 28
29 0.683 0.854 1.055 l.3t I 1.699 2.045 2.462 2.756 29
30 o.0m 0.854 1.05s 1310 1.697 2.042 2.457 2.750 ,j
@ 0.674 0.842 1.036 1.282 1.645 1.960 2.326 2.576

46 EilcrlrEERtNGpRoBABtllryArDsrATlsncs
Standard Normal Cumulative probability Tabte
Standard Normal Cumulative probability
Table

cumurative probabirifies for NEGATTVE z-varues are shown in th€ fortowrng


tabro:
cumura*ve probabirities for poslrlvE z-varues
afe shown an the fo,owing tabre:
z
-3.3 0.0005 0.0005 0.0005 0.0004 0.0004 0.0004 0.0004 0.0004 0.0004
-3.2 0.0007 0.0007 0.0006 0.0003 0.1 0.5398
0.0006 0.0006 0.0006 0.0006 0.0005 0.5438 0.5478 0.5517
-3.1 0.0010 0.0009 0.0005 0.0005 0.5557 0.s596 0.5636 0.5675
0.0009 0.0009 0.0008 0.0008 0.0008
0.2 0.5793 0.5832 0.5871 0.5714 0.5753
-3.0 0.0008 0.0007 0.0007 0.5910 0.5948 0.5987 0.6026
0.0013 0.0013 0.0013 0.0012 0.3 0.6179 0.6064 0.6103
0.0012 0.0011 0.0011 0.0011 0.0010
0.6217 0.6255 0.6293 0.6331
0.6141
0.0010 0.4 0.6554 0.6368 0.6406 0.6443 0.&r80
0.6591 0.6628 0.6664 0.6517
-2.9 0.0019 0.0018 0.0018 0.6700 0.6736 o.6772 0.6808
0.00',7 0.0016 0.0016 0.0015 0.0015
0.6844 0.6879
-2.8 0.0026 0.0025 o.oo24 0.0014 0.0014 0.5
0.0023 0.0023 0.0022 0.0021 0.6915 0.6950 0.698s 0.7019
-2.7 0.0035 0.0021 0.0020 0.0019 o.7054 0.7088 0.7123
0.0034 0.0033 0.0032 0.003 t 0.0030 0.6 0.7257 0.7291 0.7157 0.7190 0.7224
-2.6 0.0029 0.0028 o.oo27 0.0026 0.7324 0.7357 0.7389 0.7422
0.0047 0.0045 0.00/U 0.0043 0.7 0.7580 0.7454 0.7486 0.7517
-2.5 0.0062
0.0041 0.0040 0.0039 0.0038 0.0037 0.0036
0.76.t 1 0.7u2 0.7673 0.7704 0.77U
0.7549
0.0060 0.0059 0.0057 0.0055 0.8 0.7881 0.7910 0.776{. 0.7791 0.7823 o.7852
0.0054 0.0052 0.0051 0.0049 0.7939 0.7967 0.7995
0.0048 0.9 0.8159 0.8023 0.8051 0.8078 0.8106
0.8186 o.8212 0.8238 0.8264 0.8133
-2.1 0.0082 0.0080 0.0078 0.0075 0.8289 0.8315 0.8340 0.8365
0.0073 0.0071 0.0069 0.0068 0.8389
-2.3 0.0107 0.0104 0.0066 0.0064 1.0
0.0102 0.0099 0.0096 0.0094 0.8413 0.8438 0.8461
-2.2 0.0139
0.0091 0.0089 0.0087 0.0084 0.848s 0.8508 0.8531 0.8554
0.0136 0.0132 0.0129 0.0125 0.0122 1.1 0.8643 0.866s 0.8577 0.8599 0.8621
-2.1 0.01 19 0.0116 0.01 t3 0.0110 0.8686 0.8708 0.8729 0.8749
0.0179 0.0174 0.0 t 70 0.0166 0.0't62 1.2 0.8849 0.886S 0.8770 0.8790 0.8810 0.8830
-2.0 0.01 58 0.0154 0.0150 0.0146 0.0143 0.8888 0.8907 0.8925 0.8944
0.0228 0.0222 0.0217 0.0212 1.3 0.9032 0.8962 0.8980 0.8997 0.9015
0.0207 0.0202 0.0197 0.01 92 0.0188 0.9049 0.9065 0.9082
0.0183 1.4 0.9099 0.9115 0.913,' 0.9147
0.9192 o.9207 o.9222 0.9236 0.9162 o.9177
-1.9 o.0287 0.0281 0.9251 0.9265 0.9279 0.9292
0.o274 0.0268 o.0262 0.0256 0.0250 0.9306 0.9319
-1.8 0.0359 0.0351
0.o244 0.0239 0.0233
0.0344 0.0336 0.0329 0.0322 0.0314 1.5 0.9332 0.9345 0.9357
-1.7 0.0446 0.0307 0.0301 0.02s4 0.9370 0.9382 0.9394 0.9406
0.0436 0.0427 0.0418 0.0409 1.6 0.9452 0.9463 0.9418 0.9429 0.9441
-1.8 0.0401 0.0392 0.0384 0.0375 o.9474 0.9484 0.9495
0.0548 0.0537 0.0526 0.0516 0.0367 1.7 0.9554 0.9505 0.9515 0.9525 0.9535
0.0505 0,0495 0.0485 0.0475 0.9564 0.9573 0.9582 0.9545
-1.5 0.0668 0.0655 0.0465 0.04s5 0.9591 0.9599 0.9608 0.9616
0.0643 0.0630 0.0618 0.0606 0.0594 1.8 0.9641 0.9649 0.9656 0.9625 0.9633
0.0s82 0.0571 0.0559 0.9664 0.9671 0.9678 0.9686
1.9 0.9713 0.9719 0.9693 0.9699 0.9706
-1.4 0.9726 0.9732 0.9738 0.974r'.
0.0808 0.0793 0.0778 0.0764 0.9750 0.9756 0.9761 0.9767
0.0749 0.0735 0.o721 0.0708 0.0694
-1.3 0.0968 0.0951 0.0934 0.0681 2.0
0.0918 0.0901 0.0885 0.0869 0.0853 0.9772 0.9778 0.9783 0.9788
-1.2 0.1151 0.1131 0.0838 0.0823 0.9793 0.9798 0.9803 0.9808
o.1112 0.1 093 0.1075 0.1056 2,1 0.9821 0.9826 0.9830 0.9812 0.9817
-1.1 0.1 357
0.1 038 0.1 020 0.1003 0.0985 0.9834 0.9838 0.9842 0.9846
0.1 335 0.1 314 0.1292 0.1271 0.1251 2.2 0.9861 0.9864 0.98s0 0.9854 0.9857
-1.0 0.1230 o.1210 0. t 190 0.1170 0.9868 0.9871 0.9875 0.9878
0.1 s87 0.1 562 0.1539 0.15i 5 2.3 0.9893 0.9881 0.9884 0.9887 0.9890
0.1492 0.1469 0.1446 o.'1423 0.1401 0.9896 0.9898 0.9901 0.9904
0.1 379 2.4 0.9918 0.9906 0.9909 0.9911 0.9913
0.9920 0.s922 0.9916
{.9 0.1 841 0.1814 0.1 788 o.1762 0.1 736 o.1711
0.992s 0.9927 0.9929 0.9931 0.9932 0.9934 0.9936
-0.8 0.1685 0.1 660 0.1635 0.161
0.2119 0.2090 0.2061 0.2033 0.2005
1 2.5 0.9938 0.9940
0.1977 0.1949 0.9941 0.9943
{.7 0.2420 0.2389 0.2358 o.2327 o.2296 0.2266
o.1922 0.1 894 0.1 867 2.6 0.9953 0.9955 0.9956
0.9945 0.9946 0.9948 0.9949 0.9951 0.9952
-0.6 0.2236 o.2206 0.2'177 0.?148 0.9957 0.9959 0.9960
0.2743 o.2709 0.2676 0.26/.3 0.2611 2.7 0.9965 0.9966 0.996.l 0.9962 0.9963 0.9964
0.2578 0.2546 o.2514 0.2483 0.9967 0.9968 0.9969 0.9970
-0.5 0.3085 0.3050 0.3015 0.2451 2.8 0.9974 0.9971 0.9972 0.9973
0.2981 0.2946 0.2912 0.2877 0.2843 0.9975 0.9976 0.9977 0.9974
0.2810 0.2776 0.9977 0.9978 0.9979 0.9979
2.9 0.9981 0.9982 0.9982 0.9980 0.9981
-0.4 0.9983 0.9984 0.9984 0.9985
0.3446 0.3409 0.3372 0.3336 0.3300 0.9985 0.9986 0.9986
0.3264 o.3228 0.3192
{.3 0.3821 0.3783 0.3745 o.3707 o.3669 0.3632
0.3 t 56 0.3121 3.0 0.9987 0.9987 0.9987
-0.2 0.3594 0.3557 0.3520 0.3483 0.9988 0.9988 0.9989
o.4207 0.4168 0.4129 0.4090 0.4052 3.1 0.9990 0.9991
0.9989 0.9989 0.9990 0.9990
0.4013 0.3974 0.3936 0.3897 0.9991 0.9991 0.9992 0.9992
-0.1 0.4602 0.4562 0.4522 0.3859 3.2 0.9993 0.9992 0.9992 0.9993
0.4483 0.4443 0.4404 0.4364 0.9993 0.9994 0.9994 0.9993
0.0 0.5000 0.4325 0.4286 0.4247 0.9994 0.9994 0.9994 0.9995
0.4960 0.4920 0.4880 0.4840 0.4801 3.3 0.999s 0.999s 0.9995 0.999s 0.9995
0.4761 0.4721 0.4681 0.4641 0.9996 0.9996 0.9996
3.4 0.9997 0.9996 0.9996 0.9996 0.9997
0.9997 0.9997 0.9997 0.9997 0.9997 0.9997 0.9997 0.9997 0.9998

,-:\
F
,,..i
"'
I I I I l
o.rdqrc) hqqkfl-f,q qTkTS:
r*r< qften
WTR, ROl1
it-6 : B.Arch. kqq : NEPT 101
+i: I frfrsg{; tt
qfterT tm{q{ : sqq; 1o ftr+e Wrie : to

Wq1.+ ?rER : krn:AUG1020lg


aa+rt
lzNT.T ch

(T€dqd)

tsD itq @ frq r& ffiq6r qrrfsd vrt @q t (1


'{ : { 3l'\t)
6rqr+1 q-R {6{ rri tsro[ {lta TftB r BiHr+1 q-smqr eFi: Bmrd o16 rfr{r rkq I BEn-d
z116 qar qrddr g{-{rqr q& rnc+m rri' ffiq-dr qqdrft zrfi+1 qqlq qM fr r at qfr dt qr& {
BHr+1 ffitrfr wt{tg +-q trs,-+'r wq?Fr6s.r{T }TR .Fq qi
qqdrfr Brat zFI-6 qdrT q\r+l qfr qr{€
D
r ?R qilr{frT rr+q, sF<r6o-+'r EFffir er.rro * rd1* *f.g r gerars+i,str{rs +flE
gmr+i B{rsrqt
f{-fr'.r*s I Wrqqr fuftrq tqifi (,rrnrm vrqlfiil+ qHqmr f{frs { g4errs gfr rd ry
t+\-€r AcT fu-dqT dH a-qr+rkar ?irffi6 < qrqrfufi Tffirml frqrc
rd?ut I qT+ qfrrcqr nH
t6rdc6 m qt<c+1 vrcra ttl+1 qr{q r erssf CsF,T ilTq+.r qzretmt.rqi rrc<r B{rr{rq
WffiT
.rroi qrq qtg r m .-T16r q"rc{ qfu-q{ rrt qrfl qsrd ttq r{g I gmr+1 qrw nfr*i qgtq-qtE
ffi qrErqr qkrc{ qt{q w€-+1 sT{ Corner Horse rrfr etncg t fr Lion, Ram horn lion, Goat
horn lion { Garuda faced lion rrft qR qtFrrfir I E{rqr Trki EqTq t.fiq 3rq qgrd-+r<T
ffi
qe q}-s6 ( triEntfl 6q I

esrd-ffi stlrsq 1rr+ Tria rrft Srmur .r{ Ttu I


qr{fiI TFi Tsfr wrcsil+T {eTq66
(qr{m.rft gq, sem qT wfe r rin-{fi errfrr 3Tflrqja.r;i q-sr.4-m @ t'diqt orft Ree rs
4r @ ilqi-otqi;rqi +ra qk nw st*;a r

Itr;166:
+,) k sq-{,t qrir Effi t BTr{ q-crq {rt( qffi q-6q+, eira qrqfis ffi @ t


q) 1{HI 1@r qr.{6"r emar o-cft qtd rrrt efar;g i

ur iera fu{ q-{itT oft-q i

Er) +-Rtt rlzrrf,o-in 3Iq .Ft-dEFt Zgtrffi€q} q-*r[ rrffei t

g) ertn6 zFT-6+.r 9-*{r f+.{ qfrq i


o #tJB (h,
J"bFa tu ?hHr.r.> 1p
I le EL )e.Ib pruFJ
rb€h (e
?rrorhrlJtrpqJ.U ob

+ltslr€ -g}hllh ti rorp?+ -9Ih{9 (jr


{44 btpr(bnth (E tdth>J bthhurt+ (t
I Eg e )tct2[.h) tatDbJ+ ,i9), 't
e-Len?lh[6 (h li)bhJF> (]I eHho"th_E (.A
I p*+ nft elh )lhp +H.h?]e (.e
I taf r+u+JE hlnr.J
[+*ep lhptn)t]?th
thhl+ (tr phQBJH tLr pr.,F[ rE pcr+ !+snhu? (e
(+b+h
!+U.r)h; ; hrpr" pr.su
!+rq"rui {$lr. i+ pi,*ari o
{6
brpJ (h
r4tr (]I athp (E
I e -brb. rrhHb ?norhckJr O& ,ffir(rl \5

a rr.L (a
-fHj"* * rffii
I B'."JH r'Ar'hJ Bb"rb -h!. ,lnrua
^p
+*b,.ffirn 'x

+ebrE, (h b?ht) (]} ("a


tsi-tr_tt &Ih (e
a {g }l-L }srb. [+Hlo ?nothLL# t+thp A
l.hJb (h lEgt (b )L)^ru (.4 rrB (a
i tg + thte {t}qtb 1pfo+B;,:.b-Ua, c
r+e (.b,
lbRth (h r"rs? ra hq (a
rl3 Fte tt.le]h (ttb+:), Hrr. r.J, 't
+h:llrFh (! +h)il.hlAtht+ (]r r]rhlttn)bbJ (.& q2h)th6)lho (!E
I € ll.h) [,]"hF>J,rbJ [$+ t F]e FbEp# Aqlh .t
G.le I: X'o" ob) t \Erurru s.hJ (l) ttsI rhhrrbbJ trrBr.,pn 0h
+.rdqre] kqqkqrdq
(I-*r< qfteilr
3l.TrK, 1011 AUG 1 s 2019

d-6 : B.Arch. kqq : NEPT 101


E{ :I tiq{' II
Rrrrq: ? qrEl 1o ffia Tqfg : vo
EF'<' "1E["
Gqqlrd)
(c
"{ - Yo $f)
a!fiF'r qm ?+ q6Ezr eq-a55d srr frqfrq I

1 dqcpr qrdrf,F?} sTsf sse 6ffi 116 qr6 TeT qrig fuqtur rr!frq r

qgr{, EEfr, gd, utmgrm, dtTr

sqTfi frq k€ deTr Eot66a1 q*iT rrft rlfifq T{dqq .r=i*q


u ? kggqa' rrmqrert
gfiqftilire shPd sqfu rqm lst iilqTr Eftilfrrqke flren fr r * RrqTr q?mH €rqT
r

Sftr+qrr€{ rsr{merg* t rrfuaqr BnilrRr 6e r kn++t qer f,rq qrk fr | ,ii E&tdft
fheTr+1 eeq fqqtur 6 1 ffi qrffi f{Eq BTr+ t*'ild rit eFqfrzrrft fuET srrsrdd
qTqrcIH ItA r

a
a.r+r qzt C q* hqqqT to-+ t-sqrcq rrfr rqr rrfudr t{.iq 5Mr r5r il{R
.T=t6t-q r

S,) qT€ST{ (ETTCIITT


*q
q) reEF-f,r qttq-r F+il{r uFTriE-q

Y. dyfrqrqT'{rieqqharnr ffi@r
zBt qYtrs v{qrqr iT-$rfrk 1 qsqi, yr1-a
q) qrlqftrfr rmakqr htr-d Bflznfl r q+arqir ff{e{r

aty { kuqrrr qztd qfi fffirqT q:s.feffi M @l( I

ot eiiq6 ffi ffiq q{krqr 4q-fm+} q-{Tq r srr+rinT


q) TErqR 1 qSaaa#.r+n

qlT(r{(+J (lc(Trd quR rr+q kqtur wt gsnr-+ fd. .rqi qr-4rfrq r+q frrqiur rFi ilqrft
rfrt_fl qqfr BrTsft qT{WTt ffi @ r

\9. ilE 3Ia-+mra krqffi s{Tdrq-dT rrtqi, '{qi h-qTrff €r{rfr opffi, +1 q+. Whr{
qfui*fi 6a51 rr!frq r

q +rfrr-srq fuT.rdRT rfua 'siqr+l rfrrq, ofTrrqiw_fffi vfrmr @ r

I ftqfrPa ffiaRr fufu-f, 'q1-ffi qftqft' a?Tr6r qrd qq+fl-{qi qft" k{q q;jaiq r

wqr
o

(-)
KATHMANDU I]NIVERSITY Marks scored:
End Semester Examination
August,2019
Course :BIOT 101
Level : B.Tech.
Semester: II
Year :I
Exam Roll No. : Time: 30 mins. F. M. :20

Date AUG 1 6 2019


Registration No.:
SECTION "A"
[0Q x 0.5:5 marks]

Choose and tick [r/ ] ttre most appropriate answer'

l.WhichofthefollowingenzymeisusedtojoinDNAfragments?
[]Nuclease[]RestrictionEnzymes
i lrigure [ ]LYases
2 Which amino acid can form disuphide bonds?
L} [ ]Glycine [ ]CYsteine [ ]Proline [ ] Glutamate

J The most abundant carbohydrate in the nature is


[ ]cellulose [ ]glYcogen t I lignin [ ] chitin

4. CorrectlY matched Pair is


t I Okazaki fragments- sPlicing
t I RNA polymerase- RNA Primer
t ] Restriction endonuclease- genetic engineering
t ] Central dogma-codon

5 Shoot elongation is stimulated bY


[ ]2,4-D [ ] Potato extract [ ]Cytokinin t INAA

6 In prokaryotes, the synthesis and breakdown of mRNA occurs from


[ ] 5'to 3'end'
@ [ ] 5'to 3'and 3'to 5'end, respectively
[ ] 3'to 5'end
[ ] 3'to 5'and 5'to 3'end, respectively

7 Microorganism responsible for yoghurt production is


[ )Lactobacillus [
]StrePtomYces
i jAspergillus I
lSaccharomYces

I Any DNA molecule that has the ability to replicate in an appropriate host cell, to
which the desired gene are integrated for cloning is called
[ ]vector [ ]plaimid [ ]linker [ ]adapter
9 Certification mark can be registered in
[ ] Trademark Registry [ ] Certification Board
[ Board
] Quatity Control [ ] MHRD

up oil
10. Which of the following bacterium is called as the superbug that could clean
spills
I subtilis
) Bacillus II Pseudomonas putida
i jftrraomonosdenitrificans []Bacillus denitrificans
SECTION "B"
[5Q.*l:5marks]
Fill in the blanks.

I l. The first engineered plasmid vector is

12. Serum in animal cell culture media provides.

l3 Crop plants offer a cost-effective bioreactor to express


antigens which can be used
4s.....

14. Genetic material of Tobacco Mosaic Virus is.....

15 Fermentation is decomposition of organic matter by...... enzyme


produced by yeast.

SECTION "C"
[lOQ.x 1:10marks]
Define in ONE sentence
L,
16. Bioremediation

17. Stillages

18. Tissue Engineering

19. EcoRl

20. Thermocycler

/l'h
21. Molecular farming ( _-r

22. Hybridoma Technology

23. Primosome complex

24. Non-catalytic functional proteins

25. Intellectual Property Right


KATHMANDU UNIVERSITY
End Semester Examination
August,2019
Level : B.Tech. U$i*1.6,2818, ro,
Year :I Semester: II
Time : 2 hrs. 30 mins. F.M. :55
SECTION "D''
(Long answer questions)
[3Q. * 7 :21marks]
AttemptlZl questions.

1. Define transgenic crops? What is the common strategy to produce transgenic crops
with delayed ripening and longer shelf life of fruits?

2. Define renewable energy? Explain briefly the biofuel production from plant system.

3. What are stem cells? Describe the application of embryonic stem cell technology.

.(E))
(J
(Short answer questions)
4 Write short notes on: 16 x 4:241
a. Bioleaching
b. Gene therapy
c. Biosafety
d. Ex-situ conservation
e. Microbial fermentation for dairy and health
f. DNA as genetic material

5 Give TWO major differences between: 12 x2:41


a. Blunt and sticky ends
b. Batch and Fed batch culture
6 Explain why/how for the following: [3 x 2:6]
a. COz incubators required for animal cell culture.
b. Lyophilized cultures of microbes remain viable for several year
€ c. Agrobacterium described as 'natural genetic engineer' of plants.

A
x

o
KATHMANDU LTNIVERSITY Marks Scored
End Semester Examination
August,2019
Level : B. Pharm.
Course : PHAR 111
Semester : II
Year :I
Time: 30 mins. F M. 20
Exam Roll No. :

Date :ailG 1 $ 2019


Registration No.:
"A''
SECTION
t20Qx1:20marksl
questions:
Check (r/) ttre correct answer/s of the following multiple choice

1 . which one of the following is not the name of referencing system?


[a] Vancouver [b] Harvard [c] APA [d] Paris
o'Extraction" is incorrect?
2. Which one of the following statements on
extraction is known as marc.
[a] The insoluble matrix remaining after
of a soluble fraction in the form of a solution
U [Ul f*tru.tion is the method of removal
from an insoluble matrix with the help of a suitable solvent
as solid only'
[c] The soluble components may be present
form'
[Aj fn. insoluble matrix may be in the powder

a
J Drug act of Nepal was promulgated in the year " " " ' ....A.D.
pl iota lb1re77 [c]1e78 ldl teTe

4 Mesh size of 200 refers 1o.........


[a] 200 holes in I inch square area [b] 100 holes in 1 inch square area
line
i.j roO holes in 1 inch longitudinal tdl 200 holes in 1 inch longitudinal line

The first reference on use of allopathic medicine in Nepal is available during the
time
5
of King
[a] Ranjit Malla [b] Ram Shah
[.] fritf,iri NarayanShah [d] Siddhi Narsingh Malla
? 6 Which statement about the scope of pharmacy is incorrect?
pharmacy
[a] Compounding is one of the main field of
[Ui ft ir ielated to the provision of drug related
information to the public
[c] Drug utilization revierv and drug product selection
[d] Diagnosing disease as the medical doctor does

7 "Material Medica" is an encyclopedia of drugs from ..


[a] Israel [b] Greece [c] EgYPt [d] Iraq

8 Which one of the statements on basic actions of size reduction equipment is inconect?
pulverize the material
[a] Roller uses a heavy rolling member to crush and
[Ul t*p*t involves the operation of hammers
(or bars) at low speeds
[.jattiition action breaks down the material by a rubbing action between two surfaces
until small
[al frpu.t causes large particles to split apart, the action continuing
particles of required size are produced

1r
9 which of the following statements related to
comminution is incorrect?
[a] size reduction is necessary for uniform aistriuution of color
mottling effect and to introduce
[b] Size influences the texture, taste and rheology of oral suspension
and absorption.
[c] The rate of material drying can be facilitate;ty .o.rninrtio,
[d] Rate of most chemical anI physicai reaction is increased
due to size reduction
10. Bachelor in pharmacy program was
introduced in Nepar for the first
by .... ...Universit! i, trr" year.. time
[a] Pokhara, 2000 A.D
[b] Pokhara,2005 A.D
[c] Kathmandu, 1994 A.D
[d] Kathmandu, l 996 A.D
11. The ad_vantage of soft gelatin capsule
includes all except:
[a] difficult to swallow
[b] looks elegant
[c] plasticizers are added [d] poriders are filled
12. The main difference between creams
and ointments is
[a] Creams are thicker than ointments
[b] Ointments are thicker than creams
[c] creams are emulsions whereas ointments are suspensions
[d] creams are aqueous solutions whereas ointments are oily
s
solutions
13 Propyl paraben is used as
[a] Binder [b] Lubricant [c] Preservative [d] Anti_oxidant
14. The liquid injected into the rectum through
anus for cleansing, stimulating evacuation
of the bor'vel, or other therapeutic or diagnostic
purposes is kno*, as .....
[a] Enema [b] Suppository [c] pessary [d] Implant
15. How many grams of potassium permanganate (KMno+)
must be taken in producing
1L of 1:3000 ratio strength solution?
[a] 0.3 g tbl 3g [c] 3o g
tdl 3oo g
16 The conversion factor to-change miligram
to microgram is
[a] 1 mg /t 000pg tbj 2.20 tbt 1 k;
tcl 1 m!/ I 00pg [d] 100pg / I mg d@
f&9
17 Hor'v manymilliliters of water must be added to 250 ml of 50%
alcoholic solution to
make a 40%o alcoholic solution?
[a] 3 10 ml tbl 3 I I .5 mt [c] 3 12.5 mt [d] 3 75 ml
18. An IV injection is desirable when
[a] rapid action is required [b] prolonged action is required
[c] drug is to be released slowly [d] larger dose is to be administered
t9 The ideal osmolarity of 0.9% sodium chroride injection
is:
[a) 367 tb] 380 pl a78 308
ldl
20 How many milliequivalents of magnesium sulfate
are represented inlg of anhydrous
magnesium sulfate (MgSO+)?
[a] 1a.7 Lbl17,7 [c] 16.7 tdlts.T
KATHMANDU LINIVERSITY
End Semester Examination
August,2019 AUG 1 6 20lg
Level : B. Pharm. Course : PHAR 111
Year :I Semester : II
Time : 2 hrs. 30 mins F. M. :55

Indicate by checking ($ of .each question you have answered in the cover page of main
answer book
'68"
[5Q. , 3:15 marks]

Answer ANY FIVE of the following questions.

1 Define the following terms:


a. "Drug" as per "Drug act2035 of Nepal"
b. Pharmacopoeia
c. HINARI
LI
2. Draw a well labeled stress-strain diagram for solid and describe the graph.

a
J What are the objectives and applications of size reduction?

4 Convert:
a. 2 hectolitre (hL) to deciliter(dl)
b. 4 gallon US to litre
c. 5 grain (gr) to gram

5 Write short note on the following topics. (any two)


a. Suspension
b. Syrup
c. Emulsion
6 Define dose and dosage form. Classiff dosage form.

? 7 Define
a. Sensitivity requirement
b. Preservatives
c. Disintegrants
SECTION "C"
[5Q., 5=25 marks]

Answer ANY FIVE of the follor,ving questions.

8. Define professionalism. Develop a code of ethics for pharmacist in Nepal. Do you


think Nepalese pharmacist will be able to follow it in practice setting? Justifu.

9. Discuss on Noyes-Whitney equation and theory of extraction,

10. Define comminution. Discuss on size reduction equipment.

I 1. Define capsule and classify it. What are the advantages and disadvantages of capsule
over other dosage forms?
12' A torsion prescription balance. has a sensitivity requirement
of 4 milligrams. Explain
how you would weigh 5 milligrams of hydromorphone
hydrochloride with an error
not greater than 5yo. Use lactose as the diluent.

13. Explain ideal characteristics of preservatives.

14' Glycerin' USP (specific gravity 1.25) costs Rs 540.25


per pound. If a student in the
dispensing laboratory use 1 pint of^glycerin in
n1egl]ng .o*pounJed prescriptions,
what is the cost of the glycerin used?li pint:
+ll.he+lz
^ty^
SECTION "D"
[2e. , 7.5 = 15 marks]

Answer ANY TWO of the following questions.

15' Pharmacy has been an ever-chTgirg field. Nepal


does not has long history of
pharmacy education and practice. Dlscuss
on evolution of pharm"., i, the world. Has
Nepal been able to cope up with the changing scenario
in piarmaci r,.raz Justify.
16' Suppose, a particular extraction proceeds with a
distribution coefficient of 10. The c_,
system consists o.f 5'0 g of organic compound dissolved
in 100 ml of water (solvent l).
Prove the effectiveness of three 50 ml extractions
with diethyl ether (solvent 2)
compared with one 150 ml extraction with ether.

17 ' What is tablet? What are the different additives used


in tablet formulations? Mention
the types of tablet. What are the advantages and disadvantages
oi,uUt"r, over other
dosage forms?

d--B
r@,

!
KATHMANDU UNIVERSITY Marks scored
End Semester Examination
August,2019
Level : B.Sc.
Course :ENVS 101
Semester : II
Year :I
Time: 30 mins. F. M. :20
Exam Roll No. :

AUG 1 6 2Sl$
Date
Registration No.:
SECTION "A"
tl7Q.x 0.5 :8.5 marksl

Choose and mark (X) against the conect answer'

1. The benefits that people derive from nature are called


[ ] environmental processes [
] natural resources
[ ecosystem
] services [
] environmental economics

U 2. Which of the following involves generation of baseline data?


measurement [
] system optimization
[ ] system
[ system
] modelling [
] system simulation

J Functional attributes ofa species is referred to as


[ ]habitat [ ]habit [ ]niche [ ] range

4. The order of decreasing precipitation follows


[ ] Temperate forests > grasslands > tropical forests > deserts
[ ] Grasslands > grasslands > tropical forests > deserts
[ Temperate forests > tropical forests > temperate forests > deserts
]
[ ] Tropical forests > temperate forests > grasslands > deserts

5 Bauxite is the ore of


[
? [ ]Iron [ ]Aluminium [ ]CoPPer ] Silver

6. Anthracite and bituminous are types of


[ ]shalerocks [ ]coal [ ]tar [ ] natural gas

7 The lrish Potato Famine was caused by


I I Puccinia graminis | ) Pytophthora infestans
[ ] Plasmodium vivax I I Periplonata Americana

8. PAN is a component of
[ ] paddy field emission [ ] feedlot emission
[ ] indoor air pollutant [ ] photo-chemical smog

9 Which one of the following is emitted from animal feedlots?


[ ]Methane [ ]Hydrogen [ ]watervapour [ ]Nitrogen

10. The largest producer of Uranium is


[ ]Uzbekistan [ ]Kazakhstan [ ]Kyrgyzstan [ ]Tajikistan
I 1. Exposure to radioactive rays causes cancer. Therefore, radioactive rays are considered
as

[ ] allergen [ ]mutagen [ ]teratogen [ ]carcinogen

12. Parasitism illustrates


[ ]+,-relationship. [ ]+,+relationship.
I J +,0 relationship. [ ] -,- relationship.

13 Pest control brought about by crop rotation, pruning and r,veeding are part of
the
method of
[ ] mechanical control t I biological control
[ ] chemical control [ ] cultural control

14, Which of the following countries is not a member of OpEC?


[ ]SaudiaArabia [ ]Gabon [ ]eatar [ ] Venezuela

15. Red Chironomids are abundantly found in polluted water bodies. Therefore, red
Chironomids can be considered as
T
[ ] Native species [ ] Endemic species
[ ] Indicator species [ ] Keystone species

16. Which of the following transgenic food is considered to tackle night blindness in
developing countries?
[ ] Starlink maize [
] Flavr Savr tomato
[ ] Golden rice [
] Bt soy,bean

t7. Which of the following is wrong about DDT?


t I It is a first generation pesticide.t ] It is a second generation pesticide.
t I It is an organochlorine pesticide.
I ] It is a persistent pesticide.

S ECTION "B"
[3Q. ' 0.5: 1.5 marks] rdF
qs

Inthe equationl=P xAxT


18. P stands for

t9 Developed countries are characterized by


[ ] higher A and higher T t I higher A and lower T
[ ] lower A and lower T t I lower A and higher T

20. Developing countries are characterized by


[ ] higher A and higher T t I higher A and lower T
[ ] lower A and lower T t I lower A and higher T
r
AUG 1 6 zCIlg
66Crt

[10 marks]
Fill in the blanks

21. The different ecosystem servlces provided by nature are

and

22. The tull form of MEA is

23. The ful1form of ITTO is

24. The process of succession which starts from bare rock without soil is called

25. The excessive presence of nutrients in water bodies cause

0
26. Heterospecific relationship where one organism benefits at the expense of other is
called

27. The main sources of food production are and

28. The bulk of the natural gas is formed by

29. The increase in the concentration of pollutants/contaminants with increase in trophic


levels is called

30. The first communities which colonize a habitat during ecological succession are called


31. Pieces of earth's crust lying above the mantle are called

32. Possibility of being harmed by ahazad is called

JJ. The different layers of the earth are and


tu
ffil
@

fr
KATHMANDU LINIVERSITY
End Semester Examination ,sll0 ;1 6 ?0lg
August,2019
Level : B.Sc.
Course : ENVS 101

Year :I Semester: II
Time : 2 hrs. 30 mins. F.M. :55
S '6D"
[3 Q.* 7 =2l marks]
Attempt,4II questions'

1 Define ecosystem services. Give an account of the different ecosystem services


provided by rivers citing appropriate examples'

Describe the different sustainable methods of agricultural practices to


mitigate soil
2
erosion.

CJ J Define food security. Describe the different components of food security'

.(E))
SECTI

4 Write short notes on: 14 x 3: l2l


a. Biofuels
b. Debt for nature swap
c. Industrial ecology
d. Community forestry in NePal.

5 Differentiate between (ANY FOUR): 14x2=8)


a. Point and non-point sources of pollution'
b. Hazard and risk.
c. High waste and low waste approach of solid waste management.
d. Mineral reserve and mineral resource'
? e. Primary ecological succession and secondary ecological succession.

6 Give reasons why (ANY FOUR): 14 x 2 = 8l


a. Population pyramids with a broad base indicate an increasing population
b. Fossil fuels are considered as non-renewable sources of energy
c. PMz s is more harmful than PMro.
d. Phytoplanktons are the sole producers in open oceans'
e. Elephants are considered as keystone species.

7. List the following: 12 x 3:61


a. One example each of regional MEA, global MEA, bilateral MEA with definition.
b. The principles of five Rs of waste management.
@r
@,

o
!r
KATHMANDU UNTVERSITY
Mark Scored:
End Semester Examination
August,2019
Level : B. E./B.Sc./B.Tech Course : ENGG 112
Year : I Semester : II
Exam Roll No. : Time: 30 mins F.M :20

No.: Date 'l[l$'l 6 208

[20Qx l=20 marks]


Encircle the most appropriate answer. Symbols have their usual meaning

I A damaged 15000 resistor in a radio circuit is to be replaced, but the available


resistors with you have are of 1000C1 only. For the replacement with 1000C1 resistors
you would connect ...
a. three in parallel b. three in series
c. two parallel and one in series d. two in series and one in parallel

U 2.Inthefol1owingFigure1,currentflowingthroughthe30ohmresistoriS-

g Ohnr 2 Ohrn

40v 100 v

30 Ohrn
Figure 1

a. 5.5A b.3.5A c. 1.5 A d.0.5 A

3. The total resistance for the given configuration tq

? N
o

N)
-.....-.> o N
o
Rr N
o

Figure 2
a. 0.5 Ohm b.3 Ohm c.2 Ohm d. 3.5 Ohm

4 From the Figure 3, what are the values of V --+ +


and I if the Rz is shorted out?
2 Ohm 3 Ohm
a. 6V, 0 A b. 0V,3A E
c. 3Y,2 A d. 0V,0.5 A (, I
o
J v
3

Figure 3
,{
5. what is the value of current flowing through the load resistance (Rlx

3 Ohm
7)
r
;l
f\)
O)

Figure 4
-
a. 0.06 A b.0.3 A c. 0.5 A d. 1.5 A
6. The value of Rl for maximum power transfer is .....

I
3 Ohn
30 v"

o
0
it
Ol 'n
-

Figure 5 2 ohrn

a. 13 Ohm b. l0 Ohm c. 12 Ohm d. 15 ohrn


7 what is the value of magneto motive force (MMF) when the magnetic flux
is 5 wu
and the reluctance is 3 At/ Wu ?
a. 15 At b. 1.67 Ar c. 10 At d. 3.g At
8 The apparent power drawn by an ac circuit is 10kVA and active power gkW.
is The
reactive power in the circuit is
a. 4 kVAR b. 6 KVAR c. 8 kVAR d. 16 kvAR

9 what is the phase relationship between the given sinusoidal wa veforms?


dm
V = 10 Sin ( ror + 300 ) and I = 5 Sin ( rot +Zbo; \Jl
a. V leads I by 700 b. I leads V by 700 c. V leads I by 400 d. I leads V by 400

10 The average value of the waveform shown in Figure 6 is


i

I,n

0
rc 2n 3n

Figure 6
Im , 2I^
a.
7t 1T
c.0 d. Ilq
2
t
tuc 10 201$

11 At what frequency will an inductor of 5 mH have the same reactance as a capacitor of


0.1 pF?
a. 2.13Y*lz b. 5.67 KHz c.7.12KHz d.9.32KHz

t2. In a R-L circuit, R = 35 C), L = 0.1 H. What is the magnitude of current flowing
through the cirruit if the magnitude of the applied voltage is220 Y?
a. 1.5 A b.4.6 A c. 6.8,4. d. 10.7 A

13. The peak value of a sine wave is 200 V. The rms value is
a. 127.7 Y b. 200 V c. 82.8 V d.l4l.4Y
14. Which of the following expression is valid for three phase power?
a. P = Vl Ir- Cos@ -
b. P=3Vr-IrCos@
c. P = r/S Vr Ir CosO d. p=f urlrCos@

15. Laminated core in electrical machines are used to reduce


a. Copper loss b. hysteresis loss
tf c. eddy current loss d. load power loss

16. The circuit element which opposes the change in ac circuit current is ....
a. resistor b. capacitor c. inductor d. diode

t7. The power factor of single phase induction motor is usually


a. lagging b. leading
c. unity d. unity to 0.8 leading

18. In three phase delta connection _


a. Line current is equal to phase current
b. Line voltage is equal to phase voltage
c. Line current is equal to phase voltage
d. Line voltage is equal to phase current

t9. If Ip, Ir, Np, N' represent primary current, secondary current, number of turns in
a primary side and number of turns in secondary side respectively, which of the
following expression is correct for the transformer?
Ip Ip
d. jsIs
Np
a. h
Np NS
b. - =_- ^
Is Ns Is Ns Is -NtNp Np

20. The function of commutator used in DC generator is


a. Amplification b. Switch
c. DC to AC conversion d. AC to DC conversion
D

\.
KATHMANDU UNTVERSMY
End Semester Examination
August,2019 AUG t 6 2019
Level : B.E./B.Sc./B.Tech. Course :ENGG 112
Semester : II
Year :I
Time : 2 hrs. 30 mins.
F.M. :55
..Bt,

15 Q. x 11 = 55 marksl
have their
Attempt AIW FMquestions. Assume suitable data where necessary. Symbols
usual meaning.
1.
a) Ten lamps are to be connected in parallel in a drawing hall, to a220Y ac supply.
There are two types lamps available, 60W incandescent lamp and Twatt LED
lamps, both produces the same amount of light. A 60 watt incandescent light lamp
costs 30 Nepali rupees (NPR) and it has an expected life span of 1000 hours. The
LED lamp cost 250 NPR and has an expected life of 20,000 hours. Assuming the
G" electricity costs to be 10 NPR/kWh, determine the total cost of running
incandescent lamps versus LED lamps for 40,000 hours, for the drawing hall.
which lamp would yoLr suggest for the drawing hall and why? t5l

b) Find the current Ia and voltage V2 for the given network shown in Figure 1' t6l

.*1 *
+
12V
&3 Vx &i .&a s{}

'
Figure 1

2.
a) Using mesh analysis, determine the curent through the 5Q resistor for given
network shown in Figure 2. Also find the voltage V at node a. t5l
4V
5() 3r}
V
qR E2
6V 15V
1() R2
10()
1()

Figure 2
b) Find the total resistance Rr of the Figure 3.
I6l

60 6
fl

il 9{t

fl
Figure 3

J
a) Using superposition, find the current through the Rr
resistor for the given network
shown in Figure 4.
fr
tsl
TJ
4A
I

6A
Rl 6(} 40
30() I*, t2a
El t2y E2 8V

Figure 4

b) For the network shown in Figure 5, determine the Thevenin's equivalent


circuit t
for the network external to the load resistance Rl.
t6l
+22Y

2.2kn

3.3 kO 1.2 ko

5.6 kO 6.8 kO RL

- l2v +6V

Figure 5
AUG 1 $ 2019

4.
a) Using nodal analysis, deter.rnine the voltage across the capacitive reactance in the
circuit of the following Figure 6. t6l

R Rl
R., lko
4 kO ,+ k()
R-1

+
{ko .x
E, = loVzoo XL

-r k() Iko

Figure 6

b) Derive an expression for resonating frequency in practical parallel RLC circuit. t5]

€" 5
a) A rectangular shaped core is madeof mild steel plate having 15mm x 20 mm
cross section area. The mean length of the magnetic path is 18 cm. The exciting
coil has 300 turns and current 0.7 A. Calculate 14)
(i) Magnetizing force
(ii) Flux density
(iii) Reluctance
(iv) Flux of magnetic circuit. Assume relative permeability of mild steel as 940.

b) Find the RMS value of the periodic waveform of the following Figure 7. t3l

-" (V)
1 cycle
3 I

? I

o 12345 8 9 lO ll 12 t(s)
-1
-2

Figure 7

c) How is the resistance of conductor, insulator and semi-conductor affected by


temperature? Explain with the help of suitable diagram and mathematical
expression. t4l

I
6.
a) Explain the construction and operating principle of a DC generator. t5]

b) The phase sequence of the Y-connected generator in the following


Figure g, is
ABC.
t6l
(i) Find the phase angles Oz and O:
(ii) Find the magnitude of line voltages
(iii) Find the line currents
(iv) Verify that, since the load is balances, IN = 0

..L
3fi'
Ydrr
4(} Balanced
t?0y
l20Y Lot 4A
load
d
+ 3 o
+

*_--_.}.
lc,
Figure 8

e
KATHMANDU UNIVERSITY Mark scored:
End Semester Examination
August,20l9
Level : B.Arch Course : ARCH 112
Year : I Semester : II
Exam Roll No. : Time: 30 mins. F.M. :1O

Registration No.: Date *UG r 3 2019


SECTION "A''
[15Q x 0.5 =7 .5 marks]
Encirle the correct answer,

I The Indus Valley civilization/ Harappan civilization is:


a. Bronze age civilization b. Iron age civilization
c. Stone age civilization d. Copper age civilization
('
2 The bond used in foundation and walls of Harappan civilization is:
a. Flemish bond b. English bond c. Stretcher bond d. Header bond

a
J The oldest Veda among the four Vedas is:
a. Saama Veda b. Atharvana Veda c. Yajur Veda d. Rig Veda

4. The three horizontal bars/ needles placed between the posts by threading them into the
holes of upright posts at gate of Vedic village is:
a. Torana b. Suchi c. Thaba d. Capital

5 The small platform with a railing located at the very top of a stupa.
a. Capital b. Medhi c. Hermika d. Chattra

6 The Prayer hall of the Buddhist temple Architecture is known as:


a. Chaitya b. Vihara c. Gurdwara d. Madrasa

3 1 The Durga temple at Aihole was constrLlcted during:


a. Chalukyan period b. Gupta Period
c. Pallava period d. Chola Period

8 The Ratha which inspired by Buddhist chaitya hall with apsidal end at
Mahabalipurum is:
a. Bhima Ratha b. Nakul-Sahadev Ratha
c. Arjun Ratha d. Dharmaraj Ratha

9 The Tomb of Mubarak Sayyid has:


a. Octagonal plan with arcades colonnade
b. Octagonal plan without arcades colonnade
c. Square plan with arcades colonnade
d. Square plan without arcades colonnade
10. The,primary building marerial of Lare
Mughal period is:
a. White marble
b. Red Sandstone
c. Red brick d. White sandstone
ll ToT! of Ghiyas - ud _ din Tughtaq is:
a. Made of red sandstone anO wtrlte
marble lining
b. Made of white marble with red .urdr,on" lining
c. Made of lime stone.
d. Made of rubble stone masonry.

l2 which is NoT the characteristics of Mughar


tomb architecture:
a. Bulbous dome
b' Sculptured pillar
c. Gardens and pools d. Pointed arch
t3 The plan of Buland d,arwazais
.... in shape:
a. Octagonal b. Semi Octagonal c. Square
T4 In.Japanese Shinto architecture
d. Rectangle
6
the fountain to cleanse one,s hands
and face is known
a. Ema b. Komainu c. Temizuya d. Haiden
15 According to ancient vaastu principle
the Northeast corner in residences
is suitable
a. Guest bedroom b. Kitchen
c. Pooja Room d. Master bedroom

S N "8"
[5e x 0.5 =2.5 marks]
Fill in the blanks with appropriate answer.

16. A vertically grooved, disk like structure crown


ing the main tower of
in northern Indian temple is . a Hindu temple

t7 The semicircular niche in the walr of


a mosque that indicates the qibra is
.....
o
18 In Islamic architecture, a construction filling
in the Llpper angles of a square room so
as to form a base to receive an octagonal
oripheri"uiao*. is .....
t9 The vertical shaft which tops a Japanese pagoda
is called
20 The forked roof finials found in Japanese
and Shinto Architecture is .........

IY
KATHMANDU UNIVERSITY
End Semester Examination
August, 2019 AUG I 3 20lg
Level B.Arch. Course : ARCH 112
Year I Semester : II
Time 2 hrs. 30 mins. F.M. : 40
Students are encouraged to sltpport their ansvvers vvith necessary figures.

SECTION "C"
[10Q x 2=20 marks]
Write short notes on (ANI TEN).

1. Lomas rishi cave


2. Great Stupa at Sanchi
3. Ladh Khan Temple, Aihole

o 4.
5.
Virupaksha Temple, Pattadakal
Bhrihadeswara Temple
6. Kandariya Mahadeva Temple
7. Jodhabai's Palace
8. The Great wall of China
9. The Prambanan Temple, Indonesia
10 The Japanese pagoda
11 The Japanese garden
SECTION "D"
[4Q x 5 =20 marks]
Attempt ALL questions.

12. What are the differences between Chiatya and Viharas? Explain you answer with
suitable example and illustration.

13 How the early Mughal Architecture differ from late Mughal architecture? Support
yollr answer by doing comparative study of Humayun's Tomb and Tajmahal.
_o OR

Explain the development of Qutub complex during various rulers? Describe in detail
the major structures of the complex.

14. What type of Architecture flolrrished during the Pallavas period and why? Explain the
characteristics of Shore temple at Mahabalipurum.

15. What are the characteristics of Chinese Architecture? Explain yoLr answer in terms of
typology, building material and technology by giving suitable example and
illustration.
(J
KATHMANDU L|NIVERSITY Marks scored:
End Semester Examination
August,2019
Course : ENVE 101
Level : B.E./B.Sc./B'Tech.
Year :I Semester :II
Exam Roll No. Time: 30 mins. F.M :20
Date AUG 1 2 20lg
Registration No.:
"A"
SECTION
t20Qx1:20marksl
Mark [X] in the most appropriate options'
During technical analysis we may not have all the information needed to
make
1.
decisions. we try to fulfill this gap by making reasonable ......
[ ]arguments [ ]policie; t ltheories [
]assumptions

rJ 2. A stream has a sediment concentration of 1000 mgL.If the flow of the stream is 1500
MLD, the mass flow rate of the sediment in the stream is """""""""""""" kg/s'
tl17 il17o []1700 tll'5
J What is the design parameter for sedimentation tank, which can be altered by varying
the volumetric flowrate and the horizontal surface area of the tank?
[ ]height [ [
]overflowrate ]settlingspeed ]slope [
4 Which is the correct unit for kilometers?
t lKm [ ]Kms [ ]kms t lkm

5 Five ppb of benzene in water means that 1 g of water contains ...... g of benzene.
tls []5x10-e []5x103 [ ]5x10-6
6 Mass of microorganisms produced per unit mass of substrate used is
[ constant
] decay [
] gror'l'th rate constant
[ ]yieldcoefficient [ ]bioaccumulation

@ 7 Maximizing the visual aesthetics is . . . .. .... design,


[
[ ]safe [ ]context-sensitive [ ]smart ]eco

8 Under steady-state removal of a pollutant with a first-order reaction, reaction


volume = 58b m3, flow rate: 14 rfild, and reaction rate coefficient: 0'05 d-l and
initial concentration:20 mglL. What is the final concentration?
lllo tl6l.4 tl6.s []0.016

9 Release of methane from dumped solid waste in a landfill site is an example of


mass transfer.
[ ]solid-gas [ ]solid-solid [ ]gas-liquid [ ]solid-liquid

10. A fine particle settles at a terminal velocity of 0.1m/s in a water tank of depth 1m.
What is the settling time of the particle?
t lls [ ]0,1 s t ll0s [ ]100s
11. The part of the precipitation that flows over the surface of the earth or just
immediately beneath the surface of the earth is called
[ ]spillway [ ]infiltration [ ]transpiration [ ]runoff
t2 Engineering is the profession that
applies mathematics and.... to utilize the
l,1:,:il1},;i##:::
and source' oi'.n..gv ;
;;;;;; userur structures, Lachines,
[ ]physics [ ]science [ ]biology [ ]computers
13. """' settling refers to the.settling, in which
each of the particles do not hinder
settling of neighboring particles. e-/ -- the
[ ]Discrete t rFroccurent [ ]zone [ ]Compression
14. which of the forowing is Nor the goal
p-' of life cycre assessment?
[ ] identify alternative product
[ ] minimize pollution
[ ] reduce the cost of the production
[ ] maximize recycling oimateriui. ura u,aste
15. During impact assessment, grobar
warming may be characterized by
t lgetheneeq. f l;Coz_eq. t lgNOr_.q €
t lgSOz_eq.
16. If 30 kg of Znis availabre_for a person,
[ ]0.03 L --..',w-hat is the mpR/k g- of Zn?
t 133 t 1330 [ ]0.33
t7 has the highest degree of freedom?
Yt:hincrementalism
[ ]
tl re-defining the problem
[ ] optimizing the solution
il re-engineering the system
18. Green engineering is more oriented
towards the ....., and to identify ways
manufactured products are produced in which
and used.
[ ] chemical producr rur' [
]Process
I Jecosystem [ ] toxicology
t9 To promote'disassembly and value
retention, multi-component products
formaterial ........ should strive
[ ]balance [ ]diversification [ ]unification [
1;li\
]consumption
20 Immortality of a product is associated
with
[ ] recycling [ ] safe disposal
[ ] bioaccumulation [ ] product efficiency
KATHMANDU TINIVERSITY
End Semester Examination
August,2019 2 20lg
AUG 1
Level : B.E./B.Sc./B.Tech' Course :ENVE 101

Year : I Semester : II
Time : 2 hrs. 30 mins. F. M. :55
SECTION "B"

Attempt ALL qtestions. Assume necessaly data with logical explanation'

1. Explain why do an engineer need the knowledge of ecosystem? Define the paralneters
ur.d i, Monod kinetics r,vith diagram. Explain how the microbial growth helps in the
wastewater treatment process? [2+3+2]

2 How is the knowledge of mass and energy transfer in pollution control and
remediation essential in Environmental Engineering domain? Draw the mass balance
,-il diagram for the following wastewater treatment system and calculate the final BOD
conientration of treated waste water. l2+l+41
a. The discharge of wastewater to the treatment system is 430 m3lday.
b. The BOD value of incoming waste water is 180
^glL.
c. The area and depth of treatment system is 10000 m2 and I m respectively.
d. The decay coefficient of treatment system is 0.7 per day.

J List out the four types of particles settling process in a tank. Define discrete and
flocculating particles-. If the flow in a system is 1000 m3lday, calculate the volume and
length of the tank if depth and HRT are 3 m and% day respectively.
Assume L:W:5. [1+2+3+1]

4
a. A stream, (shown in the following figure) florving at 150 L/s and 20 mglL of
suspended solids, receives wastewater from three separate sources:

-@
EI' 100 t00
I50 Ut P{rint

300 itj F

50 :00

What are the flow rate and suspended solids concentration downstream at the
sampling point? [2+31

b. A bar with volume 500 m3 has 50 smokers in it, each smoking 3 cigarettes per
hour. An individual cigarette emits, among other things, about 1.0 mg of
formaldehyde (HCHO). Formaldehyde converts to carbon dioxide with a reaction
rate coefficient ft:10 day-I. Fresh air enters the bar at the rate of 1,000 m3/h, and
stale air leaves at the same rate. Assuming complete mixing, estimate the steady-
state concentration of formaldehyde in the air. t5]
5 State and explain any two principles of green
engineering.
In order to improve the environment of Kathlandu
Ind other major cities, w,hat
solutions will you give in terms of incrementalism,
redefinition of the system
------^--' reengineering t't' system
^Yv'b.rvvr'r6 the
""tt and
boundary?
[O*r]
6.
a' why do you understand by a product Life cycle? why it is required
Product Life cycle Assessment (LCA)? to perform a
whai are the main steps in iCai 1r*r*21
b' of Polvethvlene bag, provide the folrowing
i*ffiIffi;t:cA information: l4l
ii. Obligatory properties
iii. Positioning properties
iv' other products which could provide the same or similar service to the user
7 write short notes on (ANy rHREE): [3 x 3 = 9]
a. Hydrological cycle in engineering
I

b. Characteristics of profesiionalisri
6)
c. Nitrogen cycle
d. MECO matrix
e. Engineering decisions

('.\
KATHMANDU UNIVERSITY Marks scored:
End Semester Examination
August,2019
Level : B.Sc./B.Pharm./B'Tech. Course : CHEM 102
Semester: II
Year I:
Exam Roll No. : Time: 30 mins F.M. :20

Registration No.:
Date tuc 1 2 2019
SECTION "A"
[15Q.x1:15marks]
Select and mark [X] in the most appropriate answer:

elements is
1. The bond formed between electronegative and electropositive
[]Metallic []Ionic []Covalent []Dative
is probably
Z. The body-centered cubic structure of barium, Ba , metal at room temperature
due to

(l tl Pairing of electrons in the s-orbital


l Excitation of s-electrons to thep-orbitals
l Excitation of s-electrons to the d-orbital
l Excitation ofp-electrons to the d-orbitals
3 Bond angles in BrF equals to

[]s4o3o' []87040' []9oo []1200


4. How many EDTA (ethylenediaminetetraacetic acid) molecules are required to make an
octahedral complex with a Ca2* ion?
[]One []Two []Three []Six
5 The metallic structure of Zn metal is
[ ] Body-centred cubic [ ] Hexagonal close-packed
[ ] Face-centred cubic [ ] cubic close-packed

6. Which of the following type of isomerism is shown by the complex ion [CoCl, (en), ]. ?

@ []Geometric [ ]OPtical
i t-intug.
I [ ] Geometric and Optical

7 The difference between theoretical and experimental value of lattice energy of CdI, is22.6
%. This large difference indicates that CdI, has bonding

[]Ionic [ ]Metallic [ ]Covalent []Co-ordinatecovalent

8 Which one of the following is the strongest ligand?


[]H,o []NH, tlco []cl
9 The hydrogen bomb is an application of which of the following nuclear reactions
[ ] Nuclearfission [ ] Nuclear fusion
[ ] Radioactive decay [ ] Induced nuclear reaction

10 The type of hybridization on the central atom of IF, is

[]drp' []rp'd []tp'd' []tP'd'


ll The value of magnetic moment (4. ) of tetrahedral complex of co2* ion is
[ ] 1.73 BM [ ] 2.83 8M U 3.87 BM I l 4.e BM
12. When the magnetic quantum number ()") of molecular orbital (MO) is + 2, they are
called
[]oMO []aMO |SMO []Nonbonding
13 In Allred and Rochow scale, the value of attractive force (,fl between nucleus
and an
electron at covalent radius may be converted to electronegativity (
7 ) values on pauling
scale by using equation
')-
€ Z rfr.r,r"
iLl=-=--;- 0.3s92 elJbctive
LJ r' Ll t=0.744+
r 2

0.7442
tl z=0.359+
r
"p,,,, tl z=0.744._0:Y:
Z e!/ective

t4 which one of the following species is diamagnetic in nature?


llo-2 tlo; t]o;- []B,
L)
15. Consider the nuclear reaction,, Nra+rHeo -+rOl, +,Hl
This reaction is described as

I I (a,p) reaction [ ) (a,n) reaction | ) (u,e-) reaction [ ] (p, n) reaction

SECTION "B"
[5Q."1=5marks]

Fill in the blanks with appropriate words and values

16. The chemical formula of the complex 'Tri-p-carbonyl-bis(tricarbonyliron(0))' 1S

17. The octahedral crystal field stabilization energy (CFSD for d7 configuration in weak field
ligand is (.)
18. The molecular orbital electronic configuration of No molecule is

19. The coordination isomer of the complex [CoQ.trH,)u ][Cr(CN)u ] is

20 The total nuclear binding energy in Mev for one mole of lithium atoms is
(Mass of , Li6 nucleus = 6.0110 amu, mass of ,p' : 1.007277 amu and
mass of o n' : 1.008665 amu)
KATHMANDU I]NIVERSITY
End Semester Examination
August,2019
tu0 1 2 20lg
Level : B.Sc./B.Pharm./B.Tech. Course : CHEM 102

Year :I
Semester: II
Time : 2 hrs. 30 mins.
F.M. :55
SECTION "C"
[5Q.*6=30marks]

Attempt ANY FIVE questions


l) a. Write the IUPAC name of each of the following complexes. t1+1+11
i. LilAlH4l
ii. [CuClr(CH3NH2)2]
iii. ICoCI.CN'NO2.0{H,),]
b. Write down the balanced nuclear reactions for the following radioactive isotopes.
[1+1+1]
(J i. ,, Koo (electron caPture)
ii. u C'4 (P-decay)
iii. ,rU"'(a-decay)

2) a. Explain ''Werner's co-ordination theory' describing different valencies of metal in


co-ordination complexes with examples' t3l
b. What are radioactive displacement laws? Write with an example' 12+11

3) a. What are the postulates of VSEPR theory? Describe the shape of ClF, on the basis of
VSEPR theory. 12+21

b. Draw the shapes of different molecular orbitals formed by the combination of p and d

atomic orbitals. 12)

{tr^4) a. Define with an examPle.


i. Nuclear magic number
[1+1+1]

ii. n-accepterligands
iii. EAN rule
b. The half-life of Palladium- 100 ( Pd'oo ) is 4 days' After 12 days, a sample of Pd'00
has been reduced to a mass of 4 mg. Determine the starting mass' What is the
mass after 8 weeks from the start? t3l

5) a. Explain the delocalizationof a-bonding in CO, molecule on the basis of MOT. t3l
b. What is metaltoxicity? Illustrate with an example. Explain the use of chelates in the
treatment of metal poisoning. L2+11

6) Distinguish between 12+2+2)


a. Inner-orbital and outer-orbital octahedral complexes (on the basis of VBT)
b. Crystal field splitting (A) and crystal field stabilization energy (CFSE)
c. Gerade (V,,r) and ungerade (/r,l ) molecular orbitals
7) Explain with reasons. 12+2+21
a. Tetrahedral complexes are high spin complexes.
b. The six co-ordinate NaCl structure is more stable than eight co-ordinate CsCl and four
co-ordinate ZnS structure.
c. PCl, exists but PH, does not.

SECTION "D"
[25 marks]

Attempt ANY THREE questions. Question No. 8 is compulsory.

8) a. What are the main assumptions of crystal field theory of bonding in transition metal
complexes? Explain the splitting of d - orbitals in tetrahedral and octahedral
complexes. IZ+2+21
b. Deduce the following relation,
fr
u-- NoAz*z-e2
[,- 1']
h \ n/
where, the symbols have their usual meaning.
t3l

9) a. Draw and explain molecular orbital energy diagram for the complex ion [Co
rrr
OIH 3 )6 ]3.

b. Explain the conductivity of lithium and beryllium metals on the basis of band rn.orr.[O]

t4l
10) a. Define Jahn-teller theorem. Explain the tetragonal distortion of octahedral complex of
Cu2* in case of both weak and strong field ligands.
[1+3]
b. Define polarizing power and polaizability. Explain the different factors favouring
polarization of ions with appropriate examples.
[l+3]

1 l) Write short notes on (ANY FOUR). [2+2+2+2)


a. Spectrochemical series
b. Nuclear fission
c. z - meson exchange theory
d. n-type semiconductors
e. Radius ratio rule
f. Hydrate isomerism in coordination complexes
KATHMANDU UNIVERSITY Marks Scored
End Semester Examination
August,2019

Level : B.E./B.Sc./B.Pharm./B.Tech. Course :PHYS 102


Year : I Semester : II

Exam. Roll No.: Time: 30 mins. F.M. 15

Registration No.: Date AUG 0 I2019


'(A"
[15Qx1=15marks]

I, Choose and ticldcircle the most appropriate answers. The symbols, unless mentioned
othemvise, have their usual mectnings.

1. Which one of the following vector identities is NOT correct?

t lal v x (fo) = fv xA- AxYf


lcl Vx(nxB)= Ex(vxn)- ax(vxa)
[b] Vx ( VxA )
_V ( VA) _vrA

rdlv( AxE)= B.( Vxa )-A (vxr)


2. A point charge Q, lies at a point inside radius R, . Another point charge Qr lies
a sphere S, of

at a point outside the sphere S, and inside the concentric sphere S, of radius & . If Q, and @,
are the total fluxes crossing the spheres S,and S, respectively, then

A Q, d,
tL _
o,
*t L-Q'!Q' L= Q,Ri
Ia] tbl 1"1 @)
o, Q, d-
t:
O,+O.
-L -:
Q. Q, Q, Q,R:

a
J Let V and E are the electrostatic potential and field respectively inside a spherical shell which
carries a uniformly distributed total charge q. Which one of the following circumstances is
correct everywhere inside the shell?
E*0.
LalV =0 and tblV *0 and E*0.
lclV=0and E=0. tdlV*0and E=0.
@
4 The electric susceptibility of a linear dielectric material
[a] measures the strength of polarization of the material.
[b] is directly proportional to the polarization of the material.
[c] is inversely proportional to the electric field in the material.
[d] is directly proportional to the amount of free charges present in the material.

5. A charge particle of mass mand charge Q rnoving with velocity il enters in a magnetic field
f Wnicn one of the following statements is NOT correct?
.

[a] The particle follows the cycloid path, if I .E *0 and n xE +0.

[b] The particle follows the circular path with frequency 9L


'llTttt , if v .E = 0.

[c] The particle follows the straight path along the direction of B , if il x E = 0.

[d]Theparticlefollowsthehelical pathwithfrequency PL,if i.Bt0 ancl ixB*0.


/.7f ilt

I
6 The integral form of Ampere's law can be used to find the magnetic
field around the current
carrying wires. The Amperian loop must be constructed in such a way
that the line integral
along the entire loop is not zero as well as
[a] the magnetic field is rangentiar and varies uniformly along the loop.
[b] the magnetic field is tangential and constant at every poinl on the ioop.
[c] the magnetic field is perpendicular and varies unifoimly along the toop.
[d] the magnetic field is perpendicular and constant at eveiy poinl on the ioop.

7 A material contains tiny magnetic dipoles called atomic/molecular magnetic


dipoles. They are
in random orientation in the absence of external magnetic field and th"e
net oiplf. moment of
the material is zero. These dipoles arise due to spiniing motion
of electrons on their axes. In
general, the atoms or molecules containing odd numbei of
electrons can exhibit such nature.
The material is called
[a] diamagnetic material. [b] ferromagnetic material.
[c] paramagnetic material. [d] anti-ferromagnetic material.

8. The self-inductance per unit length of a long solenoid of radius R and /4 turns per unit length
carryingacurrent is I C-
fa) pornRz [b] ponnlR, lcl lpotrnrRt ldl potrn2R2

9 Which one of the following statements is equivalent to Ampere's law after conected
by
MaxwBll?
[a] Time varying electric field induces a magnetic field.
[b] Time varying magnetic field induces an electric field.
[c] Magnetic flux in a current loop is directly proportional to the current.
[d] The direction of induced current is such that it opposes the effect producing it.

10. In Raman spectra,


[a] stokes lines have shorter wavelengths and are less intense than anti-stokes lines.
[b] stokes lines have longer wavelengths and are more intense than anti-stokes lines.
[c] stokes lines have longer wavelengths and are less intense than anti-stokes lines
[d] stokes lines have shorter wavelengths and are more intense than anti-stokes lines.
4h
\.-
II. Fill the following blanks with appropriate ctnswers.

11 The divergence of the position vector V = xi + yj + zt ot a point with coordinate (3, 2,_4) ts

t2. The potential difference between the center and a point on the surface of a solicl sphere of radius
R carrying a uniform volume charge density is . p
t3 Let V and_,a are the electric potential and magnetic vector potential respectively at a point in
space. If A varibs with time, the net electric field at the point is

t4 The SI unit of polarization is ....

15. The vibrational spectra of a molecule fall on the far infra-recl region while the rotational spectra
fall on the ... ......region.

x
KATHMANDU UNIVERSITY
End Semester Examination
August, 2019
.tut 0 g zttl$
Course : PHYS 102
Level : B.E./B.Sc./B'Pharm./B.Tech.
Year : I Semester :II
F.M. :40
Time : 2 hrs. 30 mins.
SECTION "B"
[5Qx3=15marks]
perfect conductor is
1 What are perfect conductors? Explain, why the electric field inside a
always zero.

OR

Define polarization. Show that the polarization ,P establishes the volume bound charge density
po = -Y ' F inside of the polarized materiai'
e
2 Define curl and divergence of a vector. Show that divergence of curl of a vector is always zero.

3 A short solenoid (length Iradius a, with n, turns per unit length) lies on the axis of a
and

very long solenoid (radius b, n, turns per unit length) as shown in figure below. Curent -I
flows in the short solenoid. What is the flux through the long solenoid? What is the mutual
inductance of the sYstem?

b
I

OR
_@
A steady current 1 flows down a long cylindrical
wire of radius a as shown in figure. Find the
magnetic field, both inside and outside the wire, if I
the current is distributed in such a way that -/ is
proportional to r, the distance from the axis'

4 What do you mean by superconductivity? What happens, when the magnetic flurx is introduced
into a superconducting ring? Explain the Meissner Effect of superconductivity'

5 Explain, how the hysteresis loop can be obtained in a ferromagnetic material. Show that
hysteresis loss in a ferromagnetic substance is equal to the B-H cLlrve.

OR

Obtain the Maxwell's equations in matter


SECTION "C"
[5Qx5=25rnar*s]
6 Find the electric field a distance above
z one end of a straight line segment of length
carries a uniform line charge )'. checkthat z, which -
your formulJis consisf,nt with wnat
expect for the case z )) l. you would

OR

tf E is uniform, shou, thar ,41r; = - -l rt><E;. crrcck that y .A=0 ancr vx,4 = .E .
2

7 tT power delivered by the electromagnetic fierds


on a sysrem of charge is
:T- .',"1
* -JlE J)drand' proceed further to obtain the Poynting's theorem.
Finally, show rhat
Poynting vector i satisfies the continuity equation, v . .i = -${r"* * u*".r,) , where
+, *o
(J^"", arethe electromagnetic I
and mechanical energy densities r-espectively.

8 Derive an expression for work done to assemble


the first four point charges by bringing
from infinity' Enhance your derivation to assembl them
e n potrficharges and hence for continuous
charges' Using the result, show that the
stored in an electric field E
"r.rgy is
, =+ I E2dr
.rrcliicc
oR

A cavity sphere is made inside apolarized,material with


polari zation F. show that the electric
field at the center of the cavity sphere due to the bound
charges on the cavity surface l, 3.
3€'
obtain the clausius-Mossotti form,ra using the result.

9 With schematic diagram, explain experimental setup to observe


quantum mechanical explanation of it.
the Raman Effect. Give tfre$

10. what is magnetic dipole? Derive the expressions of torque


and energy stored in a magnetic
dipole of dipole moment fi placed, in a unifor,, *ugn.iic
field E .-itwhat conditions rhe
energy is maximum and minimum?

OR

A long coaxial cable carries current 1 (the clrrent flows


clown the surface of the inner cylinder,
radius a, and back along the outer cylinder, raclius &).
Find the magnetic energy stored in a
section of length / . AIso fincl the self inductance
of the system from the resglt you have
obtained.

I
KATHMANDU UNIVERSITY Mark Scored:
End Semester Examination
August, 2019
Level : B. Arch. Course : ARCH 161
Semester : II
Year : I
Exam Roll No. Time: 30 mins. F.M. :10

Date AU$ 0 g 20lg


Registration No.:
SI1,C'I'ION "A'1
l20Q x 0.5 = 10 marksl

Encircle the most appropriate answer.

load
1. The maximum strength to stone masonry is obtained by placing the applied
:

A. Perpendicular to the direction of the natural bed of stone


-' B. Along the direction of the natural load of stone
C. Both of A and B.some time
D. Neither A nor B
The percentage absorption of water of good stone by weight after 24 hours
should not
2
exceed
A. 0.5 B.0.6 c.0.7 D.0.4

3. In cold regions, porous Stones are not to be used at places subjected to:
A. Frost B. Moisture C. Both A and B D. Neither A nor B

4. Which one of the following sequence of steps in correct for preparing the clay for making
bricks?
A. Weathering - Blending - Tempering B. Blending - Tempering - Weathering'
C. Tempering - Weathering - Blending D. None of these is correct.
5 What should be placed at the beginning of every Header course in English Bond to avoid
vertical joint?
@ A. Queen closer B. Half bat C. Three fourth bat D. King closer

6. Which of the following pairs is matched properly?


A. Class A - Concrete work B' Class B - Mortar
C. Class C - masonry work D. Class D - white washing

1 What is the Specialty of Hydraulic lime?


A. impurities
Contains B. Does not set under water
c. contains clay D. Perfectly white in colour

8 The hydraulic lime resembles the natural cement if clay content is:
A. l5%o B.20Vo C.257o D'3070

I When water is added to cement, the decreasing rate of reaction of the four minerals is as

under:
A. CrA - C+AF - CrS * CzS B' C+AF * C:S - CzS * C:A
C. C:S --- CzS - C:S --+ C+AF D. C:A * C+AF - CzS - C:S
l0 The strength of concrete is assumecl a full strength
after:
A. 7 days B. 14 days C. Zt ctays D. 2g days
11. If 'P' is the percentp,t ol water required for normal consistency,
determination of initial setting time,ls 'vJ' water
vvqlvr to
ru be
ue added for

A. 0.70 P B. 0.75 P c. 0.80 P D. 0.85 P


12. Which of the following statements is correct?
A. Excess of alumina in the clay makes the brick
brittre and weak.
ji. Bxcess of arumina in the cray makes the brick crack and warp on drying.
c' Excess of alumina in the crzry leaves high power o.porii on the brick.
D' Excess of alumina in the clay improv., i-p..*"auititf ano durability
of the brick.
13. For the manufacture of Portland cement the proportions
of raw material used are
A. Lime 63Vo ; siljca 22Vo ; other ingredients I 5Zo
B. Silica 22Vo:lime 63Vo; other ingredients 15Zo
C. Silica 4070:lime 40Vo; other ingtedients 40Vo

14.
D. Silica 70Vo; lime 20Vo; otLter ingedients 2OTo f
Quick setting cement is produced by adding
A. Less amount of gypsum in very fine powdered form
B. More amount of gypsum in very fine powdered form
C. Aluminum sulphate in very fine powdered form
D. Pozzolana in very fine powde.ed fo.m
15 Pick up the comect statemcnt fi.om the following.
A' Adding 5vo to 67o moisture content by r,veifht, increases the volume of dry
sand from
18Vo to 38Vo
B' The bulking of fine sand is more than that of coarse sancl
C If the percentage content of moisture exceeds lTvo, increase in bulk of sand starts
lncreasrng
D. All options are correct
16. Durability of concrete is proportional to
A. Cement- aggregate ratio
C. Water- cement ratio
B. Sand content
D, Aggregate ratio a
17. tg of fine aggregates and
100 kg of coarse aggregates are mixed in a concrete
-I-f-50
whose water cement ratio is 0.6, the weight of wa-tJr iquired for
harsh mix is
A. 8 kg B. lo kg c. izt<.s D. t4 kg
18. Under constant load the Creep strain in concrete is
A' Time dependent B. Temperature dependent
C. Moisture dependent p. None of these

19. If 1500 g of water is requirecl to have 1875 g cement paste of


normal consistency, the
percentage of water is
4.20%o B.25Vo C.3OVo D.35Vo
20. Slate and marble stone belong to
A. Igneous rocks B. Metamorphic rocks
C. Sedimentary rocks D. Foliated rocks
KATHMANDU UNIVERSITY
End Semester Examination
August, 2019 AUG 0 g 2019
Level : B. Arch. Course : ARCH 161
Year : I Semester : II
Time : 2 hrs. 30 mins F. M. :40
SECTION "B"

arLemprALL quesrioirs. Assulrre the suitabie ciata wirerever necessary

1 Describe briefly the properties of building materials. Explain the difference between
Rubble with Ashlar stone masonry with neat sketch. Briefly explain the classification of
rocks with examples. 12+2+21

e 2 Explain briefly the harmful ingredients in good brick earth, stating their effects on the
properties of the bricks? Explain the function of constituents of brick earth. Explain the
difference between English bonds with Flemish bond. l2+z+21

J Explain bulking of sand with neat schematics diagram. Explain the manufacturing process
of lime with flow diagram. Describe the effect of properties of aggregate while preparing
the concrete. r1t)t11

4. What is the physical significance of initial and final setting time of cement? Mention
recommended slump of concrete for different purpose of construction, explain taking
slump cone test as a reference. Discuss at length the manufacturing process of ordinary
cement with flow diagram.
I l+2.5+2.5j

5 How the volumetric change in concrete occurs due to the impact of aggregate, water cement
ratio, member size and Medium Ambient conditions on shrinkage of concrete. With the
help of neat schematic curve, describe the creep phenomena and its recovery. Also discuss
the factor affecting the creep ofconcrete.
t3+31
_@ 6. Define normal consistency of cement. Using I.S Method, design a concrete mix for
reinforced concrete structure using Ordinary Portland cement of grade 43 with 28 days
strength 51 N/mm2 and the Characteristic compressive strength of the concrete required in
field at 28 days is 35MPa, if the super plasticizer is used as a chemical admixture. Assume
the suitable grade of concrete for given condition. t1+4]
Fine aggregate zone-III
Design mix target slump = 175 mm
Maximum nominal size of aggregates = 20 mm (Crushed Angular)
Sp. gravity of Coarse aggregate =2.82
Exposure Condition = Moderate
Degree of supervision = Go.od
Sp. gravity of fine aggregate =2.65
Sp. gravity of cement = 2.93
Sp. Gravityof admixture = 1.2
Entrapped air = ZVo
Water content = 186 liters (per cubic meter of concrete for 20 mm size of aggregate)
l Write short notes on: (ANY fWO) 12.5x2=51
a) Describe C-S-H gel
b) Seasoning of stone
c) Curing of concrete

Teble I Asumed Stardard Deriadon


(Claruas 3.?, 1.2. A-1 aad B-3)
Tabh 3 Yolume of L-oarsf, Aggregatl pcr Unit
st Cndtof iscd StrlilrrdDttll$ol Yolume of Total Aggregate for Different
fiL Cotarctc l,l/mraI 2ones ofFine Aggregale
(t) (2) {r) (Clrt.t*r 4-4. A-? nrd I)-?;
i) M
ii, I$
1.,
fit Xorinrl l'oturrc ofCo{rst Aggrcgrtci) ptr Unit
Na lil:rlmum Y0lEm6 ofTo{sl ,{ggrrsrk for
ii, u zol
,.0
Slzc of Dilft rrnl 7.m* of Flr.,tgirrg*&
iv) uzsf Aggrcgitr
mm ZonslV Zonclll Zanell Zml
vi)
vii)
viii)
Y) Ilt 30)
urs
uro I
M45 I
I

,.0
{r)
iI
(z}

t0
(3,
0.50
r"r) t5)
o.4s 0_46
(6)

0.!4
6
ixt tuso I ii) 1n 0.66 0.64 4.62 0,60
rl M51., iii) 40 u ,l 0.?3 g.?t s.6E

.C
E { F1
e
gz
'6
z
f Br
sl
9E B
e
r .YCr
hy
$ s
Er
&t: * {r A* 31.0-$S*
SS
u
r(,
q&
€E
c
c t* }q

r\
:{ *
B * S.*"r1.?
("61,;"66
0*&6"t15 t*ms!r?
irlrarnl
l$mrl
tsr*m!

ss (:r 6 *$tE.?*, $lmal


ts F*B&r.$1.3 Irloxrl

Watsr.e*rnsnt r'atlo l*si*r.qrntd rdt;B

l.l{,

d
KA THN4ANDU LTNTIVERS ITY
Re-schedule End- Semester Exarninations
August, 2019

Exarnination Time : I 1.00 A. M. to 2.00 p. M


Date' Day I-II II-IT III - II IV_I
August 9 Fridav PHYS IO2 EEEG 309
ARCH 16I MEEG 309
MEEG 3I7
COMP 302
GEOM 3I5
CIEG 308
ENVS 335
PHAR3II
BIOT 306
A\ PHYS 3I
rJ CHEG 314
1

August I I Sunday MATH 208


ENVS 224
PHAR 2I2
BIOT 2IO
PHYS 2I3
ARCH 2I5
MATH 2I I
Augr-rst l2 Monday ENVE IOI GEOM 313 I\4GTS 403
CI-IEM I02 CHEG 3I2
Alrgust I3 Tuesday ARCH I12 ETEG 30I
EPEG 3OI
MIEEG 3OB
COMP 3I4
CIEC 309
MGTS 302
BIOT 307
PHYS 3I2
{i ENVS 318
ENVS 345
August 14 Wednesday EEEG 214
MEEG 202
COMP 232
GEOM 206
CIEG 208
BIOL2OT
BIOL206
BIOT 209
CHEG 2I I
ARCH 2I6
PHYS 2I2

./-:,.-:.
-'-'
..., a. i-
'\;',
'-:a\'-a'
Date D I-II II_II III _ II IV_I
August l6 Friday ENCG I12 COMP 40 I
ENVS 101 E?EG*03
PHAR IiI COMP 34I
BIOT lOI CIEG 312
NEPT IOI CHEG 3IO
PHAR 3I3
BIOT 308
ENVS 303
ENVE 31 I
August l8 Sundal.' EEEG 21 5 MGTS 303

3 MEEG 206
COMP 23I
PHYS 313
GEOM 310
CEEC 201
CIEC 206
CHEM 212
PHYS 21I
CHEG 2I3
MATI{ 2I3
ARCIJ 2I7
August l9 Monday
ETEC 304
EPEG3IB
..,.G**E€-34S
COMP 301
coN4P 409
ENVS 306
August 20 Tuesday MATH IO4 CIEG 3I4
MATH ]02 PIJAR 315
MATH 103 BIOT 309
ft
qi./ ALrgLrst 2l Wednesday
MATH 106
PHYS 207 MEEG 302 COMP 472
August22 Thursday MCSC 202 CHEG3I3
CHEM 203 PHYS3i4
BrcT 207 GEOM 306
ARCIJ 2I8 ENVS 33I
August 23 Friday ENGT 102 COEG 301
ETEG 305
MEEC 306
COMP 306
MATH322
CIEG 3I3
CIEG 3I8
BIOT 305
August 25 Sunday CLEG 207 GEOM 307
PHAR 214 PHAR 3I6
ENVS 337

fi t'\'
.....:
."
ft
t'-.;t
>'" L.i-' '
.t --
!.n i lVI '1.
Date Day I-II II-II III _ IT ry-I
August 26 Monday COMP 20I INAN 30I COMP 484
MEEG 207
COMP 201
BIOT 206
STAT 22 1

CHEG 2iO
ENVS 204
August 27 Tuesday COMP I 16 coN4P 342
COMP 102 COMP 323
STAT IOI CIEG 310
A August 28
rilir Wednesday INAN 2I I
'z €tOlvfltg
MEEG 3I8
ENVS 336
August 29 Thursday CIEG 209 CHEG 315
),'€EOM2&I- CHEG 323
"-{ E}+rlB?:&i
CHEG 212
AugLrst 30 Friday MATH 207 ENVE 399 COMP 478
BIOT 208
MATH 217

Note: Excuttinatiotts u'i.ll be conluclecl a.\ per thi,s


,sclteclule oncl urtc/er no cir.ctutt.s.lc,tce lhe clales.
y,ill be changed utle.ys the Lrnit,eriity ctrtc{ time,s
publishe.s pricr. rtolic,:e.

Holiday: August 15,2019: Janai purnima

s
ft
c
.: a'i
r cti-'':,-

J
KATHiVTANBU U&ryVERSITV
OFFICE OF THE LLER OF EXAMINAIIONS
5 0, Kathamandu, Nepal
Tel: (011) 4t5l00,Fax: 9 ai l: control Ierofexam [email protected]

ALrgr_rst I l. 20lg
N0't'r CFI
As per the reconrnlendatiott 1l'o'r
thc Dt:AN of'sclrool ol'scicrcc
lloD's of respective departrnerrts. ancl School olEngineering
tlrc.lourr., (r:prrc.ir5. Iil-rrc i0i. anci
cEoM 3 t9. cHEC j05 and ENVIr ,0;) c[]dM 204. crro M206.
havc b..,, ...-r.l,edLrred as fbilorvs.

Datc Dav
rp Septetnber 0t .20t9 SLrnday
Courscs
tl
trPEC 3 15. I f:C 303. CfroN,l 204
.C EOM I t9.
CIITJC 305. L, NVIr 205
Se t enl ber 05 20 I 9 'l'h
ursda CI:OM 206

E.xanrination Tirnc : I I.00 A.tv. ro 2.00 tr"t\4.


llxarn Cclrtre l( ath rrr arrcl Lr [Jn i,,,ers i t-i,. t)lr ir I i k h c I

n y*04-*
s) Prolissor PA NNA"|I-IAPA. P ht)
C onirol lcr o f Exanrinations
T

I
T

I
I
I
T

I
T

t
I
I
I
T

!
t
I
I
I
T

I
I
I
I
t
I
I
I
I
I
I
I
I
I
T

You might also like