PROJECT AIRLINE S RESERVATION. CBSE (Board)

Size: px
Start display at page:

Download "PROJECT AIRLINE S RESERVATION. CBSE (Board)"

Transcription

1 For Word/docx format Please contact on , PROJECT AIRLINE S RESERVATION For the partial fulfillment of CBSE (Board) Made By: Sagar Class: XII Science Roll No:

2 INDEX 1.CERTIFICATE 2.ACKNOWLEDGEMENT 3.CODING 4.Output screen

3 1. CERTIFICATE This is to certify that this is a bonafide record of the project work on Airline Reservation done satisfactorily at Kendriya Vidyalaya, Shalimar Bagh by Sagar in partial fulfillment of XII Science of CBSE. (Sagar) Signature of candidate Roll No. Signature of Project Guide :- Name: - Mr. Arun Kumar Designation: - PGT Date: -

4 2. ACKNOWLEDGEMENT I express my deep sense of gratitude towards school management who has in various ways, helped in the successful completion of this project. I would like to express my indebtness to my teacher Arun Sir for his genuine interest and supplying us the right motivation and environment to work in. Sagar XII- Science. Roll No-

5 / / I N C L U D E D H E A D E R F I L E S # i n c l u d e < i o s t r e a m. h > # i n c l u d e < f s t r e a m. h > # i n c l u d e < s t r i n g. h > # i n c l u d e < s t d l i b. h > # i n c l u d e < s t d i o. h > # i n c l u d e < c t y p e. h > # i n c l u d e < c o n i o. h > # i n c l u d e < d o s. h > / / T H I S C L A S S D R A W L I N E S, B O X E S, E T C. c l a s s D R A W p u b l i c : v o i d L I N E _ H O R ( i n t, i n t, i n t, c h a r ) ; v o i d L I N E _ V E R ( i n t, i n t, i n t, c h a r ) ; v o i d B O X ( i n t, i n t, i n t, i n t, c h a r ) ; ; / / T H I S C L A S S C O N T R O L A L L T H E F U N C T I O N S R E L A T E D T O T I C K E T S c l a s s T I C K E T p u b l i c : v o i d A D D I T I O N ( v o i d ) ; v o i d E N Q U I R Y ( v o i d ) ; c h a r * F L I G H T N O ( i n t ) ; p r i v a t e : v o i d A D D _ R E C O R D ( c h a r [ 1 0 ], c h a r [ 1 5 ], c h a r [ 1 5 ], i n t, i n t ) ; p r o t e c t e d : c h a r f l t n o [ 1 0 ], f r o m [ 1 5 ], t o [ 1 5 ] ; i n t e c o f a i r, e x e f a i r ; ;

6 / / T H I S C L A S S C O N T R O L A L L T H E F U N C T I O N S R E L A T E D T O P A S S E N G E R S c l a s s P A S S A N G E R p u b l i c : v o i d A D D _ R E C O R D ( i n t, i n t, c h a r [ 2 6 ], c h a r [ 3 6 ], i n t, c h a r, c h a r ) ; v o i d D E L E T E _ T I C K E T ( i n t ) ; i n t D E L E T E _ F L I G H T ( i n t ) ; i n t ( i n t ) ; v o i d L I S T ( v o i d ) ; i n t L A S T _ T I C K E T N O ( v o i d ) ; i n t S E A T S ( i n t ) ; i n t F O U N D ( i n t ) ; c h a r * N A M E ( i n t ) ; p r o t e c t e d : c h a r C l a s s, n a m e [ 2 6 ], a d d r e s s [ 3 6 ], s e x ; i n t s l n o, a g e, t i c k e t n o ; ; / / T H I S I S D E R I V E D C L A S S W H I C H C O N T R O L A L L T H E F U N C T I O N S / / R E L A T E D T O R E S E R V A T I O N, C A N C E L L A T I O N, E T C. c l a s s R E S E R V E : p u b l i c T I C K E T, p u b l i c P A S S A N G E R p u b l i c : v o i d R E S E R V A T I O N ( v o i d ) ; v o i d C A N C E L L A T I O N ( v o i d ) ; v o i d D I S P L A Y _ T I C K E T ( v o i d ) ; v o i d D E L E T E _ A L L ( v o i d ) ; ; / / F U N C T I O N T O D R A W H O R I Z O N T A L L I N E v o i d D R A W : : L I N E _ H O R ( i n t c o l u m n 1, i n t c o l u m n 2, i n t r o w, c h a r c ) f o r ( c o l u m n 1 ; c o l u m n 1 < = c o l u m n 2 ; c o l u m n ) g o t o x y ( c o l u m n 1, r o w ) ; c o u t < < c ;

7 / / F U N C T I O N T O D R A W V E R T I C A L L I N E v o i d D R A W : : L I N E _ V E R ( i n t r o w 1, i n t r o w 2, i n t c o l u m n, c h a r c ) f o r ( r o w 1 ; r o w 1 < = r o w 2 ; r o w ) g o t o x y ( c o l u m n, r o w 1 ) ; c o u t < < c ; / / F U N C T I O N T O D R A W B O X v o i d D R A W : : B O X ( i n t c o l u m n 1, i n t r o w 1, i n t c o l u m n 2, i n t r o w 2, c h a r c ) c h a r c h = ; c h a r c 1, c 2, c 3, c 4 ; c h a r l 1 = 1 9 6, l 2 = ; i f ( c = = c h ) c 1 = ; c 2 = ; c 3 = ; c 4 = ; l 1 = ; l 2 = ; e l s e c 1 = c ; c 2 = c ; c 3 = c ; c 4 = c ; l 1 = c ; l 2 = c ; g o t o x y ( c o l u m n 1, r o w 1 ) ; c o u t < < c 1 ; g o t o x y ( c o l u m n 2, r o w 1 ) ; c o u t < < c 2 ;

8 g o t o x y ( c o l u m n 1, r o w 2 ) ; c o u t < < c 3 ; g o t o x y ( c o l u m n 2, r o w 2 ) ; c o u t < < c 4 ; c o l u m n ; c o l u m n ; L I N E _ H O R ( c o l u m n 1, c o l u m n 2, r o w 1, l 1 ) ; L I N E _ H O R ( c o l u m n 1, c o l u m n 2, r o w 2, l 1 ) ; c o l u m n ; c o l u m n ; r o w ; r o w ; L I N E _ V E R ( r o w 1, r o w 2, c o l u m n 1, l 2 ) ; L I N E _ V E R ( r o w 1, r o w 2, c o l u m n 2, l 2 ) ; / / F U N C T I O N T O A D D G I V E N D A T A I N T H E T I C K E T F I L E ( T I C K E T. D A T ) v o i d T I C K E T : : A D D _ R E C O R D ( c h a r t _ f l t n o [ 1 0 ], c h a r t _ f r o m [ 1 5 ], c h a r t _ t o [ 1 5 ], i n t t _ e c o f a i r, i n t t _ e x e f a i r ) f s t r e a m f i l e ; f i l e. o p e n ( " T I C K E T. D A T ", i o s : : a p p ) ; s t r c p y ( f l t n o, t _ f l t n o ) ; s t r c p y ( f r o m, t _ f r o m ) ; s t r c p y ( t o, t _ t o ) ; e c o f a i r = t _ e c o f a i r ; e x e f a i r = t _ e x e f a i r ; f i l e. w r i t e ( ( c h a r * ) t h i s, s i z e o f ( T I C K E T ) ) ; / / F U N C T I O N T O R E T U R N S F L I G H T N O. F O R T H E G I V E N S. N O c h a r * T I C K E T : : F L I G H T N O ( i n t s n o ) f s t r e a m f i l e ; f i l e. o p e n ( " T I C K E T. D A T ", i o s : : i n ) ; i n t c o u n t = 1 ; w h i l e ( f i l e. r e a d ( ( c h a r * ) t h i s, s i z e o f ( T I C K E T ) ) ) i f ( s n o = = c o u n t )

9 b r e a k ; c o u n t + + ; r e t u r n f l t n o ; / / F U N C T I O N T O G I V E S D A T A T O A D D R E C O R D S I N T I C E K T F I L E v o i d T I C K E T : : A D D I T I O N ( v o i d ) f s t r e a m f i l e ; f i l e. o p e n T I C K E T. D A T ", i o s : : i n ) ; i f (! f i l e. f a i l ( ) ) r e t u r n ; A D D _ R E C O R D ( " K L ", " D E L H I ", " M U M B A I ", , ) ; A D D _ R E C O R D ( " K L ", " M U M B A I ", " D E L H I ", , ) ; A D D _ R E C O R D ( " K L ", " D E L H I ", " C A L C U T T A ", , ) ; A D D _ R E C O R D ( " K L ", " C A L C U T T A ", " D E L H I ", , ) ; A D D _ R E C O R D ( " K L ", " D E L H I ", " M A D R A S ", , ) ; A D D _ R E C O R D ( " K L ", " M A D R A S ", " D E L H I ", , ) ; A D D _ R E C O R D ( " K L ", " M U M B A I ", " C A L C U T T A ", , ) ; A D D _ R E C O R D ( " K L ", " C A L C U T T A ", " M U M B A I ", , ) ; A D D _ R E C O R D ( " K L ", " M U M B A I ", " M A D R A S ", , ) ; A D D _ R E C O R D ( " K L ", " M A D R A S ", " M U M B A I ", , ) ; A D D _ R E C O R D ( " K L ", " C A L C U T T A ", " M A D R A S ", , ) ; A D D _ R E C O R D ( " K L ", " M A D R A S ", " C A L C U T T A ", , ) ; / / F U N C T I O N T O D I S P L A Y L I S T O F F L I G H T S

10 v o i d T I C K E T : : E N Q U I R Y ( v o i d ) f s t r e a m f i l e ; f i l e. o p e n ( " T I C K E T. D A T ", i o s : : i n ) ; D R A W d ; d. B O X ( 1, 2, 8 0, 2 4, ) ; d. L I N E _ H O R ( 2, 7 9, 4, ) ; d. L I N E _ H O R ( 2, 7 9, 6, ) ; d. L I N E _ H O R ( 2, 7 9, 2 2, ) ; t e x t c o l o r ( L I G H T G R A Y ) ; g o t o x y ( 3 0, 3 ) ; c p r i n t f ( " L I S T O F T H E F L I G H T S " ) ; t e x t c o l o r ( L I G H T G R A Y ) ; t e x t c o l o r ( B L A C K ) ; t e x t b a c k g r o u n d ( W H I T E ) ; f o r ( i n t i = 2 ; i < = 7 9 ; i + + ) g o t o x y ( i, 5 ) ; c p r i n t f ( " " ) ; g o t o x y ( 2, 5 ) ; c p r i n t f ( " S n o. F L I G H T N O. F R O M T O E C O N O M I C F A I R E X E C U T I V E F A I R " ) ; t e x t c o l o r ( L I G H T G R A Y ) ; t e x t b a c k g r o u n d ( B L A C K ) ; i n t r o w = 7, s n o = 1 ; w h i l e ( f i l e. r e a d ( ( c h a r * ) t h i s, s i z e o f ( T I C K E T ) ) ) g o t o x y ( 4, r o w ) ; c o u t < < s n o ; g o t o x y ( 9, r o w ) ; c o u t < < f l t n o ; g o t o x y ( 2 0, r o w ) ; c o u t < < f r o m ; g o t o x y ( 3 4, r o w ) ; c o u t < < t o ; g o t o x y ( 5 2, r o w ) ; c o u t < < e c o f a i r ; g o t o x y ( 6 7, r o w ) ; c o u t < < e x e f a i r ; r o w + + ; s n o + + ;

11 / / F U N C T I O N T O R E S E R V E T I C K E T F O R T H E P A S S A N G E R v o i d R E S E R V E : : R E S E R V A T I O N ( v o i d ) E N Q U I R Y ( ) ; c h a r t 1 [ 5 ], p c l a s s, p n a m e [ 2 6 ], p a d d r e s s [ 3 6 ], p s e x, p f l t n o [ 1 0 ] ; i n t t 2, v a l i d, p a g e, t n o, s n o ; P A S S A N G E R p ; t n o = p. L A S T _ T I C K E T N O ( ) + 1 ; d o v a l i d = 1 ; g o t o x y ( 3, 2 3 ) ; c o u t < < " " ; g o t o x y ( 3, 2 3 ) ; c o u t < < " P R E S S < E N T E R > T O E X I T " ; g o t o x y ( 3, 2 0 ) ; c o u t < < " " ; g o t o x y ( 3, 2 0 ) ; c o u t < < " E n t e r S n o. o f t h e F L I G H T : " ; g e t s ( t 1 ) ; t 2 = a t o i ( t 1 ) ; s n o = t 2 ; i f ( s t r l e n ( t 1 ) = = 0 ) r e t u r n ; i f ( s n o < 1 s n o > 1 2 ) v a l i d = 0 ; g o t o x y ( 3, 2 3 ) ; c o u t < < " " ; g o t o x y ( 3, 2 3 ) ; c o u t < < " \ 7 E N T E R C O R R E C T L Y " ; g e t c h ( ) ; w h i l e (! v a l i d ) ; i n t i = 1 ; f s t r e a m f i l e ; f i l e. o p e n ( " T I C K E T. D A T ", i o s : : i n ) ; w h i l e ( f i l e. r e a d ( ( c h a r * ) t h i s, s i z e o f ( T I C K E T ) ) ) i f ( s n o = = i ) b r e a k ; i + + ; s t r c p y ( p f l t n o, f l t n o ) ;

12 i f ( p. S E A T S ( s n o ) > = ) g o t o x y ( 5, 2 1 ) ; c o u t < < " \ 7 S o r r y! S e a t s a r e n o t a v a i l a b l e. " ; g e t c h ( ) ; r e t u r n ; g o t o x y ( 3, 2 3 ) ; c o u t < < " " ; g o t o x y ( 3, 2 3 ) ; c o u t < < " E = E C O N O M I C, X = E X E C U T I V E o r P R E S S < E N T E R > T O E X I T " ; d o g o t o x y ( 3, 2 1 ) ; c o u t < < " " ; g o t o x y ( 3, 2 1 ) ; c o u t < < " B y w h i c h C l a s s y o u w a n t t o t r a v e l : " ; p c l a s s = g e t c h e ( ) ; p c l a s s = t o u p p e r ( p c l a s s ) ; i f ( p c l a s s = = 1 3 ) r e t u r n ; w h i l e ( p c l a s s! = ' E ' & & p c l a s s! = ' X ' ) ; g o t o x y ( 7 2, 3 ) ; c o u t < < " < 0 > = E X I T " ; g o t o x y ( 3 4, 2 ) ; c o u t < < " R E S E R V A T I O N " ; g o t o x y ( 5, 5 ) ; c o u t < < " N A M E : " ; g o t o x y ( 5, 6 ) ; c o u t < < " A D D R E S S : " ; g o t o x y ( 5, 7 ) ; c o u t < < " S E X M / F : " ; g o t o x y ( 5, 8 ) ; c o u t < < " A G E : " ; d o v a l i d = 1 ; g o t o x y ( 5, 2 5 ) ; c l r e o l ( ) ; c o u t < < " E N T E R N A M E O F T H E P A S S A N G E R " ; g o t o x y ( 1 5, 5 ) ; c l r e o l ( ) ; g e t s ( p n a m e ) ; i f ( p n a m e [ 0 ] = = ' 0 ' ) r e t u r n ; i f ( s t r l e n ( p n a m e ) < 1 s t r l e n ( p n a m e ) > 2 5 ) v a l i d = 0 ; g o t o x y ( 5, 2 5 ) ; c l r e o l ( ) ; c o u t < < " \ 7 E n t e r C o r r e c t l y ( R a n g e : ) " ;

13 g e t c h ( ) ; w h i l e (! v a l i d ) ; d o v a l i d = 1 ; g o t o x y ( 5, 2 5 ) ; c l r e o l ( ) ; c o u t < < " E N T E R A D D R E S S O F T H E P A S S A N G E R " ; g o t o x y ( 1 5, 6 ) ; c l r e o l ( ) ; g e t s ( p a d d r e s s ) ; i f ( p a d d r e s s [ 0 ] = = ' 0 ' ) r e t u r n ; i f ( s t r l e n ( p a d d r e s s ) < 1 s t r l e n ( p a d d r e s s ) > 3 5 ) v a l i d = 0 ; g o t o x y ( 5, 2 5 ) ; c l r e o l ( ) ; c o u t < < " \ 7 E n t e r C o r r e c t l y ( R a n g e : ) " ; g e t c h ( ) ; w h i l e (! v a l i d ) ; d o g o t o x y ( 5, 2 5 ) ; c l r e o l ( ) ; c o u t < < " E N T E R S E X O F T H E P A S S A N G E R " ; g o t o x y ( 1 5, 7 ) ; c l r e o l ( ) ; p s e x = g e t c h e ( ) ; p s e x = t o u p p e r ( p s e x ) ; i f ( p s e x = = ' 0 ' ) r e t u r n ; w h i l e ( p s e x! = ' M ' & & p s e x! = ' F ' ) ; d o v a l i d = 1 ; g o t o x y ( 5, 2 5 ) ; c l r e o l ( ) ; c o u t < < " E N T E R A G E O F T H E P A S S A N G E R " ; g o t o x y ( 1 5, 8 ) ; c l r e o l ( ) ; g e t s ( t 1 ) ; t 2 = a t o i ( t 1 ) ; p a g e = t 2 ; i f ( t 1 [ 0 ] = = ' 0 ' ) r e t u r n ; i f ( p a g e < 1 p a g e > ) v a l i d = 0 ; g o t o x y ( 5, 2 5 ) ; c l r e o l ( ) ; c o u t < < " \ 7 E N T E R C O R R E C T L Y " ; g e t c h ( ) ; w h i l e (! v a l i d ) ;

14 D R A W d ; d. B O X ( 1 5, 5, 6 6, 2 1, ' * ' ) ; d. L I N E _ H O R ( 1 6, 6 5, 7, ' * ' ) ; g o t o x y ( 3 3, 6 ) ; c o u t < < " T i c k e t n o. " < < t n o ; g o t o x y ( 1 7, 9 ) ; c o u t < < f r o m < < " t o " < < t o ; g o t o x y ( 4 5, 9 ) ; c o u t < < " F l i g h t n o. " < < p f l t n o ; g o t o x y ( 2 0, 1 1 ) ; c o u t < < " P a s s a n g e r N a m e : " < < p n a m e ; g o t o x y ( 2 0, 1 3 ) ; c o u t < < " A d d r e s s : " < < p a d d r e s s ; g o t o x y ( 2 0, 1 5 ) ; c o u t < < " S e x : " < < p s e x ; g o t o x y ( 2 0, 1 7 ) ; c o u t < < " A g e : " < < p a g e ; g o t o x y ( 4 5, 1 9 ) ; i f ( p c l a s s = = ' E ' ) c o u t < < " T o t a l F a i r : " < < e c o f a i r ; e l s e c o u t < < " T o t a l F a i r : " < < e x e f a i r ; p. A D D _ R E C O R D ( t n o, s n o, p n a m e, p a d d r e s s, p a g e, p s e x, p c l a s s ) ; g e t c h ( ) ; / / F U N C T I O N T O A D D T H E G I V E N D A T A I N T H E P A S S A N G E R ' S F I L E v o i d P A S S A N G E R : : A D D _ R E C O R D ( i n t t n o, i n t s n o, c h a r p n a m e [ 2 6 ], c h a r p a d d r e s s [ 3 6 ], i n t p a g e, c h a r p s e x, c h a r p c l a s s ) f s t r e a m f i l e ; f i l e. o p e n ( " P A S S. D A T ", i o s : : a p p ) ; t i c k e t n o = t n o ; s l n o = s n o ; s t r c p y ( n a m e, p n a m e ) ; s t r c p y ( a d d r e s s, p a d d r e s s ) ; a g e = p a g e ; s e x = p s e x ; C l a s s = p c l a s s ; f i l e. w r i t e ( ( c h a r * ) t h i s, s i z e o f ( P A S S A N G E R ) ) ;

15 / / T H I S F U N C T I O N R E T U R N T H E L A S T T I C K E T N O. I N T H E P A S S A N G E R / / F I L E i n t P A S S A N G E R : : L A S T _ T I C K E T N O ( v o i d ) f s t r e a m f i l e ; f i l e. o p e n ( " P A S S. D A T ", i o s : : i n ) ; i n t c o u n t = 0 ; w h i l e ( f i l e. r e a d ( ( c h a r * ) t h i s, s i z e o f ( P A S S A N G E R ) ) ) c o u n t = t i c k e t n o ; r e t u r n c o u n t ; / / T H I S F U N C T I O N R E T U R N T O T A L N O. O F S E A T S I N T H E P A S S A N G E R / / F I L E i n t P A S S A N G E R : : S E A T S ( i n t s n o ) f s t r e a m f i l e ; f i l e. o p e n ( " P A S S. D A T ", i o s : : i n ) ; i n t c o u n t = 0 ; w h i l e ( f i l e. r e a d ( ( c h a r * ) t h i s, s i z e o f ( P A S S A N G E R ) ) ) i f ( s n o = = s l n o ) c o u n t + + ; r e t u r n c o u n t ; / / T H I S F U N C T I O N R E T U R N 0 I F T H E T I C K E T N O. N O T F O U N D I N / / P A S S A N G E R ' S F I L E i n t P A S S A N G E R : : F O U N D ( i n t t n o ) f s t r e a m f i l e ; f i l e. o p e n ( " P A S S. D A T ", i o s : : i n ) ;

16 i n t f o u n d = 0 ; w h i l e ( f i l e. r e a d ( ( c h a r * ) t h i s, s i z e o f ( P A S S A N G E R ) ) ) i f ( t n o = = t i c k e t n o ) f o u n d = 1 ; b r e a k ; r e t u r n f o u n d ; / / T H I S F U N C T I O N R E T U R N S P A S S A N G E R ' S N A M E F O R T H E G I V E N / / T I C K E T N O. c h a r * P A S S A N G E R : : N A M E ( i n t t n o ) f s t r e a m f i l e ; f i l e. o p e n ( " P A S S. D A T ", i o s : : i n ) ; w h i l e ( f i l e. r e a d ( ( c h a r * ) t h i s, s i z e o f ( P A S S A N G E R ) ) ) i f ( t n o = = t i c k e t n o ) b r e a k ; r e t u r n n a m e ; / / T H I S F U N C T I O N D I S P L A Y T H E L I S T O F T H E P A S S A N G E R S v o i d P A S S A N G E R : : L I S T ( v o i d ) c h a r t 1 [ 1 0 ] ; i n t t 2, s n o, v a l i d ; T I C K E T t i c k e t ; t i c k e t. E N Q U I R Y ( ) ;

17 d o v a l i d = 1 ; g o t o x y ( 3, 2 3 ) ; c o u t < < " " ; g o t o x y ( 3, 2 3 ) ; c o u t < < " P R E S S < E N T E R > T O E X I T " ; g o t o x y ( 3, 2 0 ) ; c o u t < < " " ; g o t o x y ( 3, 2 0 ) ; c o u t < < " E n t e r S n o. o f t h e F L I G H T f o r w h i c h y o u w a n t t o s e e l i s t o f p a s s a n g e r " ; g e t s ( t 1 ) ; t 2 = a t o i ( t 1 ) ; s n o = t 2 ; i f ( s t r l e n ( t 1 ) = = 0 ) r e t u r n ; i f ( s n o < 1 s n o > 1 2 ) v a l i d = 0 ; g o t o x y ( 3, 2 3 ) ; c o u t < < " " ; g o t o x y ( 3, 2 3 ) ; c o u t < < " \ 7 E N T E R C O R R E C T L Y " ; g e t c h ( ) ; w h i l e (! v a l i d ) ; i n t r o w = 7, f o u n d = 0, f l a g = 0 ; c h a r c h ; D R A W d ; d. B O X ( 1, 2, 8 0, 2 4, ) ; d. L I N E _ H O R ( 2, 7 9, 4, ) ; d. L I N E _ H O R ( 2, 7 9, 6, ) ; d. L I N E _ H O R ( 2, 7 9, 2 2, ) ; g o t o x y ( 3, 3 ) ; c o u t < < " F l i g h t n o. " < < t i c k e t. F L I G H T N O ( s n o ) ; g o t o x y ( 3 2, 3 ) ; c o u t < < " L I S T O F P A S S A N G E R " ; t e x t c o l o r ( B L A C K ) ; t e x t b a c k g r o u n d ( W H I T E ) ; g o t o x y ( 2, 5 ) ; c p r i n t f ( " T I C K E T N O. N A M E C L A S S " ) ; t e x t c o l o r ( L I G H T G R A Y ) ; t e x t b a c k g r o u n d ( B L A C K ) ; f s t r e a m f i l e ; f i l e. o p e n ( " P A S S. D A T ", i o s : : i n ) ; f i l e. s e e k g ( 0, i o s : : b e g ) ; w h i l e ( f i l e. r e a d ( ( c h a r * ) t h i s, s i z e o f ( P A S S A N G E R ) ) )

18 i f ( s n o = = s l n o ) f l a g = 0 ; d e l a y ( 2 0 ) ; f o u n d = 1 ; g o t o x y ( 5, r o w ) ; c o u t < < t i c k e t n o ; g o t o x y ( 1 7, r o w ) ; c o u t < < n a m e ; g o t o x y ( 4 9, r o w ) ; i f ( C l a s s = = ' X ' ) c o u t < < " E x e c u t i v e " ; e l s e c o u t < < " E c o n o m i c " ; i f ( r o w = = 2 1 ) f l a g = 1 ; r o w = 7 ; g o t o x y ( 5, 2 3 ) ; c o u t < < " P r e s s a n y k e y t o c o n t i n u e o r P r e s s < E S C > t o e x i t " ; c h = g e t c h ( ) ; i f ( c h = = 2 7 ) b r e a k ; d. B O X ( 1, 2, 8 0, 2 4, ) ; d. L I N E _ H O R ( 2, 7 9, 4, ) ; d. L I N E _ H O R ( 2, 7 9, 6, ) ; d. L I N E _ H O R ( 2, 7 9, 2 2, ) ; g o t o x y ( 3 2, 3 ) ; c o u t < < " L I S T O F P A S S A N G E R " ; t e x t c o l o r ( B L A C K ) ; t e x t b a c k g r o u n d ( W H I T E ) ; g o t o x y ( 2, 5 ) ; c p r i n t f ( " T I C K E T N O. N A M E F L I G H T N O. C L A S S " ) ; t e x t c o l o r ( L I G H T G R A Y ) ; t e x t b a c k g r o u n d ( B L A C K ) ; e l s e r o w + + ; i f (! f o u n d ) g o t o x y ( 5, 1 0 ) ; c o u t < < " \ 7 R e c o r d s n o t f o u n d " ; i f (! f l a g ) g o t o x y ( 5, 2 3 ) ; c o u t < < " P r e s s a n y k e y t o c o n t i n u e... " ;

19 g e t c h ( ) ; / / T H I S F U N C T I O N D E L E T E S P A S S A N G E R R E C O R D S F O R T H E G I V E N / / T I C K E T N O. v o i d P A S S A N G E R : : D E L E T E _ T I C K E T ( i n t t n o ) f s t r e a m f i l e ; f i l e. o p e n ( " P A S S. D A T ", i o s : : i n ) ; f s t r e a m t e m p ; t e m p. o p e n ( " t e m p. d a t ", i o s : : o u t ) ; f i l e. s e e k g ( 0, i o s : : b e g ) ; w h i l e (! f i l e. e o f ( ) ) f i l e. r e a d ( ( c h a r * ) t h i s, s i z e o f ( P A S S A N G E R ) ) ; i f ( f i l e. e o f ( ) ) b r e a k ; i f ( t n o! = t i c k e t n o ) t e m p. w r i t e ( ( c h a r * ) t h i s, s i z e o f ( P A S S A N G E R ) ) ; t e m p. c l o s e ( ) ; f i l e. o p e n ( " P A S S. D A T ", i o s : : o u t ) ; t e m p. o p e n ( " t e m p. d a t ", i o s : : i n ) ; t e m p. s e e k g ( 0, i o s : : b e g ) ; w h i l e (! t e m p. e o f ( ) ) t e m p. r e a d ( ( c h a r * ) t h i s, s i z e o f ( P A S S A N G E R ) ) ; i f ( t e m p. e o f ( ) ) b r e a k ; f i l e. w r i t e ( ( c h a r * ) t h i s, s i z e o f ( P A S S A N G E R ) ) ; t e m p. c l o s e ( ) ; / / T H I S F U N C T I O N D E L E T E S A L L P A S S A N G E R R E C O R D S F O R T H E G I V E N / / F L I G H T N O.

20 i n t P A S S A N G E R : : D E L E T E _ F L I G H T ( i n t s n o ) f s t r e a m f i l e ; f i l e. o p e n ( " P A S S. D A T ", i o s : : i n ) ; f s t r e a m t e m p ; t e m p. o p e n ( " t e m p. d a t ", i o s : : o u t ) ; f i l e. s e e k g ( 0, i o s : : b e g ) ; i n t f o u n d = 0 ; w h i l e (! f i l e. e o f ( ) ) f i l e. r e a d ( ( c h a r * ) t h i s, s i z e o f ( P A S S A N G E R ) ) ; i f ( f i l e. e o f ( ) ) b r e a k ; i f ( s n o! = s l n o ) t e m p. w r i t e ( ( c h a r * ) t h i s, s i z e o f ( P A S S A N G E R ) ) ; e l s e f o u n d = 1 ; t e m p. c l o s e ( ) ; f i l e. o p e n ( " P A S S. D A T ", i o s : : o u t ) ; t e m p. o p e n ( " t e m p. d a t ", i o s : : i n ) ; t e m p. s e e k g ( 0, i o s : : b e g ) ; w h i l e (! t e m p. e o f ( ) ) t e m p. r e a d ( ( c h a r * ) t h i s, s i z e o f ( P A S S A N G E R ) ) ; i f ( t e m p. e o f ( ) ) b r e a k ; f i l e. w r i t e ( ( c h a r * ) t h i s, s i z e o f ( P A S S A N G E R ) ) ; t e m p. c l o s e ( ) ; r e t u r n f o u n d ; / / T H I S F U N C T I O N C A N C E L S P A S S A N G E R ' S T I C K E T v o i d R E S E R V E : : C A N C E L L A T I O N ( v o i d ) c h a r t 1 [ 1 0 ], c h ; i n t t 2, t n o, v a l i d ; d o v a l i d = 1 ; g o t o x y ( 3, 2 3 ) ; c l r e o l ( ) ; c o u t < < " P R E S S < E N T E R > T O S E E L I S T o r 0 T O E X I T " ;

21 g o t o x y ( 3, 2 0 ) ; c l r e o l ( ) ; c o u t < < " E n t e r T i c k e t n o. o f t h e P a s s a n g e r t o c a n c e l t h e T i c k e t " ; g e t s ( t 1 ) ; t 2 = a t o i ( t 1 ) ; t n o = t 2 ; i f ( t 1 [ 0 ] = = ' 0 ' ) r e t u r n ; i f ( s t r l e n ( t 1 ) = = 0 ) v a l i d = 0 ; L I S T ( ) ; i f (! F O U N D ( t n o ) & & v a l i d ) v a l i d = 0 ; g o t o x y ( 3, 2 3 ) ; c l r e o l ( ) ; c o u t < < " \ 7 R e c o r d n o t f o u n d " ; g e t c h ( ) ; w h i l e (! v a l i d ) ; f s t r e a m f i l e ; f i l e. o p e n ( " P A S S. D A T ", i o s : : i n ) ; w h i l e ( f i l e. r e a d ( ( c h a r * ) t h i s, s i z e o f ( P A S S A N G E R ) ) ) i f ( t i c k e t n o = = t n o ) b r e a k ; i n t i = 1 ; f i l e. o p e n ( " T I C K E T. D A T ", i o s : : i n ) ; w h i l e ( f i l e. r e a d ( ( c h a r * ) t h i s, s i z e o f ( T I C K E T ) ) ) i f ( s l n o = = i ) b r e a k ; i + + ; P A S S A N G E R p ; D R A W d ; d. B O X ( 1 5, 5, 6 6, 2 1, ' * ' ) ; d. L I N E _ H O R ( 1 6, 6 5, 7, ' * ' ) ; g o t o x y ( 3 3, 6 ) ; c o u t < < " T i c k e t n o. " < < t n o ; g o t o x y ( 1 7, 9 ) ; c o u t < < f r o m < < " t o " < < t o ; g o t o x y ( 4 5, 9 ) ; c o u t < < " F l i g h t n o. " < < f l t n o ; g o t o x y ( 2 0, 1 1 ) ; c o u t < < " P a s s a n g e r N a m e : " < < p. N A M E ( t n o ) ;

22 g o t o x y ( 2 0, 1 3 ) ; c o u t < < " A d d r e s s : " < < a d d r e s s ; g o t o x y ( 2 0, 1 5 ) ; c o u t < < " S e x : " < < s e x ; g o t o x y ( 2 0, 1 7 ) ; c o u t < < " A g e : " < < a g e ; g o t o x y ( 4 5, 1 9 ) ; i f ( C l a s s = = ' E ' ) c o u t < < " T o t a l F a i r : " < < e c o f a i r ; e l s e c o u t < < " T o t a l F a i r : " < < e x e f a i r ; d o g o t o x y ( 1 0, 2 3 ) ; c l r e o l ( ) ; c o u t < < " C a n c e l t h i s t i c k e t ( y / n ) : " ; c h = g e t c h e ( ) ; c h = t o u p p e r ( c h ) ; w h i l e ( c h! = ' Y ' & & c h! = ' N ' ) ; i f ( c h = = ' N ' ) r e t u r n ; D E L E T E _ T I C K E T ( t n o ) ; g o t o x y ( 1 0, 2 5 ) ; c o u t < < " \ 7 T i c k e t C a n c e l l e d " ; g e t c h ( ) ; / / T H I S F U N C T I O N D I S P L A Y T H E P A S S A N G E R ' S I N F O R M A T I O N v o i d R E S E R V E : : D I S P L A Y _ T I C K E T ( v o i d ) c h a r t 1 [ 1 0 ], c h ; i n t t 2, t n o, v a l i d ; d o v a l i d = 1 ; g o t o x y ( 3, 2 3 ) ; c l r e o l ( ) ; c o u t < < " P R E S S < E N T E R > T O S E E L I S T o r 0 T O E X I T " ; g o t o x y ( 3, 2 0 ) ; c l r e o l ( ) ; c o u t < < " E n t e r T i c k e t n o. o f t h e P a s s a n g e r " ; g e t s ( t 1 ) ; t 2 = a t o i ( t 1 ) ; t n o = t 2 ; i f ( t 1 [ 0 ] = = ' 0 ' ) r e t u r n ; i f ( s t r l e n ( t 1 ) = = 0 )

23 v a l i d = 0 ; L I S T ( ) ; i f (! F O U N D ( t n o ) & & v a l i d ) v a l i d = 0 ; g o t o x y ( 3, 2 3 ) ; c l r e o l ( ) ; c o u t < < " \ 7 R e c o r d n o t f o u n d " ; g e t c h ( ) ; w h i l e (! v a l i d ) ; f s t r e a m f i l e ; f i l e. o p e n ( " P A S S. D A T ", i o s : : i n ) ; w h i l e ( f i l e. r e a d ( ( c h a r * ) t h i s, s i z e o f ( P A S S A N G E R ) ) ) i f ( t i c k e t n o = = t n o ) b r e a k ; i n t i = 1 ; f i l e. o p e n ( " T I C K E T. D A T ", i o s : : i n ) ; w h i l e ( f i l e. r e a d ( ( c h a r * ) t h i s, s i z e o f ( T I C K E T ) ) ) i f ( s l n o = = i ) b r e a k ; i + + ; P A S S A N G E R p ; D R A W d ; d. B O X ( 1 5, 5, 6 6, 2 1, ' * ' ) ; d. L I N E _ H O R ( 1 6, 6 5, 7, ' * ' ) ; g o t o x y ( 3 3, 6 ) ; c o u t < < " T i c k e t n o. " < < t n o ; g o t o x y ( 1 7, 9 ) ; c o u t < < f r o m < < " t o " < < t o ; g o t o x y ( 4 5, 9 ) ; c o u t < < " F l i g h t n o. " < < f l t n o ; g o t o x y ( 2 0, 1 1 ) ; c o u t < < " P a s s a n g e r N a m e : " < < p. N A M E ( t n o ) ; g o t o x y ( 2 0, 1 3 ) ; c o u t < < " A d d r e s s : " < < a d d r e s s ; g o t o x y ( 2 0, 1 5 ) ; c o u t < < " S e x : " < < s e x ; g o t o x y ( 2 0, 1 7 ) ; c o u t < < " A g e : " < < a g e ; g o t o x y ( 4 5, 1 9 ) ; i f ( C l a s s = = ' E ' ) c o u t < < " T o t a l F a i r : " < < e c o f a i r ;

24 e l s e c o u t < < " T o t a l F a i r : " < < e x e f a i r ; g o t o x y ( 1 0, 2 5 ) ; c o u t < < " P r e s s a n y k e y t o c o n t i n u e... " ; g e t c h ( ) ; / / T H I S F U N C T I O N G I V E F L I G H T N O. T O D E L E T E A L L P A S S A N G E R / / R E C O R D S v o i d R E S E R V E : : D E L E T E _ A L L ( v o i d ) E N Q U I R Y ( ) ; c h a r t 1 [ 5 ] ; i n t t 2, v a l i d, s n o ; d o v a l i d = 1 ; g o t o x y ( 3, 2 3 ) ; c o u t < < " " ; g o t o x y ( 3, 2 3 ) ; c o u t < < " P R E S S < E N T E R > T O E X I T " ; g o t o x y ( 3, 2 0 ) ; c o u t < < " " ; g o t o x y ( 3, 2 0 ) ; c o u t < < " E n t e r S n o. o f t h e F L I G H T f o r w h i c h a l l p a s s a n g e r r e c o r d s t o b e d e l e t e d : " ; g e t s ( t 1 ) ; t 2 = a t o i ( t 1 ) ; s n o = t 2 ; i f ( s t r l e n ( t 1 ) = = 0 ) r e t u r n ; i f ( s n o < 1 s n o > 1 2 ) v a l i d = 0 ; g o t o x y ( 3, 2 3 ) ; c o u t < < " " ; g o t o x y ( 3, 2 3 ) ; c o u t < < " \ 7 E N T E R C O R R E C T L Y " ; g e t c h ( ) ; w h i l e (! v a l i d ) ; g o t o x y ( 3, 2 3 ) ; i f (! D E L E T E _ F L I G H T ( s n o ) )

25 c o u t < < " \ 7 R e c o r d s n o t f o u n d. P r e s s a n y k e y t o c o n t i n u e... " ; e l s e c o u t < < " \ 7 R e c o r d s d e l e t e d. P r e s s a n y k e y t o c o n t i n u e... " ; g e t c h ( ) ; / / T H I S I S M A I N F U N C T I O N W H I C H D I S P L A Y M E N U A N D C A L L S A L L / / T H E M A I N F U N C T I O N S v o i d m a i n ( v o i d ) D R A W d ; P A S S A N G E R p ; T I C K E T t i c k e t ; R E S E R V E r ; t i c k e t. A D D I T I O N ( ) ; c h a r c h ; w h i l e ( 1 ) d. B O X ( 1 9, 6, 6 2, 2 0, ) ; t e x t c o l o r ( B L A C K ) ; t e x t b a c k g r o u n d ( W H I T E ) ; f o r ( i n t i = 7 ; i < = 1 9 ; i + + ) f o r ( i n t j = 2 0 ; j < = 6 1 ; j + + ) g o t o x y ( j, i ) ; c p r i n t f ( " " ) ; g o t o x y ( 2 9, 9 ) ; c p r i n t f ( " I N D I A N A I R L I N E S " ) ; g o t o x y ( 2 9, 1 0 ) ; c p r i n t f ( " ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ " ) ; g o t o x y ( 3 0, 1 1 ) ; c p r i n t f ( " 1 : R E S E R V A T I O N " ) ; g o t o x y ( 3 0, 1 2 ) ; c p r i n t f ( " 2 : C A N C E L L A T I O N " ) ; g o t o x y ( 3 0, 1 3 ) ; c p r i n t f ( " 3 : P A S S E N G E R R E C O R D S " ) ; g o t o x y ( 3 0, 1 4 ) ; c p r i n t f ( " 4 : E N Q U I R Y " ) ; g o t o x y ( 3 0, 1 5 ) ; c p r i n t f ( " 5 : L I S T O F P A S S E N G E R S " ) ; g o t o x y ( 3 0, 1 6 ) ;

26 c p r i n t f ( " 6 : Q U I T " ) ; g o t o x y ( 3 0, 1 8 ) ; c p r i n t f ( " E N T E R Y O U R C H O I C E " ) ; c h = g e t c h e ( ) ; t e x t c o l o r ( L I G H T G R A Y ) ; t e x t b a c k g r o u n d ( B L A C K ) ; i f ( c h = = 2 7 c h = = ' 6 ' ) b r e a k ; e l s e i f ( c h = = ' 1 ' ) r. R E S E R V A T I O N ( ) ; i f ( c h = = ' 2 ' ) r. C A N C E L L A T I O N ( ) ; i f ( c h = = ' 4 ' ) t i c k e t. E N Q U I R Y ( ) ; g o t o x y ( 2, 2 3 ) ; c o u t < < " P r e s s a n y k e y t o c o n t i n u e... " ; g e t c h ( ) ; e l s e i f ( c h = = ' 5 ' ) p. L I S T ( ) ; e l s e i f ( c h = = ' 3 ' ) w h i l e ( 1 ) d. B O X ( 1 9, 6, 6 2, 2 0, ) ; t e x t c o l o r ( B L A C K ) ; t e x t b a c k g r o u n d ( W H I T E ) ; f o r ( i n t i = 7 ; i < = 1 9 ; i + + ) f o r ( i n t j = 2 0 ; j < = 6 1 ; j + + ) g o t o x y ( j, i ) ; c p r i n t f ( " " ) ; g o t o x y ( 2 9, 1 0 ) ; c p r i n t f ( " E D I T P A S S E N G E R R E C O R D S " ) ; g o t o x y ( 2 9, 1 1 ) ; c p r i n t f ( " ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ " ) ; g o t o x y ( 3 3, 1 2 ) ; c p r i n t f ( " 1 : P A S S A N G E R I N F O R M A T I O N " ) ; g o t o x y ( 3 3, 1 3 ) ; c p r i n t f ( " 2 : D E L E T E " ) ; g o t o x y ( 3 3, 1 4 ) ; c p r i n t f ( " 0 : E X I T " ) ;

27 g o t o x y ( 3 1, 1 6 ) ; c p r i n t f ( " E N T E R Y O U R C H O I C E " ) ; c h = g e t c h e ( ) ; t e x t c o l o r ( L I G H T G R A Y ) ; t e x t b a c k g r o u n d ( B L A C K ) ; i f ( c h = = 2 7 c h = = ' 0 ' ) b r e a k ; e l s e i f ( c h = = ' 1 ' ) r. D I S P L A Y _ T I C K E T ( ) ; e l s e i f ( c h = = ' 2 ' ) r. D E L E T E _ A L L ( ) ;

28

29

30

31

32

33

34

MATHEMATICAL MODELLING OF DISPERSION OF AIR POLLUTANTS IN LOW WIND CONDITIONS

MATHEMATICAL MODELLING OF DISPERSION OF AIR POLLUTANTS IN LOW WIND CONDITIONS MATHEMATICAL MODELLING OF DISPERSION OF AIR POLLUTANTS IN LOW WIND CONDITIONS by ANIL KUMAR YADAV Thesis submitted to the Indian Institute of Technology, Delhi for the award of the degree of DOCTOR OF

More information

MATHEMATICS. MINIMUM LEVEL MATERIAL for CLASS XII Project Planned By. Honourable Shri D. Manivannan Deputy Commissioner,KVS RO Hyderabad

MATHEMATICS. MINIMUM LEVEL MATERIAL for CLASS XII Project Planned By. Honourable Shri D. Manivannan Deputy Commissioner,KVS RO Hyderabad MATHEMATICS MINIMUM LEVEL MATERIAL for CLASS XII 06 7 Project Planned By Honourable Shri D. Manivannan Deputy Commissioner,KVS RO Hyderabad Prepared by M. S. KUMARSWAMY, TGT(MATHS) M. Sc. Gold Medallist

More information

PHYSICS CHAPTER WISE FORMULAS NCERT PDF

PHYSICS CHAPTER WISE FORMULAS NCERT PDF PHYSICS CHAPTER WISE FORMULAS NCERT PDF ==> Download: PHYSICS CHAPTER WISE FORMULAS NCERT PDF PHYSICS CHAPTER WISE FORMULAS NCERT PDF - Are you searching for Physics Chapter Wise Formulas Ncert Books?

More information

VIBRATORY STRESS ANALYSIS AND FATIGUE LIFE ESTIMATION OF TURBINE BLADE

VIBRATORY STRESS ANALYSIS AND FATIGUE LIFE ESTIMATION OF TURBINE BLADE VIBRATORY STRESS ANALYSIS AND FATIGUE LIFE ESTIMATION OF TURBINE BLADE By NALINAKSH S. VYAS A Thesis Submitted in fulfilment of the requirments of the degree of DOCTOR OF PHILOSOPHY. Z a xi UTE OR r o

More information

A THESIS. Submitted by MAHALINGA V. MANDI. for the award of the degree of DOCTOR OF PHILOSOPHY

A THESIS. Submitted by MAHALINGA V. MANDI. for the award of the degree of DOCTOR OF PHILOSOPHY LINEAR COMPLEXITY AND CROSS CORRELATION PROPERTIES OF RANDOM BINARY SEQUENCES DERIVED FROM DISCRETE CHAOTIC SEQUENCES AND THEIR APPLICATION IN MULTIPLE ACCESS COMMUNICATION A THESIS Submitted by MAHALINGA

More information

K.V. NO-2 BAILEY ROAD PATNA-14 Highest Name of the Principal

K.V. NO-2 BAILEY ROAD PATNA-14 Highest Name of the Principal Sl. No. Name of the KV CBSE School code Affiliation number K.V. NO-2 BAILEY ROAD PATNA-14 Highest Name of the Principal Class ( XII / X ) XII available streams S C H F Sponsoring Agency 1 Patna No.2 (Bailey

More information

DUST EXPLOSION MODELING USING MECHANISTIC AND PHENOMENOLOGICAL APPROACHES

DUST EXPLOSION MODELING USING MECHANISTIC AND PHENOMENOLOGICAL APPROACHES DUST EXPLOSION MODELING USING MECHANISTIC AND PHENOMENOLOGICAL APPROACHES VIMLESH KUMAR BIND DEPARTMENT OF CHEMICAL ENGINEERING Submitted in fulfillment of the requirements of the degree of DOCTOR OF PHILOSOPHY

More information

MATHEMATICS. MINIMUM LEVEL MATERIAL for CLASS XII Project Planned By. Honourable Shri D. Manivannan Deputy Commissioner,KVS RO Hyderabad

MATHEMATICS. MINIMUM LEVEL MATERIAL for CLASS XII Project Planned By. Honourable Shri D. Manivannan Deputy Commissioner,KVS RO Hyderabad MATHEMATICS MINIMUM LEVEL MATERIAL for CLASS XII 05 6 Project Planned By Honourable Shri D. Manivannan Deputy Commissioner,KVS RO Hyderabad Prepared by M. S. KUMARSWAMY, TGT(MATHS) M. Sc. Gold Medallist

More information

Naming Aldehydes And Ketones Practice

Naming Aldehydes And Ketones Practice Aldehydes And Ketones Free PDF ebook Download: Aldehydes And Ketones Download or Read Online ebook naming aldehydes and ketones practice in PDF Format From The Best User Guide Database 1. REACTIONS OF

More information

Physics Unit 3 Investigative and Practical Skills in AS Physics PHY3T/Q09/test

Physics Unit 3 Investigative and Practical Skills in AS Physics PHY3T/Q09/test Surname Other Names Leave blank Centre Number Candidate Number Candidate Signature General Certificate of Education June 2009 Advanced Subsidiary Examination Physics Unit 3 Investigative and Practical

More information

CLASS XI SCIENCE ENGLISH

CLASS XI SCIENCE ENGLISH MODERN PUBLIC SCHOOL, SHALIMAR BAGH SYLLABUS FOR THE SESSION: 2018-19 CLASS XI SCIENCE ENGLISH Prescribed Books: 1. Hornbill :Textbook in English for class XI Core Course 2. Snapshots : Supplementary Reader

More information

AKU-EB May Examination 2017

AKU-EB May Examination 2017 Page 1 of 1 AGA KHAN UNIVERSITY EXAMINATION BOARD SECONDARY SCHOOL CERTIFICATE CLASS IX EXAMINATION APRIL/ MAY 017 Mathematics Paper I INSTRUCTIONS 1. Read each question carefully. Time: 40 minutes Marks:

More information

FATIGUE BEHAVIOUR OF OFFSHORE STEEL JACKET PLATFORMS

FATIGUE BEHAVIOUR OF OFFSHORE STEEL JACKET PLATFORMS FATIGUE BEHAVIOUR OF OFFSHORE STEEL JACKET PLATFORMS by ASHOK GUPTA THESIS SUBMITTED TO THE INDIAN INSTITUTE OF TECHNOLOGY, DELHI FOR THE AWARD OF THE DEGREE OF DOCTOR OF PHILOSOPHY Department of Civil

More information

CLASS 12 SUBJECT: MATHEMATICS CBSE QUESTION PAPER : 2016 (DELHI PAPER)

CLASS 12 SUBJECT: MATHEMATICS CBSE QUESTION PAPER : 2016 (DELHI PAPER) CLASS 12 SUBJECT: MATHEMATICS CBSE QUESTION PAPER : 2016 (DELHI PAPER) General Instructions: (i) All questions are compulsory. (ii) Questions 1 6 in Section A carrying 1 mark each (iii) Questions 7 19

More information

!!!!!!!!! Tvcnjuufe!cz!!

!!!!!!!!! Tvcnjuufe!cz!! !!!!!!!!! Tvcnjuufe!cz!! Name :... Class :... CERTIFICATE This is to certify that..., Reg. No.... of class XII of GREEN PARK INTERNATIONAL SENIOR SECONDARY SCHOOL has successfully completed his / her project

More information

PHY6T/Q10/test. General Certificate of Education Advanced Level Examination June Investigative and Practical Skills in A2 Physics

PHY6T/Q10/test. General Certificate of Education Advanced Level Examination June Investigative and Practical Skills in A2 Physics Centre Number Surname Other Names Candidate Signature Candidate Number For Teacher s Use Mark Stage 1 Section A 1 General Certificate of Education Advanced Level Examination June 2010 Section B 2 3 4 Physics

More information

Candidate Number. Other Names These questions relate to your investigation of

Candidate Number. Other Names These questions relate to your investigation of Centre Number Surname Section A Candidate Number Other Names These questions relate to your investigation of Notice to Candidate. The work you submit for assessment must be your own. If you copy from someone

More information

PARTICLE SIZE EFFECT FROM MICRO TO NANO ON THE THERMAL AND MECHANICAL PROPERTIES OF POLYMER COMPOSITES

PARTICLE SIZE EFFECT FROM MICRO TO NANO ON THE THERMAL AND MECHANICAL PROPERTIES OF POLYMER COMPOSITES Indian Institute of Technology Delhi (IITD), New Delhi, 2013 PARTICLE SIZE EFFECT FROM MICRO TO NANO ON THE THERMAL AND MECHANICAL PROPERTIES OF POLYMER COMPOSITES by: M.HOSSEIN ALAEI Department of Applied

More information

STUDIES ON PHOTONIC BANDGAP BRAGG FIBERS AND WAVEGUIDES

STUDIES ON PHOTONIC BANDGAP BRAGG FIBERS AND WAVEGUIDES STUDIES ON PHOTONIC BANDGAP BRAGG FIBERS AND WAVEGUIDES by SONALI DASGUPTA Department of Physics Submitted in fulfillment of the requirements of the degree of Doctor of Philosophy to the INDIAN INSTITUTE

More information

FREE VIBRATIONS OF FRAMED STRUCTURES WITH INCLINED MEMBERS

FREE VIBRATIONS OF FRAMED STRUCTURES WITH INCLINED MEMBERS FREE VIBRATIONS OF FRAMED STRUCTURES WITH INCLINED MEMBERS A Thesis submitted in partial fulfillment of the requirements for the degree of Bachelor of Technology in Civil Engineering By JYOTI PRAKASH SAMAL

More information

icbse.com CERTIFICATE

icbse.com CERTIFICATE Project on Saturated Solutions: Measuring Solubility Index 1. Certificate 2. Acknowledgement 3. Objective 4. Introduction 5. Basic concepts 6. Materials and Equipment 7. Experimental Procedure 8. Observation

More information

SECONDARY EDUCATION IN INDIA Progress towards UEE

SECONDARY EDUCATION IN INDIA Progress towards UEE SECONDARY EDUCATION IN INDIA Progress towards UEE FLASH STATISTICS SEMIS 2010-11 th As on 30 September, 2010 PROVISIONAL National University of Educational Planning and Administration 17-B, Sri Aurobindo

More information

Physics Project. Name:- Dabhi Mihir Roll No:- 3 Class:- 12 th (Science-PCB) Topic:- Moving coil galvanometer

Physics Project. Name:- Dabhi Mihir Roll No:- 3 Class:- 12 th (Science-PCB) Topic:- Moving coil galvanometer Physics Project Name:- Dabhi Mihir Roll No:- 3 Class:- 12 th (Science-PCB) Topic:- Moving coil galvanometer M o v i n g C o i l G a l v a n o m e t e r - P h y s i c s P r o j e c t Page 1 Certificate:-

More information

Mathematics Mock Test XII for March 2012 Exams. Candidates must write the set code Roll No. cbsemathspapers.com

Mathematics Mock Test XII for March 2012 Exams. Candidates must write the set code Roll No. cbsemathspapers.com Mathematics Mock Test XII for March 0 Exams Series PRACTICE Code No. 65/I Candidates must write the set code Roll No. on the title page of the answer book MATHEMATICS TIME:HR. M.MARKS: 00 cbsemathspapers.com

More information

Downloaded From: AIM. Measuring the Amount of Acetic Acid In Vinegar by Titration with an Indicator Solution

Downloaded From:  AIM. Measuring the Amount of Acetic Acid In Vinegar by Titration with an Indicator Solution AI easuring the Amount of Acetic Acid In inegar by Titration with an Indicator Solution This is to certify that ohit K.Das of class XII has completed the chemistry project entitled DETERINATION OF AOUNT

More information

FIBONACCI NUMBER AND ITS DISTRIBUTION MODULO 3 k

FIBONACCI NUMBER AND ITS DISTRIBUTION MODULO 3 k FIBONACCI NUMBER AND ITS DISTRIBUTION MODULO 3 k A Project Report submitted by Partial Fulfilment of the Requirements for the Degree of MASTER OF SCIENCE in MATHEMATICS by Rajesh Bishi (Roll Number: 411MA2071)

More information

ECM PROCESS CHARACTERISTICS

ECM PROCESS CHARACTERISTICS ECM PROCESS CHARACTERISTICS A PROJECT SUBMITTED IN PARTIAL FULFILLMENT OF THE REQUIREMENT FOR THE DEGREE OF Bachelor of Technology In Mechanical Engineering Submitted by: ANIL KUMAR MEHER ROLL NO. : 10503046

More information

-fo 一喝INVESTIGATIONS OF THE FLOW OF MULTISIZED HETEROGENEOUS SLURRIES IN STRAIGHT PIPE AND PIPE BENDS

-fo 一喝INVESTIGATIONS OF THE FLOW OF MULTISIZED HETEROGENEOUS SLURRIES IN STRAIGHT PIPE AND PIPE BENDS -fo 一喝INVESTIGATIONS OF THE FLOW OF MULTISIZED HETEROGENEOUS SLURRIES IN STRAIGHT PIPE AND PIPE BENDS by MUKHTAR AHMAD Department of Applied Mechanics Thesis submitted n fu/fi 加 ent of the requirements

More information

GROWTH AND CHARACTERIZATION OF SOME SULPHATE CRYSTALS

GROWTH AND CHARACTERIZATION OF SOME SULPHATE CRYSTALS GROWTH AND CHARACTERIZATION OF SOME SULPHATE CRYSTALS Thesis Submitted to Bharathiar University in the partial fulfillment of the requirements for the award of Degree of DOCTOR OF PHILOSOPHY IN ELECTRONICS

More information

Physics Unit 3 Investigative and Practical Skills in AS Physics PHY3T/P09/test

Physics Unit 3 Investigative and Practical Skills in AS Physics PHY3T/P09/test Surname Other Names Leave blank Centre Number Candidate Number Candidate Signature General Certificate of Education June 2009 Advanced Subsidiary Examination Physics Unit 3 Investigative and Practical

More information

Kendriya Vidyalaya No. 2, Calicut

Kendriya Vidyalaya No. 2, Calicut For Office Use Cat : Reservation : S. G. Child : Documents Submitted 1. DOB : 2. Service Certificate : 3. Transfer Details : 4. Residence Proof : 5. Caste Certificate: 6. Transfer Counts : E Úxp t ± x.

More information

PHY6T/P10/test. General Certificate of Education Advanced Level Examination June Investigative and Practical Skills in A2 Physics

PHY6T/P10/test. General Certificate of Education Advanced Level Examination June Investigative and Practical Skills in A2 Physics Centre Number Surname Other Names Candidate Signature Candidate Number For Teacher s Use Mark Stage 1 Section A 1 General Certificate of Education Advanced Level Examination June 2010 Section B 2 3 4 Physics

More information

NEET-II 2016 Preparation Tips

NEET-II 2016 Preparation Tips NEET-II 2016 Preparation Tips All India Pre Medical/Dental Test commonly known as NEET-II 2016 is a medical entrance exam conducted on national level by CBSE (Central Board of Secondary Education) for

More information

CBSE Board Paper Foreign 2013

CBSE Board Paper Foreign 2013 CBSE Board Paper Foreign 03 Set - I Time: 3 Hours Max Marks: 00 General Instructions (i) All questions are compulsory (ii) The question paper consists of 9 questions divided into three sections A, B and

More information

INDIAN INSTITUTE OF TROPICAL METEOROLOGY, PUNE Advertisement No. PER/ 09 /2010 Opportunities for Talented Young Scientists in Climate Science

INDIAN INSTITUTE OF TROPICAL METEOROLOGY, PUNE Advertisement No. PER/ 09 /2010 Opportunities for Talented Young Scientists in Climate Science INDIAN INSTITUTE OF TROPICAL METEOROLOGY, PUNE411008 (An Autonomous Institute under Ministry of Earth Sciences, Government of India) Advertisement No. PER/ 09 /2010 Opportunities for Talented Young Scientists

More information

INDIAN INSTITUTE OF TECHNOLOGY, DELHI

INDIAN INSTITUTE OF TECHNOLOGY, DELHI MATHEMATICAL MODELLING AND ANALYSIS OF RAILWAY PNEUMATIC BRAKE SYSTEM A Thesis submitted in fulfilment of the requirements of the degree of DOCTOR OF PHILOSOPHY by S. BHARATH DEPARTMENT OF MECHANICAL ENGINEERING

More information

KENDRIYA VIDYALAYA. (FS) SUMMATIVE ASSESSMENT- 2,

KENDRIYA VIDYALAYA. (FS) SUMMATIVE ASSESSMENT- 2, KENDRIYA VIDYALAYA. (FS) SUMMATIVE ASSESSMENT- 2, 2014-15 CLASS-III MATHEMATICS TIME- 2HOURS MAX. GRADE- A+ Candidate s Name.. Section Roll No.. Date.. Signature of Invigilator Signature of Checker VALUE

More information

abc Mark Scheme Mathematics 6360 General Certificate of Education 2006 examination - January series MD01 Decision 1

abc Mark Scheme Mathematics 6360 General Certificate of Education 2006 examination - January series MD01 Decision 1 Version 1.0: 0106 General Certificate of Education abc Mathematics 6360 MD01 Decision 1 Mark Scheme 2006 examination - January series Mark schemes are prepared by the Principal Examiner and considered,

More information

PELL S EQUATION NATIONAL INSTITUTE OF TECHNOLOGY ROURKELA, ODISHA

PELL S EQUATION NATIONAL INSTITUTE OF TECHNOLOGY ROURKELA, ODISHA PELL S EQUATION A Project Report Submitted by PANKAJ KUMAR SHARMA In partial fulfillment of the requirements For award of the degree Of MASTER OF SCIENCE IN MATHEMATICS UNDER GUIDANCE OF Prof GKPANDA DEPARTMENT

More information

KENDRIYA VIDYALAYA SANGATHAN BHOPAL REGION MODEL QUESTION PAPER III SUB : MATHEMATICS CLASS XI Time : 3 hours Max Marks : 100 GENERAL INSTRUCTION

KENDRIYA VIDYALAYA SANGATHAN BHOPAL REGION MODEL QUESTION PAPER III SUB : MATHEMATICS CLASS XI Time : 3 hours Max Marks : 100 GENERAL INSTRUCTION KENDRIYA VIDYALAYA SANGATHAN BHOPAL REGION MODEL QUESTION PAPER III SUB : MATHEMATICS CLASS XI Time : 3 hours Max Marks : 100 GENERAL INSTRUCTION 1. All questions are compulsory. 2. The question paper

More information

DIFFRACTIVE OPTICAL ELEMENTS IN SPECKLE METROLOGY AND TEMPERATURE MEASUREMENT

DIFFRACTIVE OPTICAL ELEMENTS IN SPECKLE METROLOGY AND TEMPERATURE MEASUREMENT DIFFRACTIVE OPTICAL ELEMENTS IN SPECKLE METROLOGY AND TEMPERATURE MEASUREMENT By A. J. PRAMILA DANIEL Instrument Design Development Centre THESIS SUBMITTED IN FULFILMENT OF THE REQUIREMENTS OF THE DEGREE

More information

MATHEMATICS QUESTION BANK. for CLASS IX CHAPTER WISE COVERAGE IN THE FORM MCQ WORKSHEETS AND PRACTICE QUESTIONSS.

MATHEMATICS QUESTION BANK. for CLASS IX CHAPTER WISE COVERAGE IN THE FORM MCQ WORKSHEETS AND PRACTICE QUESTIONSS. MATHEMATICS QUESTION BANK for CLASS IX 2017 18 CHAPTER WISE COVERAGE IN THE FORM MCQ WORKSHEETS AND PRACTICE QUESTIONSS Prepared by M. S. KUMARSWAMY, TGT(MATHS) M. Sc. Gold Medallist (Elect.), B. Ed. Kendriya

More information

Balancing And Lucas-balancing Numbers With Real Indices

Balancing And Lucas-balancing Numbers With Real Indices Balancing And Lucas-balancing Numbers With Real Indices A thesis submitted by SEPHALI TANTY Roll No. 413MA2076 for the partial fulfilment for the award of the degree Master Of Science Under the supervision

More information

(Specifications A and B)

(Specifications A and B) Centre Number Surname Candidate Number Other Names For Examiner s Use Notice to Candidate. The work you submit for assessment must be your own. If you copy from someone else or allow another candidate

More information

Mark Scheme. Mathematics General Certificate of Education examination - June series. MM1B Mechanics 1B

Mark Scheme. Mathematics General Certificate of Education examination - June series. MM1B Mechanics 1B Version 1.0: 0606 abc General Certificate of Education Mathematics 6360 MB Mechanics 1B Mark Scheme 006 examination - June series Mark schemes are prepared by the Principal Examiner and considered, together

More information

hij Teacher Resource Bank GCE Physics A Sample AS ISA: Equilibrium of Forces Question Paper

hij Teacher Resource Bank GCE Physics A Sample AS ISA: Equilibrium of Forces Question Paper hij Teacher Resource Bank GCE Physics A Sample AS ISA: Equilibrium of Forces Question Paper Copyright 2008 AQA and its licensors. All rights reserved. The Assessment and Qualifications Alliance (AQA) is

More information

(Specifications A and B)

(Specifications A and B) Centre Number Surname Candidate Number Other Names For Examiner s Use Notice to Candidate. The work you submit for assessment must be your own. If you copy from someone else or allow another candidate

More information

KENDRIYA VIDYALAYA GACHIBOWLI, GPRA CAMPUS, HYD 32

KENDRIYA VIDYALAYA GACHIBOWLI, GPRA CAMPUS, HYD 32 KENDRIYA VIDYALAYA GACHIBOWLI, GPRA CAMPUS, HYD 3 SAMPLE PAPER 06 (018-19) SUBJECT: MATHEMATICS(041) BLUE PRINT : CLASS X Unit Chapter VSA (1 mark) SA I ( marks) SA II (3 marks) LA (4 marks) Total Unit

More information

AN APPROPRIATE LOT SIZING TECHNIQUE FOR INVENTORY POLICY PROBLEM WITH DECREASING DEMAND

AN APPROPRIATE LOT SIZING TECHNIQUE FOR INVENTORY POLICY PROBLEM WITH DECREASING DEMAND AN APPROPRIATE LOT SIZING TECHNIQUE FOR INVENTORY POLICY PROBLEM WITH DECREASING DEMAND A THESIS Submitted in Partial Fulfillment of the Requirement for the Bachelor Degree of Engineering in Industrial

More information

AQA Qualifications. GCSE Mathematics. Paper H Mark scheme H November Final version 1.0

AQA Qualifications. GCSE Mathematics. Paper H Mark scheme H November Final version 1.0 AQA Qualifications GCSE Mathematics Paper 4365H Mark scheme 4365H November 013 Final version 1.0 Mark schemes are prepared by the Lead Assessment Writer and considered, together with the relevant questions,

More information

Cambridge International Examinations Cambridge International Advanced Level

Cambridge International Examinations Cambridge International Advanced Level Cambridge International Examinations Cambridge International Advanced Level *4912978853* PHYSICS 9702/53 Paper 5 Planning, Analysis and Evaluation October/November 2014 1 hour 15 minutes Candidates answer

More information

Astronomy Club and Sky Watch program COSMOS from my terrace

Astronomy Club and Sky Watch program COSMOS from my terrace Astronomy Club and Sky Watch program COSMOS from my terrace Formal inauguration of Astronomy club of our school was organized on 28 September 2013 in the presence of School Chairman Shri. M K G Pillai,

More information

General Certificate of Education Advanced Level Examination June 2014

General Certificate of Education Advanced Level Examination June 2014 General Certificate of Education Advanced Level Examination June 2014 Biology BIO6T/Q14/task Unit 6T A2 Investigative Skills Assignment Task Sheet Introduction Investigating populations You will use leaves

More information

KENDRIYA VIDYALAYA, NAD KARANJA HOLIDAY HOMEWORK- WINTER BREAK STD: X SECTION: A,B,C

KENDRIYA VIDYALAYA, NAD KARANJA HOLIDAY HOMEWORK- WINTER BREAK STD: X SECTION: A,B,C KENDRIYA VIDYALAYA, NAD KARANJA HOLIDAY HOMEWORK- WINTER BREAK 2018-19 STD: X SECTION: A,B,C GENERAL INSTRUCTIONS 1) Attempt all questions Answer the following questions in 120-150 words. 1. What role

More information

Chemistry Theory Paper April Answer

Chemistry Theory Paper April Answer CHEMISTRY THEORY PAPER2 2014 15 APRIL ANSWER PDF - Are you looking for chemistry theory paper2 2014 15 april answer Books? Now, you will be happy that at this time chemistry theory paper2 2014 15 april

More information

KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION CLASS XII-COMMON PRE-BOARD EXAMINATION. Answer key (Mathematics) Section A

KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION CLASS XII-COMMON PRE-BOARD EXAMINATION. Answer key (Mathematics) Section A KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION CLASS XII-COMMON PRE-BOARD EXAMINATION Answer key (Mathematics) Section A. x =. x + y = 6. degree =. π 5. 6. 7. 5 8. x + y + z = 9.. 66 Section B. Proving Reflexive

More information

Candidate Number. Other Names

Candidate Number. Other Names Centre Number Surname Candidate Signature Candidate Number Other Names Notice to Candidate. The work ou submit for assessment must be our own. If ou cop from someone else or allow another candidate to

More information

General Certificate of Education June 2009 Advanced Subsidiary Examination. Investigative Skills Assignment (ISA) Written test

General Certificate of Education June 2009 Advanced Subsidiary Examination. Investigative Skills Assignment (ISA) Written test Surname Centre Number Other Names Candidate Number For Teacher s Use Total ISA mark Candidate Signature General Certificate of Education June 2009 Advanced Subsidiary Examination CHEMISTRY Investigative

More information

NAME.INDEX NUMBER.../..CLASS. 232/2 Candidate s Signature. Physics. MOKASA JOINT EXAMINATION Kenya Certificate of Secondary Education PHYSICS.

NAME.INDEX NUMBER.../..CLASS. 232/2 Candidate s Signature. Physics. MOKASA JOINT EXAMINATION Kenya Certificate of Secondary Education PHYSICS. NAME.INDEX NUMBER.../..CLASS 232/2 Candidate s Signature. Physics Paper 2 Date March /April 2014 2 hours INSTRUCTIONS TO CANDIDATES MOKASA JOINT EXAMINATION Kenya Certificate of Secondary Education PHYSICS

More information

not to be republished NCERT PHYSICS Laboratory Manual Class XI

not to be republished NCERT PHYSICS Laboratory Manual Class XI Laboratory Manual PHYSICS Class XI FOREWORD The National Council of Educational Research and Training (NCERT) is the apex body concerning all aspects of refinement of School Education. It has recently

More information

AIR QUALITY FORECASTING USING MATHEMATICAL MODELS FOR DELHI ANIKENDER KUMAR

AIR QUALITY FORECASTING USING MATHEMATICAL MODELS FOR DELHI ANIKENDER KUMAR AIR QUALITY FORECASTING USING MATHEMATICAL MODELS FOR DELHI by ANIKENDER KUMAR Centre for Atmospheric Sciences Submitted in fulfillment of the requirements of the degree of Doctor of Philosophy to the

More information

Non-fiction: Volcanoes

Non-fiction: Volcanoes Non-fiction: Volcanoes Volcanoes Hot Stuff! Look inside a volcano. Hot liquid rock moves deep underground. A volcano is ready to erupt, or explode. Soon, hot liquid rock flows out. That is called lava.

More information

MATHEMATICS QUESTION BANK. for CLASS X CHAPTER WISE COVERAGE IN THE FORM IMPORTANT FORMULAS & CONCEPTS, MCQ WORKSHEETS AND PRACTICE QUESTIONS

MATHEMATICS QUESTION BANK. for CLASS X CHAPTER WISE COVERAGE IN THE FORM IMPORTANT FORMULAS & CONCEPTS, MCQ WORKSHEETS AND PRACTICE QUESTIONS MATHEMATICS QUESTION BANK for CLASS X 017 18 CHAPTER WISE COVERAGE IN THE FORM IMPORTANT FORMULAS & CONCEPTS, MCQ WORKSHEETS AND PRACTICE QUESTIONS Prepared by M. S. KUMARSWAMY, TGT(MATHS) M. Sc. Gold

More information

Science at KS4 at TDA

Science at KS4 at TDA Science at TDA Science at KS4 at TDA All students study science leading to a minimum of 2 GCSEs. Students will either be following Trilogy (2 GCSE s) or separate GCSE s in Biology, Chemistry and Physics.

More information

For Examiner s Use Total EMPA mark Surname. Candidate. Number. Other Names

For Examiner s Use Total EMPA mark Surname. Candidate. Number. Other Names Centre Number Candidate Number For Examiner s Use Total EMPA mark Surname Other Names Notice to Candidate. The work you submit for assessment must be your own. If you copy from someone else or allow another

More information

abc Mark Scheme Mathematics 6360 General Certificate of Education 2006 examination - January series MPC3 Pure Core 3

abc Mark Scheme Mathematics 6360 General Certificate of Education 2006 examination - January series MPC3 Pure Core 3 Version.0: 006 General Certificate of Education abc Mathematics 660 MPC Pure Core Mark Scheme 006 eamination - January series Mark schemes are prepared by the Principal Eaminer and considered, together

More information

MATHEMATICS OPEN TEXT BASED ASSESSMENT. QUESTION BANK for SA -II CLASS IX

MATHEMATICS OPEN TEXT BASED ASSESSMENT. QUESTION BANK for SA -II CLASS IX MATHEMATICS OPEN TEXT BASED ASSESSMENT QUESTION BANK for SA -II CLASS IX 2015 16 CBSE OPEN TEXT MATERIAL AND CBSE SAMPLE QUESTIONS INCLUDING SOME PROBABLE QUESTIONS THEME WISE Prepared by M. S. KUMARSWAMY,

More information

DEVELOPMENT OF ACID-BASE INDICATOR FROM FLOWER PETALS (HIBISCUS SABDARIFFA AND ALLAMANDA)

DEVELOPMENT OF ACID-BASE INDICATOR FROM FLOWER PETALS (HIBISCUS SABDARIFFA AND ALLAMANDA) DEVELOPMENT OF ACID-BASE INDICATOR FROM FLOWER PETALS (HIBISCUS SABDARIFFA AND ALLAMANDA) By OLA YIWOLA JACOB (2006/24200EH) DEPARTMENT OF CHEMICAL ENGINEERING FEDERAL UNIVERSITY OF TECHNOLOGY, MINNA NIGERIA

More information

LOS ANGELES UNIFIED SCHOOL DISTRICT REFERENCE GUIDE

LOS ANGELES UNIFIED SCHOOL DISTRICT REFERENCE GUIDE REFERENCE GUIDE TITLE: NUMBER: ISSUER: Chemical Safety Coordinators REF-1563.3 Yi Hwa Kim, Interim Director Enrique G. Boull t Chief Operating Officer ROUTING All Secondary Schools All Middle Schools All

More information

STUDIES IN GRAPH THEORY - DISTANCE RELATED CONCEPTS IN GRAPHS. R. ANANTHA KUMAR (Reg. No ) DOCTOR OF PHILOSOPHY

STUDIES IN GRAPH THEORY - DISTANCE RELATED CONCEPTS IN GRAPHS. R. ANANTHA KUMAR (Reg. No ) DOCTOR OF PHILOSOPHY STUDIES IN GRAPH THEORY - DISTANCE RELATED CONCEPTS IN GRAPHS A THESIS Submitted by R. ANANTHA KUMAR (Reg. No. 200813107) In partial fulfillment for the award of the degree of DOCTOR OF PHILOSOPHY FACULTY

More information

BALANCING NUMBERS : SOME IDENTITIES KABERI PARIDA. Master of Science in Mathematics. Dr. GOPAL KRISHNA PANDA

BALANCING NUMBERS : SOME IDENTITIES KABERI PARIDA. Master of Science in Mathematics. Dr. GOPAL KRISHNA PANDA BALANCING NUMBERS : SOME IDENTITIES A report submitted by KABERI PARIDA Roll No: 1MA073 for the partial fulfilment for the award of the degree of Master of Science in Mathematics under the supervision

More information

CLASS 12 SUBJECT : MATHEMATICS

CLASS 12 SUBJECT : MATHEMATICS CLASS 2 SUBJECT : MATHEMATICS CBSE QUESTION PAPER 27(FOREIGN) General Instructions: (i) All questions are compulsory. (ii) Questions 4 in Section A carrying mark each (iii) Questions 5 2 in Section B carrying

More information

STUDY OF BOUNDARY LAYER PARAMETERS ON A FLAT PLATE USING WIND TUNNEL

STUDY OF BOUNDARY LAYER PARAMETERS ON A FLAT PLATE USING WIND TUNNEL . STUDY OF BOUNDARY LAYER PARAMETERS ON A FLAT PLATE USING WIND TUNNEL A REPORT SUBMITTED IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF Bachelor of Technology In Civil Engineering By GYANARANJAN

More information

AGA KHAN UNIVERSITY EXAMINATION BOARD SECONDARY SCHOOL CERTIFICATE CLASS X EXAMINATION MAY Physics Paper I. Time: 35 minutes Marks: 25

AGA KHAN UNIVERSITY EXAMINATION BOARD SECONDARY SCHOOL CERTIFICATE CLASS X EXAMINATION MAY Physics Paper I. Time: 35 minutes Marks: 25 Page 1 of 8 AGA KHAN UNIVERSITY EXAMINATION BOARD SECONDARY SCHOOL CERTIFICATE CLASS X EXAMINATION MAY 2015 Physics Paper I Time: 35 minutes Marks: 25 INSTRUCTIONS 1. Read each question carefully. 2. Answer

More information

4460/TN. General Certificate of Secondary Education June 2009 to June 2010

4460/TN. General Certificate of Secondary Education June 2009 to June 2010 General Certificate of Secondary Education June 2009 to June 2010 SCIENCE CENTRE ASSESSED UNIT 4461 Science A 4462 Science B 4463 Additional Science 4411 Biology 4421 Chemistry 4451 Physics 4460/TN TEACHERS

More information

PA02. PHYSICS (SPECIFICATION A) Unit 2 Mechanics and Molecular Kinetic Theory

PA02. PHYSICS (SPECIFICATION A) Unit 2 Mechanics and Molecular Kinetic Theory Surname Centre Number Other Names Candidate Number Leave blank Candidate Signature General Certificate of Education June 2004 Advanced Subsidiary Examination PHYSICS (SPECIFICATION A) Unit 2 Mechanics

More information

A STUDY ON THE INTERACTION OF EXHAUST SMOKE WITH THE SUPERSTRUCTURE AND GAS TURBINE INTAKES OF NAVAL SHIPS. R.Vijayakumar. NO ~~rlt FO F TEGH

A STUDY ON THE INTERACTION OF EXHAUST SMOKE WITH THE SUPERSTRUCTURE AND GAS TURBINE INTAKES OF NAVAL SHIPS. R.Vijayakumar. NO ~~rlt FO F TEGH A STUDY ON THE INTERACTION OF EXHAUST SMOKE WITH THE SUPERSTRUCTURE AND GAS TURBINE INTAKES OF NAVAL SHIPS. by R.Vijayakumar NO ~~rlt FO F TEGH DEPARTMENT OF APPLIED MECHANICS INDIAN INSTITUTE OF TECHNOLOGY

More information

PHYSICS REFERENCE STUDY MATERIAL. for CLASS X CHAPTER WISE CONCEPTS, FORMULAS AND NUMERICALS INLCUDING HOTS PROBLEMS.

PHYSICS REFERENCE STUDY MATERIAL. for CLASS X CHAPTER WISE CONCEPTS, FORMULAS AND NUMERICALS INLCUDING HOTS PROBLEMS. PHYSICS REFERENCE STUDY MATERIAL for CLASS X 2017 18 CHAPTER WISE CONCEPTS, FORMULAS AND NUMERICALS INLCUDING HOTS PROBLEMS Prepared by M. S. KUMARSWAMY, TGT(MATHS) M. Sc. Gold Medallist (Elect.), B. Ed.

More information

Answer all questions. Answer each question in the space provided for that question. x 3. find the values of the constants p, q and r

Answer all questions. Answer each question in the space provided for that question. x 3. find the values of the constants p, q and r Centre Number Candidate Number For Examiner s Use Surname Other Names Candidate Signature Examiner s Initials Mathematics Unit Pure Core 4 Thursday 14 June 2012 General Certificate of Education Advanced

More information

A-level PHYSICS (7408/3BD)

A-level PHYSICS (7408/3BD) SPECIMEN MATERIAL A-level PHYSICS (7408/3BD) Paper 3 Section B (Turning points in Physics) Specimen 2014 Morning Time allowed: 2 hours Materials For this paper you must have: a pencil a ruler a calculator

More information

0606 ADDITIONAL MATHEMATICS 0606/02 Paper 2, maximum raw mark 80

0606 ADDITIONAL MATHEMATICS 0606/02 Paper 2, maximum raw mark 80 UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education MARK SCHEME for the May/June 009 question paper for the guidance of teachers 0606 ADDITIONAL

More information

Johns Hopkins University, Department of Mathematics Abstract Algebra - Spring 2013 Midterm Exam Solution

Johns Hopkins University, Department of Mathematics Abstract Algebra - Spring 2013 Midterm Exam Solution Johns Hopkins University, Department of Mathematics 110.40 Abstract Algebra - Spring 013 Midterm Exam Solution Instructions: This exam has 6 pages. No calculators, books or notes allowed. You must answer

More information

PERFORMANCE EVALUATION OF NICKEL-DOPED NATURAL CLAY CATALYST FOR ISOMERIZATION REACTION OF N-HEXANE KOLAWOLE SAMUEL SUNDAY

PERFORMANCE EVALUATION OF NICKEL-DOPED NATURAL CLAY CATALYST FOR ISOMERIZATION REACTION OF N-HEXANE KOLAWOLE SAMUEL SUNDAY .,': ~.~"""~---..... -~-... "-~.-~~--.~ PERFORMANCE EVALUATION OF NICKEL-DOPED NATURAL CLAY CATALYST FOR ISOMERIZATION REACTION OF N-HEXANE BY KOLAWOLE SAMUEL SUNDAY 2003/17513EH. ~: DEPARTMENT OF CHEMICAL

More information

GCSE COMBINED SCIENCE: TRILOGY

GCSE COMBINED SCIENCE: TRILOGY GCSE COMBINED SCIENCE: TRILOGY Higher Tier Paper 6: Physics 2H H Specimen 2018 Time allowed: 1 hour 15 minutes Materials For this paper you must have: a ruler a calculator the Physics Equation Sheet (enclosed).

More information

What is measurement uncertainty?

What is measurement uncertainty? What is measurement uncertainty? What is measurement uncertainty? Introduction Whenever a measurement is made, the result obtained is only an estimate of the true value of the property being measured.

More information

AP CALCULUS BC 2008 SCORING GUIDELINES

AP CALCULUS BC 2008 SCORING GUIDELINES AP CALCULUS BC 2008 SCORING GUIDELINES Question 4 A particle moves along the x-axis so that its velocity at time t, for 0 t 6, is given by a differentiable function v whose graph is shown above. The velocity

More information

Mathematics (JUN13MFP401) General Certificate of Education Advanced Level Examination June Unit Further Pure TOTAL

Mathematics (JUN13MFP401) General Certificate of Education Advanced Level Examination June Unit Further Pure TOTAL Centre Number Candidate Number For Examiner s Use Surname Other Names Candidate Signature Examiner s Initials Mathematics Unit Further Pure 4 Tuesday 18 June 2013 General Certificate of Education Advanced

More information

Industrial Rotating Kiln Simulation

Industrial Rotating Kiln Simulation Industrial Rotating Kiln Simulation This thesis is presented for the degree of Doctor of Philosophy Faculty of Science University of Technology, Sydney 1999 Submitted by Dennis Van Puyvelde, B. Chem. Eng.

More information

Candidate Number. Other Names

Candidate Number. Other Names Centre Number Surname Notice to Candidate. The work you submit for assessment must be your own. If you copy from someone else or allow another candidate to copy from you, or if you cheat in any other way,

More information

Coimisiún na Scrúduithe Stáit State Examinations Commission. Leaving Certificate Examination Sample Paper. Mathematics

Coimisiún na Scrúduithe Stáit State Examinations Commission. Leaving Certificate Examination Sample Paper. Mathematics 2015. M25S Coimisiún na Scrúduithe Stáit State Examinations Commission Leaving Certificate Examination Sample Paper Mathematics Time: 2 hours, 30 minutes 300 marks Running total Examination number Centre

More information

Atom Structure Teacher s Guide

Atom Structure Teacher s Guide Atom Structure Teacher s Guide 1.0 Summary Atomic structure is the third activity to be done after the pre-test. This activity should take students approximately one class period. 2.0 Learning Goals Driving

More information

Version 1.0. General Certificate of Secondary Education Practice Paper Set 3. Mathematics (Linear) B. Paper 2 Higher Tier 43652H.

Version 1.0. General Certificate of Secondary Education Practice Paper Set 3. Mathematics (Linear) B. Paper 2 Higher Tier 43652H. Version 1.0 General Certificate of Secondary Education Practice Paper Set 3 Mathematics (Linear) B Paper 2 Higher Tier 43652H Mark Scheme Mark schemes are prepared by the Principal Examiner and considered,

More information

KENDRIYA VIDYALAYA IIT Campus, Chennai Holiday Home Work Summer Vacation. Class XII- CHEMISTRY

KENDRIYA VIDYALAYA IIT Campus, Chennai Holiday Home Work Summer Vacation. Class XII- CHEMISTRY KENDRIYA VIDYALAYA IIT Campus, Chennai -600 036 Holiday Home Work Summer Vacation Class XII- CHEMISTRY 1 Q and Ans Of Solid state, solution, chemistry in everyday life, polymer- Enclosed 2 Two chapters

More information

NOTE BY THE TECHNICAL SECRETARIAT ESTABLISHMENT OF A DATABASE OF EXPERTISE ON PEACEFUL USES OF CHEMISTRY

NOTE BY THE TECHNICAL SECRETARIAT ESTABLISHMENT OF A DATABASE OF EXPERTISE ON PEACEFUL USES OF CHEMISTRY OPCW Technical Secretariat 30 August 2016 ENGLISH only NOTE BY THE TECHNICAL SECRETARIAT ESTABLISHMENT OF A DATABASE OF EXPERTISE ON PEACEFUL USES OF CHEMISTRY 1. At its Sixteenth Session, the Conference

More information

Secrets of the Rain Forest

Secrets of the Rain Forest Non-fiction: Secrets of the Rain Forest Secrets of the Rain Forest Roine Magnusson/Getty Images Life in a Tropical Rain Forest What can you find in this mazing place? Welcome to a tropical rain forest!

More information

What are you looking for? Big Screen Guide. How to choose big screens for bright rooms

What are you looking for? Big Screen Guide. How to choose big screens for bright rooms What are you looking for? Big Screen Guide How to choose big screens for bright rooms Image height above 1.5m [60 ] Two screens meet this requirement: 6 5 dnp Supernova Infinity 4 3 2 1 dnp Supernova XL

More information

Compositions, Bijections, and Enumerations

Compositions, Bijections, and Enumerations Georgia Southern University Digital Commons@Georgia Southern Electronic Theses & Dissertations COGS- Jack N. Averitt College of Graduate Studies Fall 2012 Compositions, Bijections, and Enumerations Charles

More information

What's Up In Space? In the Center. Around the Sun. Around Earth. Space Facts! Places in Space

What's Up In Space? In the Center. Around the Sun. Around Earth. Space Facts! Places in Space Non-fiction: What's Up In Space? What's Up In Space? Places in Space Space is an exciting place! Our solar system is in space. It is made up of the sun and the eight planets that travel around the sun.

More information

KENDRIYA VIDYALAYA SANGATHAN, HYDERABAD REGION

KENDRIYA VIDYALAYA SANGATHAN, HYDERABAD REGION KENDRIYA VIDYALAYA SANGATHAN, HYDERABAD REGION SAMPLE PAPER 03 FOR HALF YEARLY EXAM (2017-18) SUBJECT: MATHEMATICS BLUE PRINT FOR HALF YEARLY EXAM: CLASS VII Unit/Topic VSA (1 mark) Short answer (2 marks)

More information

Version 1.0: klm. General Certificate of Education. Mathematics MFP4 Further Pure 4. Mark Scheme examination - January series

Version 1.0: klm. General Certificate of Education. Mathematics MFP4 Further Pure 4. Mark Scheme examination - January series Version 1.0: 0110 klm General Certificate of Education Mathematics 660 MFP Further Pure Mark Scheme 010 examination - January series Mark schemes are prepared by the Principal Examiner and considered,

More information