niveau : 1 ere année spécialité : mécatronique & froid et climatisation AU : Programmation C Travaux pratiques

Size: px
Start display at page:

Download "niveau : 1 ere année spécialité : mécatronique & froid et climatisation AU : 2014-2015 Programmation C Travaux pratiques"

Transcription

1 École Supérieure Privée d Ingénieurs de Monastir niveau : 1 ere année spécialité : mécatronique & froid et climatisation AU : Programmation C Travaux pratiques Correction Exercice 1 TP3 long i n t N,X; p r i n t f ( Donner un e n t i e r N : ) ; s c a n f ( % ld,&n) ; while (N<=0); X=0; while (N) i f (N%10==0) X++; N=N/10; p r i n t f ( X = %d\n,x) ; 2- N X Résultat X = 2 X = 3 3- Il permet de compter et d afficher le nombre de zéro d un entier >0 4- Avec DO... WHILE : i f (N%10==0) X++; N=N/10; while (N) ;

2 Avec FOR : f o r (X=0; N;N/=10) i f (N%10==0) X++; Exercice 2 TP3 1- i x Résultat Solution avec...while i =1; x = 0 ; x++; i=i 2; p r i n t f ( %d\ t, x ) ; while ( i <10); Solution avec for f o r ( x=0, i =1 ; i <10 ; i=i 2) x++; p r i n t f ( %d\ t, x ) ; Exercice 3 TP3 1 i n t i, N ; f l o a t S ; p r i n t f ( Donner N : ) ; s c a n f ( %d,&n) ; while (N<=0); f o r (S=1, i =1; i<=n; i++) S=S + ( f l o a t )1/(2 i +1); p r i n t f ( La somme = %.2 f \n,s ) ; Kais Ben Salah Page : 2

3 2 i n t i, N ; f l o a t S ; p r i n t f ( Donner N : ) ; s c a n f ( %d,&n) ; while (N<=0); S=1; i =1; while ( i<=n) S=S + ( f l o a t )1/(2 i +1); i ++; p r i n t f ( La somme = %.2 f \n,s ) ; Exercice 4 TP3 long i n t n, x, ninv =0,p ; p r i n t f ( Donner un e n t i e r : ) ; s c a n f ( % ld, &n ) ; while (n<=9); x=n ; while ( x ) ninv=ninv 10; ninv=x%10+ ninv ; x=x /10; p=(n%10) n ; i f ( ( p= =ninv ) && ( n= =ninv ) ) p r i n t f ( % ld e s t un e n t i e r symétrique et propre \n,n ) ; i f ( p==ninv ) p r i n t f ( % ld e s t un e n t i e r propre \n,n ) ; i f ( n==ninv ) p r i n t f ( % ld e s t un e n t i e r symétrique \n,n ) ; p r i n t f ( % ld e s t un e n t i e r non symétrique et non propre, n ) ; Kais Ben Salah Page : 3

4 Exercice 5 TP3 i n t A, B, N, nb, cp, i, j, S ; p r i n t f ( Donnner deux e n t i e r s : ) ; s c a n f ( %d %d,&a, &B) ; while (A<=0 B<=0 A>B) ; p r i n t f ( Donnner l a t a i l l e de l a s u i t e : ) ; s c a n f ( %d,&n) ; while (N<=1); f o r ( i =1,cp=0,S=0, j =0; i<=n; i++) p r i n t f ( Donner l e n t i e r %d de l a s u i t e :, i ) ; s c a n f ( %d,&nb ) ; while ( nb==0); i f ( nb>a && nb<b) cp++; i f ( nb>0) S+=nb ; j ++; i f ( cp ) p r i n t f ( Le nombre d e n t i e r s compris e n t r e %d et %d = %d\n,a,b, cp ) ; p r i n t f ( I l n e x i s t e pas des e n t i e r s compris e n t r e %d et %d\n,a,b) ; i f ( j ) p r i n t f ( La moyenne de l a s u i t e e s t =%.2 f \n,( f l o a t ) S/ j ) ; p r i n t f ( I l n e x i s t e pas des e n t i e r s p o s i t i f s dans l a s é r i e ) ; Exercice 9 TP3 \ begin verbatim long i n t N, sd, s, x, d, u ; i n t choix, i, j, ok=0; p r i n t f ( MENU PRINCIPAL\n ) ; p r i n t f ( 1. Problème 1\n ) ; p r i n t f ( 2. Problème 2\n ) ; p r i n t f ( 3. Problème 3\n ) ; p r i n t f ( 4. Quitter l e programme\n ) ; Kais Ben Salah Page : 4

5 p r i n t f ( Donner un choix e n t r e 1 et 4 : ) ; s c a n f ( %d, &choix ) ; while (! ( choix >=1 && choix <=4)); p r i n t f ( Donner un e n t i e r : ) ; s c a n f ( % ld, &N) ; while (N<=0); x=n; switch ( choix ) case 1 : f o r ( case 2 : f o r ( i =1, s =0, j =1; i<=n; i++) s+=j ; j=j +2; p r i n t f ( Le c a r r é de %ld = %ld \n, x, s ) ; break ; i =1, sd =0; i<=n/ 2 ; i++) i f (N%i ==0) sd+=i ; i f ( sd%n==0) p r i n t f ( % ld e s t m u l t i p a r f a i t \n, x ) ; p r i n t f ( % ld n e s t pas m u l t i p a r f a i t \n, x ) ; break ; case 3 : u=n%10; d=n/10; N=d+4 u ; i f (N==13 N==26 N==39) ok = 1 ; break ; while (d>=10); i f ( ok ) p r i n t f ( % ld e s t d i v i s i b l e par 13\n, x ) ; p r i n t f ( % ld n e s t pas d i v i s i b l e par 13\n, x ) ; case 4 : break ; Kais Ben Salah Page : 5

6 Exercice 11 TP3 i n t n, i, p, ok ; p r i n t f ( Donnez un e n t i e r : \ n ) ; s c a n f ( %d,&n ) ; while (! ( n >10)); p r i n t f ( Les nombres premiers i n f é r i e u r s a %d sont : \ n,n ) ; f o r (p=2;p<=n ; p++) ok =1; f o r ( i =2; i<p ; i++) i f ( p%i ==0) ok=0; break ; i f ( ok==1) p r i n t f ( %d\ t, p ) ; Exercice 1 TP4 #i n c l u d e <s t d i o. h> long i n t INVERSION( long i n t N) long i n t NINV=0; while (N!=00) NINV = 1 0 ; NINV += N%10; N /= 1 0 ; return NINV; i n t PALINDROME ( long i n t N) i f ( N == INVERSION(N) ) return 1 ; return 0 ; long i n t N; p r i n t f ( Entrez un nombre p o s i t i f : ) ; s c a n f ( % ld, &N) ; while (! ( N>0)); i f (PALINDROME (N)==1) p r i n t f ( % ld e s t palindrome \n,n) ; p r i n t f ( % ld n e s t pas palindrome \n,n) ; Kais Ben Salah Page : 6

7 Exercice 2 TP4 #i n c l u d e <s t d i o. h> long i n t SAISIE ( ) long i n t nb ; p r i n t f ( Donner un e n t i e r : ) ; s c a n f ( % ld,&nb ) ; while (! ( nb >0)); return nb ; i n t PRODUIT ( i n t x ) i n t p=1,y ; while ( x!=0) y=x%10; i f ( y!=0) p=p y ; x=x /10; return p ; long i n t A,B; p r i n t f ( S a i s i e de A\n ) ; A = SAISIE ( ) ; p r i n t f ( S a i s i e de B\n ) ; B =SAISIE ( ) ; i f (PRODUIT (A)==PRODUIT (B) ) p r i n t f ( % ld et %ld sont c o u s i n s \n,a,b) ; p r i n t f ( % ld et %ld ne sont pas c o u s i n s \n,a,b) ; Exercice 3 TP4 #include <math. h> i n t SAISIE ( ) long i n t nb ; p r i n t f ( Donner un e n t i e r : ) ; s c a n f ( %d,&nb ) ; while (! ( nb >0)); return nb ; Kais Ben Salah Page : 7

8 i n t VERIFICATION ( i n t NB) i n t v =1, x ; while ( NB!=0 && v==1) x=nb%10; i f ( x>7) v=0; NB= NB/10; return v ; i n t CONVERSION ( i n t NB) i n t exp=0, r e s =0, x ; while (NB!=0) x=nb%10; r e s=r e s + x pow (8, exp ) ; exp++; NB=NB/10; return r e s ; i n t A; A= SAISIE ( ) ; i f (VERIFICATION (A)==1) p r i n t f ( %d en base 10 = %d,a, CONVERSION(A) ) ; p r i n t f ( %d n a p p a r t i e n t pas en base 8, A) ; Exercice 4 TP4 i n t s a i s i e t a i l l e ( ) i n t n ; p r i n t f ( nner l a t a i l l e du tableau : ) ; s c a n f ( %d,&n ) ; while (! ( n>1 && n <50)); return n ; Exercice 5 TP4 void chargement ( i n t t [ ], i n t n ) i n t i ; p r i n t f ( t [%d ] :, i ) ; s c a n f ( %d,& t [ i ] ) ; while (! ( t [ i ] >0)); Kais Ben Salah Page : 8

9 Exercice 6 TP4 void a f f i c h e r ( i n t t [ ], i n t n) i n t i ; p r i n t f ( %d\ t, t [ i ] ) ; Exercice 7 i n t s a i s i e t a i l l e ( ) i n t n ; p r i n t f ( nner l a t a i l l e du tableau : ) ; s c a n f ( %d,&n ) ; while (! ( n>1 && n <50)); return n ; void chargement ( i n t t1 [ ], i n t n1 ) i n t i ; f o r ( i =0; i<n1 ; i++) p r i n t f ( t1 [%d ] :, i ) ; s c a n f ( %d,& t1 [ i ] ) ; void a f f i c h e r ( i n t t1 [ ], i n t n1 ) i n t i ; p r i n t f ( %d\ t, t [ i ] ) ; i n t minimum( i n t t [ ], i n t n ) i n t min=t [ 0 ], i ; f o r ( i =1; i<n ; i++) i f ( t [ i ]<min ) min=t [ i ] ; return min ; void r e c h e r c h e ( i n t t1 [ ], i n t n1 ) i n t a, i, min, n2=0, t2 [ 5 0 ] ; p r i n t f ( \ nnner l a v a l e u r de A: ) ; s c a n f ( %d,&a ) ; Kais Ben Salah Page : 9

10 f o r ( i =0; i<n1 ; i++) i f ( t1 [ i ]>a ) t2 [ n2]= t1 [ i ] ; n2++; i f ( n2!=0) p r i n t f ( \ nles éléments de T1 qui sont s u p é r i e u r s à %d sont : \ n, a ) ; a f f i c h e r ( t2, n2 ) ; min= minimum( t2, n2 ) ; p r i n t f ( \ n l e plus p e t i t des éléments qui sont > à %d=%d\n, a, min ) ; p r i n t f ( i l n e x i s t e pas des e n t i e r s qui sont s u p é r i e u r s à %d\n, a ) ; i n t t1 [ 5 0 ], n1 ; n1=s a i s i e t a i l l e ( ) ; chargement ( t1, n1 ) ; p r i n t f ( \ ncontenu de t1 \n ) ; a f f i c h e r ( t1, n1 ) ; r e c h e r c h e ( t1, n1 ) ; Exercice 8 TP4 i n t s a i s i e t a i l l e ( ) i n t n ; p r i n t f ( nner l a t a i l l e du tableau : ) ; s c a n f ( %d,&n ) ; while (! ( n>1 && n <50)); return n ; void chargement ( i n t t [ ], i n t n ) i n t i ; p r i n t f ( t [%d ] :, i ) ; s c a n f ( %d,& t [ i ] ) ; void a f f i c h e r ( i n t t [ ], i n t n) i n t i ; p r i n t f ( %d\ t, t [ i ] ) ; Kais Ben Salah Page : 10

11 void t r a n s f e r e ( i n t T1 [ ], i n t T4 [ ], i n t N1) i n t i, j, k ; f o r ( i =0, j =0,k=N1 1; i<n1 ; i++) i f ( i %2==1) T4 [ k]=t1 [ i ] ; k ; T4 [ j ]=T1 [ i ] ; j ++; i n t t1 [ 5 0 ], t4 [ 5 0 ], n1 ; n1=s a i s i e t a i l l e ( ) ; chargement ( t1, n1 ) ; t r a n s f e r e ( t1, t4, n1 ) ; p r i n t f ( \ ncontenu de t1 \n ) ; a f f i c h e r ( t1, n1 ) ; p r i n t f ( \ ncontenu de t4 \n ) ; a f f i c h e r ( t4, n1 ) ; Exercice 9 TP4 i n t s a i s i e t a i l l e ( ) i n t n ; p r i n t f ( nner l a t a i l l e du tableau : ) ; s c a n f ( %d,&n ) ; while (! ( n>1 && n <50)); return n ; void chargement ( i n t t [ ], i n t n ) i n t i ; p r i n t f ( t [%d ] :, i ) ; s c a n f ( %d,& t [ i ] ) ; void a f f i c h e r ( i n t t [ ], i n t n) i n t i ; p r i n t f ( %d\ t, t [ i ] ) ; Kais Ben Salah Page : 11

12 i n t SYMETRIQUE( i n t t1 [ ], i n t n1 ) i n t i, j, ok=1; f o r ( i =0, j=n1 1; i<n1 / 2 ; i ++,j ) i f ( t1 [ i ]!= t1 [ j ] ) ok=0; break ; return ok ; i n t t1 [ 5 0 ], n1 ; n1=s a i s i e t a i l l e ( ) ; chargement ( t1, n1 ) ; p r i n t f ( \ ncontenu de t1 \n ) ; a f f i c h e r ( t1, n1 ) ; i f (SYMETRIQUE( t1, n1)==1) p r i n t f ( \ nle tableau T1 e s t symétrique \n ) ; p r i n t f ( \ nle tableau T1 n e s t pas symétrique \n ) ; Exercice 12 TP4 i n t s a i s i e t a i l l e ( ) i n t n ; p r i n t f ( nner l a t a i l l e du tableau : ) ; s c a n f ( %d,&n ) ; while (! ( n>1 && n <50)); return n ; void chargement ( i n t t [ ], i n t n ) i n t i ; p r i n t f ( t [%d ] :, i ) ; s c a n f ( %d,& t [ i ] ) ; void a f f i c h e r ( i n t t [ ], i n t n) i n t i ; p r i n t f ( %d\ t, t [ i ] ) ; Kais Ben Salah Page : 12

13 void i n v e r s i o n ( i n t t1 [ ], i n t n1 ) i n t i, j, aux ; f o r ( i =0, j=n1 1; i<n1/2 ; i ++,j ) aux=t1 [ i ] ; t1 [ i ]= t1 [ j ] ; t1 [ j ]=aux ; i n t t1 [ 5 0 ], n1 ; n1=s a i s i e t a i l l e ( ) ; chargement ( t1, n1 ) ; p r i n t f ( \ ncontenu de T1 avant i n v e r s i o n \n ) ; a f f i c h e r ( t1, n1 ) ; i n v e r s i o n ( t1, n1 ) ; p r i n t f ( \ ncontenu de T1 aprés i n v e r s i o n \n ) ; a f f i c h e r ( t1, n1 ) ; Exercice 13 TP4 i n t s a i s i e t a i l l e ( ) i n t n ; p r i n t f ( nner l a t a i l l e du tableau : ) ; s c a n f ( %d,&n ) ; while (! ( n>1 && n <50)); return n ; void chargement ( i n t t [ ], i n t n ) i n t i ; p r i n t f ( t [%d ] :, i ) ; s c a n f ( %d,& t [ i ] ) ; void a f f i c h e r ( i n t t [ ], i n t n) i n t i ; p r i n t f ( %d\ t, t [ i ] ) ; Kais Ben Salah Page : 13

14 void r o t a t i o n ( i n t t1 [ ], i n t n1 ) i n t i, aux ; aux=t1 [ n1 1]; f o r ( i=n1 ; i >0 ; i ) t1 [ i ]= t1 [ i 1]; t1 [0]= aux ; i n t t1 [ 5 0 ], n1 ; n1=s a i s i e t a i l l e ( ) ; chargement ( t1, n1 ) ; p r i n t f ( \ ncontenu de T1 avant r o t a t i o n \n ) ; a f f i c h e r ( t1, n1 ) ; r o t a t i o n ( t1, n1 ) ; p r i n t f ( \ ncontenu de T1 aprés r o t a t i o n \n ) ; a f f i c h e r ( t1, n1 ) ; Kais Ben Salah Page : 14

Personnalisez votre intérieur avec les revêtements imprimés ALYOS design

Personnalisez votre intérieur avec les revêtements imprimés ALYOS design Plafond tendu à froid ALYOS technology ALYOS technology vous propose un ensemble de solutions techniques pour vos intérieurs. Spécialiste dans le domaine du plafond tendu, nous avons conçu et développé

More information

Thursday, February 7, 2013. DOM via PHP

Thursday, February 7, 2013. DOM via PHP DOM via PHP Plan PHP DOM PHP : Hypertext Preprocessor Langage de script pour création de pages Web dynamiques Un ficher PHP est un ficher HTML avec du code PHP

More information

CSS : petits compléments

CSS : petits compléments CSS : petits compléments Université Lille 1 Technologies du Web CSS : les sélecteurs 1 au programme... 1 ::before et ::after 2 compteurs 3 media queries 4 transformations et transitions Université Lille

More information

Technical Service Bulletin

Technical Service Bulletin Technical Service Bulletin FILE CONTROL CREATED DATE MODIFIED DATE FOLDER OpenDrive 02/05/2005 662-02-25008 Rev. : A Installation Licence SCO sur PC de remplacement English version follows. Lors du changement

More information

Remote Method Invocation

Remote Method Invocation 1 / 22 Remote Method Invocation Jean-Michel Richer jean-michel.richer@univ-angers.fr http://www.info.univ-angers.fr/pub/richer M2 Informatique 2010-2011 2 / 22 Plan Plan 1 Introduction 2 RMI en détails

More information

Langages Orientés Objet Java

Langages Orientés Objet Java Langages Orientés Objet Java Exceptions Arnaud LANOIX Université Nancy 2 24 octobre 2006 Arnaud LANOIX (Université Nancy 2) Langages Orientés Objet Java 24 octobre 2006 1 / 32 Exemple public class Example

More information

Introduction au BIM. ESEB 38170 Seyssinet-Pariset Economie de la construction email : contact@eseb.fr

Introduction au BIM. ESEB 38170 Seyssinet-Pariset Economie de la construction email : contact@eseb.fr Quel est l objectif? 1 La France n est pas le seul pays impliqué 2 Une démarche obligatoire 3 Une organisation plus efficace 4 Le contexte 5 Risque d erreur INTERVENANTS : - Architecte - Économiste - Contrôleur

More information

STAGE YOGA & RANDONNEES à MADERE

STAGE YOGA & RANDONNEES à MADERE STAGE YOGA & RANDONNEES à MADERE Du dimanche 10 au dimanche 17 juillet 2016 Animé par Naomi NAKASHIMA et Sylvain BRUNIER L île aux fleurs, paradis des randonneurs et amoureux de la nature Au cours de ce

More information

Product / Produit Description Duration /Days Total / Total

Product / Produit Description Duration /Days Total / Total DELL Budget Proposal / Proposition Budgétaire Solutions Design Centre N o : 200903201602 Centre de Design de Solutions Date: 2009-03-23 Proposition valide pour 30 jours / Proposal valid for 30 days Customer

More information

Introduction. GEAL Bibliothèque Java pour écrire des algorithmes évolutionnaires. Objectifs. Simplicité Evolution et coévolution Parallélisme

Introduction. GEAL Bibliothèque Java pour écrire des algorithmes évolutionnaires. Objectifs. Simplicité Evolution et coévolution Parallélisme GEAL 1.2 Generic Evolutionary Algorithm Library http://dpt-info.u-strasbg.fr/~blansche/fr/geal.html 1 /38 Introduction GEAL Bibliothèque Java pour écrire des algorithmes évolutionnaires Objectifs Généricité

More information

Licence Informatique Année 2005-2006. Exceptions

Licence Informatique Année 2005-2006. Exceptions Université Paris 7 Java Licence Informatique Année 2005-2006 TD n 8 - Correction Exceptions Exercice 1 La méthode parseint est spécifiée ainsi : public static int parseint(string s) throws NumberFormatException

More information

HEALTH CARE DIRECTIVES ACT

HEALTH CARE DIRECTIVES ACT A11 HEALTH CARE DIRECTIVES ACT Advances in medical research and treatments have, in many cases, enabled health care professionals to extend lives. Most of these advancements are welcomed, but some people

More information

Holinger AG / Holinger Group Facts and Figures 2011. Holinger SA / Groupe Holinger Faits et chiffres 2011

Holinger AG / Holinger Group Facts and Figures 2011. Holinger SA / Groupe Holinger Faits et chiffres 2011 / Facts and Figures 211 / Groupe Holinger Faits et chiffres 211 A B C D E F G Progress of shareholders equity and share value Evolution des fonds propres et de la valeur de l action Financial statement

More information

Cliquez sur le résultat que vous avez obtenu au test de classement linguistique Click on the result you obtained following the language test

Cliquez sur le résultat que vous avez obtenu au test de classement linguistique Click on the result you obtained following the language test Cliquez sur le résultat que vous avez obtenu au test de classement linguistique Click on the result you obtained following the language test E1N (SVP contactez-nous si vous avez obtenu ce résultat / Please

More information

The wolf who wanted to change his color Week 1. Day 0. Day 1. Day 2. Day 3. - Lecture de l album

The wolf who wanted to change his color Week 1. Day 0. Day 1. Day 2. Day 3. - Lecture de l album The wolf who wanted to change his color Week 1. Day 0. Day 1. Day 2. Day 3. - Lecture de l album - Lecture simplifiée de l album - Découverte des affiches des - Exercice de reconnaissance de - Découverte

More information

Chairperson of the NEPAD Heads of State and Government Orientation Committee, President Macky Sall of the Republic of Senegal

Chairperson of the NEPAD Heads of State and Government Orientation Committee, President Macky Sall of the Republic of Senegal Results-based Performance Report of the NEPAD Agency Presented to 32 th NEPAD HSGOC by Dr. Ibrahim Assane Mayaki, Chief Executive Officer, NEPAD Agency 29 January 2015 Excellences, Chairperson of the NEPAD

More information

POB-JAVA Documentation

POB-JAVA Documentation POB-JAVA Documentation 1 INTRODUCTION... 4 2 INSTALLING POB-JAVA... 5 Installation of the GNUARM compiler... 5 Installing the Java Development Kit... 7 Installing of POB-Java... 8 3 CONFIGURATION... 9

More information

11520 Alberta CALGARY 6 6. 11161 Nova Scotia / Nouvelle-Écosse HALIFAX 5 5. 13123 Quebec / Québec MONTREAL 26 23. 15736 Ontario OTTAWA 162 160

11520 Alberta CALGARY 6 6. 11161 Nova Scotia / Nouvelle-Écosse HALIFAX 5 5. 13123 Quebec / Québec MONTREAL 26 23. 15736 Ontario OTTAWA 162 160 Table S1 - Service to the Public by Bilingual Office / Point of Service as of March 31st of year Tableau S1 - Service au public par bureau bilingue /point de service en date du 31 mars de l'année Office

More information

Sélection adaptative de codes polyédriques pour GPU/CPU

Sélection adaptative de codes polyédriques pour GPU/CPU Sélection adaptative de codes polyédriques pour GPU/CPU Jean-François DOLLINGER, Vincent LOECHNER, Philippe CLAUSS INRIA - Équipe CAMUS Université de Strasbourg Saint-Hippolyte - Le 6 décembre 2011 1 Sommaire

More information

Note concernant votre accord de souscription au service «Trusted Certificate Service» (TCS)

Note concernant votre accord de souscription au service «Trusted Certificate Service» (TCS) Note concernant votre accord de souscription au service «Trusted Certificate Service» (TCS) Veuillez vérifier les éléments suivants avant de nous soumettre votre accord : 1. Vous avez bien lu et paraphé

More information

I will explain to you in English why everything from now on will be in French

I will explain to you in English why everything from now on will be in French I will explain to you in English why everything from now on will be in French Démarche et Outils REACHING OUT TO YOU I will explain to you in English why everything from now on will be in French All French

More information

Documentation technique

Documentation technique Documentation technique Panneau d administration du site web Sommaire I. Présentation de l outil Prestashop II. Modification TPL 1. Catégories imagées 2. Modification du pied de page 3. Plan du site III.

More information

Calcul parallèle avec R

Calcul parallèle avec R Calcul parallèle avec R ANF R Vincent Miele CNRS 07/10/2015 Pour chaque exercice, il est nécessaire d ouvrir une fenètre de visualisation des processes (Terminal + top sous Linux et Mac OS X, Gestionnaire

More information

Telecommunications observatory (mobile market)

Telecommunications observatory (mobile market) May 7 th 2015 Telecommunications observatory (mobile market) 1 st quarter 2015 ISSN : 2258-3106 1 Summary Modifications apportées à la publication... 3 Principaux résultats... 4 A Mobile services market...

More information

TIMISKAMING FIRST NATION

TIMISKAMING FIRST NATION Post-Secondary Financial Assistance Forms TFN EDUCATION 2014-05-01 TIMISKAMING FIRST NATION 0 Education Dept. Application Check List Please enclose the following when applying: Form: Statement of Intent

More information

Office of the Auditor General / Bureau du vérificateur général FOLLOW-UP TO THE 2010 AUDIT OF COMPRESSED WORK WEEK AGREEMENTS 2012 SUIVI DE LA

Office of the Auditor General / Bureau du vérificateur général FOLLOW-UP TO THE 2010 AUDIT OF COMPRESSED WORK WEEK AGREEMENTS 2012 SUIVI DE LA Office of the Auditor General / Bureau du vérificateur général FOLLOW-UP TO THE 2010 AUDIT OF COMPRESSED WORK WEEK AGREEMENTS 2012 SUIVI DE LA VÉRIFICATION DES ENTENTES DE SEMAINE DE TRAVAIL COMPRIMÉE

More information

ACP-EU Cooperation Programme in Science and Technology (S&T II) / Programme de Coopération ACP-UE pour la Science et la Technologie

ACP-EU Cooperation Programme in Science and Technology (S&T II) / Programme de Coopération ACP-UE pour la Science et la Technologie ACP Science and Technologie Programme Programme Management Unit ACP-EU Cooperation Programme in Science and Technology (S&T II) / Programme de Coopération ACP-UE pour la Science et la Technologie EuropeAid/133437/D/ACT/ACPTPS

More information

AP FRENCH LANGUAGE AND CULTURE EXAM 2015 SCORING GUIDELINES

AP FRENCH LANGUAGE AND CULTURE EXAM 2015 SCORING GUIDELINES AP FRENCH LANGUAGE AND CULTURE EXAM 2015 SCORING GUIDELINES Identical to Scoring Guidelines used for German, Italian, and Spanish Language and Culture Exams Presentational Writing: Persuasive Essay 5:

More information

TP1 : Correction. Rappels : Stream, Thread et Socket TCP

TP1 : Correction. Rappels : Stream, Thread et Socket TCP Université Paris 7 M1 II Protocoles réseaux TP1 : Correction Rappels : Stream, Thread et Socket TCP Tous les programmes seront écrits en Java. 1. (a) Ecrire une application qui lit des chaines au clavier

More information

Third Supplement dated 8 September 2015 to the Euro Medium Term Note Programme Base Prospectus dated 12 December 2014

Third Supplement dated 8 September 2015 to the Euro Medium Term Note Programme Base Prospectus dated 12 December 2014 Third Supplement dated 8 September 2015 to the Euro Medium Term Note Programme Base Prospectus dated 12 December 2014 HSBC France 20,000,000,000 Euro Medium Term Note Programme This third supplement (the

More information

CERN EUROPEAN ORGANIZATION FOR NUCLEAR RESEARCH

CERN EUROPEAN ORGANIZATION FOR NUCLEAR RESEARCH CERN/FC/5738 Original: anglais 14 juin 2013 ORGANISATION EUROPEENNE POUR LA RECHERCHE NUCLÉAIRE CERN EUROPEAN ORGANIZATION FOR NUCLEAR RESEARCH Suite à donner Procédure de vote Discussion COMITÉ DES FINANCES

More information

Short Form Description / Sommaire: Carrying on a prescribed activity without or contrary to a licence

Short Form Description / Sommaire: Carrying on a prescribed activity without or contrary to a licence NOTICE OF VIOLATION (Corporation) AVIS DE VIOLATION (Société) Date of Notice / Date de l avis: August 29, 214 AMP Number / Numéro de SAP: 214-AMP-6 Violation committed by / Violation commise par : Canadian

More information

Cours de base / Basic Courses. Niveau avancé / Advanced Level ESL 1112 ESL 1113 ESL 2111 ESL 2112 ESL 2113

Cours de base / Basic Courses. Niveau avancé / Advanced Level ESL 1112 ESL 1113 ESL 2111 ESL 2112 ESL 2113 Cliquez sur le dernier cours d anglais langue seconde (ESL) que vous avez complété Click on the last English as a Second Language (ESL) course you have completed / ESL 1112 / & & N.B. : Les auditeurs ne

More information

Archived Content. Contenu archivé

Archived Content. Contenu archivé ARCHIVED - Archiving Content ARCHIVÉE - Contenu archivé Archived Content Contenu archivé Information identified as archived is provided for reference, research or recordkeeping purposes. It is not subject

More information

Sun Management Center Change Manager 1.0.1 Release Notes

Sun Management Center Change Manager 1.0.1 Release Notes Sun Management Center Change Manager 1.0.1 Release Notes Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 817 0891 10 May 2003 Copyright 2003 Sun Microsystems, Inc. 4150

More information

Unrealized Gains in Stocks from the Viewpoint of Investment Risk Management

Unrealized Gains in Stocks from the Viewpoint of Investment Risk Management Unrealized Gains in Stocks from the Viewpoint of Investment Risk Management Naoki Matsuyama Investment Administration Department, The Neiji Mutual Life Insurance Company, 1-1 Marunouchi, 2-chome, Chiyoda-ku,

More information

Survey on Conference Services provided by the United Nations Office at Geneva

Survey on Conference Services provided by the United Nations Office at Geneva Survey on Conference Services provided by the United Nations Office at Geneva Trade and Development Board, fifty-eighth session Geneva, 12-23 September 2011 Contents Survey contents Evaluation criteria

More information

GSAC CONSIGNE DE NAVIGABILITE définie par la DIRECTION GENERALE DE L AVIATION CIVILE Les examens ou modifications décrits ci-dessous sont impératifs. La non application des exigences contenues dans cette

More information

Hours: The hours for the class are divided between practicum and in-class activities. The dates and hours are as follows:

Hours: The hours for the class are divided between practicum and in-class activities. The dates and hours are as follows: March 2014 Bienvenue à EDUC 1515 Français Langue Seconde Partie 1 The following information will allow you to plan in advance for the upcoming session of FSL Part 1 and make arrangements to complete the

More information

READ AND FOLLOW ALL SAFETY INSTRUCTIONS 1. DANGER RISK OF SHOCK DISCONNECT POWER BEFORE INSTALLATION

READ AND FOLLOW ALL SAFETY INSTRUCTIONS 1. DANGER RISK OF SHOCK DISCONNECT POWER BEFORE INSTALLATION UR Series LED Upgrade Kit Includes: 48" Linear Option IMPORTANT SAFEGUARDS When using electrical equipment, basic safety precautions should always be followed including the following: READ AND FOLLOW ALL

More information

A GREEN PARADISE AT THE GATES OF LISBON UN PARADIS VERT AUX PORTES DE LISBONNE

A GREEN PARADISE AT THE GATES OF LISBON UN PARADIS VERT AUX PORTES DE LISBONNE A GREEN PARADISE AT THE GATES OF LISBON UN PARADIS VERT AUX PORTES DE LISBONNE GREEN HILL S ESTATE IS A PRIVATE CONDOMINIUM OF 110 HECTARES LOCATED INSIDE A NATURAL RESERVE ON THE SOUTH BANK OF LISBON.

More information

SunFDDI 6.0 on the Sun Enterprise 10000 Server

SunFDDI 6.0 on the Sun Enterprise 10000 Server SunFDDI 6.0 on the Sun Enterprise 10000 Server Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, CA 94303-4900 USA 650 960-1300 Fax 650 969-9131 Part No.: 806-3610-11 November 1999, Revision A Send

More information

THE CITY OF TORONTO S JOB DEMANDS ANALYSIS AND JOB MATCH SYSTEM

THE CITY OF TORONTO S JOB DEMANDS ANALYSIS AND JOB MATCH SYSTEM THE CITY OF TORONTO S JOB DEMANDS ANALYSIS AND JOB MATCH SYSTEM RAYBOULD KAREN, MCILWAIN LINDA, HARDY CHRISTINE, BYERS JANE City of Toronto, Occupational Health Safety & Workers Compensation, 55 John Street,

More information

Sun Enterprise Optional Power Sequencer Installation Guide

Sun Enterprise Optional Power Sequencer Installation Guide Sun Enterprise Optional Power Sequencer Installation Guide For the Sun Enterprise 6500/5500 System Cabinet and the Sun Enterprise 68-inch Expansion Cabinet Sun Microsystems, Inc. 901 San Antonio Road Palo

More information

Cameroon Tourist visa Application for citizens of Tahiti living in Alberta

Cameroon Tourist visa Application for citizens of Tahiti living in Alberta Cameroon Tourist visa Application for citizens of Tahiti living in Alberta Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your

More information

POSTAL OUTLET FILE TECHNICAL SPECIFICATIONS

POSTAL OUTLET FILE TECHNICAL SPECIFICATIONS POSTAL OUTLET FILE TECHNICAL SPECIFICATIONS February 2014 1 POSTAL OUTLET DATA FILE TECHNICAL SPECIFICATIONS INTRODUCTION The Postal Outlet Data product provides information on postal outlets across Canada.

More information

Proposition d intervention

Proposition d intervention MERCREDI 8 NOVEMBRE Conférence retrofitting of social housing: financing and policies options Lieu des réunions: Hotel Holiday Inn,8 rue Monastiriou,54629 Thessaloniki 9.15-10.30 : Participation à la session

More information

L'Innovation en quittant prématurément l'école

L'Innovation en quittant prématurément l'école L'Innovation en quittant prématurément l'école UK/13/LLP-LdV/TOI-658 1 Information sur le projet Titre: Code Projet: Année: 2013 Type de Projet: Statut: Accroche marketing: L'Innovation en quittant prématurément

More information

2. Il faut + infinitive and its more nuanced alternative il faut que + subjunctive.

2. Il faut + infinitive and its more nuanced alternative il faut que + subjunctive. Teaching notes This resource is designed to enable students to broaden their range of expression on the issue of homelessness and poverty, specifically in terms of suggesting possible solutions. The aim

More information

Post-Secondary Opportunities For Student-Athletes / Opportunités post-secondaire pour les étudiantathlètes

Post-Secondary Opportunities For Student-Athletes / Opportunités post-secondaire pour les étudiantathlètes Post-Secondary Opportunities For Student-Athletes / Opportunités post-secondaire pour les étudiantathlètes Jean-François Roy Athletics Canada / Athlétisme Canada Talent Development Coordinator / Coordonnateur

More information

This document is a preview generated by EVS

This document is a preview generated by EVS INTERNATIONAL STANDARD NORME INTERNATIONALE IEC 62313 Edition 1.0 2009-04 Railway applications Power supply and rolling stock Technical criteria for the coordination between power supply (substation) and

More information

STUDENT APPLICATION FORM (Dossier d Inscription) ACADEMIC YEAR 2010-2011 (Année Scolaire 2010-2011)

STUDENT APPLICATION FORM (Dossier d Inscription) ACADEMIC YEAR 2010-2011 (Année Scolaire 2010-2011) Institut d Administration des Entreprises SOCRATES/ERASMUS APPLICATION DEADLINE : 20th November 2010 OTHER (Autre) STUDENT APPLICATION FORM (Dossier d Inscription) ACADEMIC YEAR 2010-2011 (Année Scolaire

More information

Veritas Storage Foundation 5.0 Software for SPARC

Veritas Storage Foundation 5.0 Software for SPARC Veritas Storage Foundation 5.0 Software for SPARC Release Note Supplement Sun Microsystems, Inc. www.sun.com Part No. 819-7074-10 July 2006 Submit comments about this document at: http://www.sun.com/hwdocs/feedback

More information

Electrical/Electronics

Electrical/Electronics Electrical/Electronics Volume 8 December 2007 Issue date: December 21, 2007 Info Update is published by the Canadian Standards Association (CSA) eight times a year. It contains important information about

More information

EVALUATING POLICY OUTCOMES: FEDERAL ECONOMIC DEVELOPMENT PROGRAMS IN ATLANTIC CANADA

EVALUATING POLICY OUTCOMES: FEDERAL ECONOMIC DEVELOPMENT PROGRAMS IN ATLANTIC CANADA LA REVUE The CANADIENNE Canadian Journal D'ÉVALUATION of Program Evaluation DE PROGRAMME Vol. 15 No. 2 Pages 57 68 57 ISSN 0834-1516 Copyright 2000 Canadian Evaluation Society EVALUATING POLICY OUTCOMES:

More information

Cameroon Tourist visa Application for citizens of Maldives living in Alberta

Cameroon Tourist visa Application for citizens of Maldives living in Alberta Cameroon Tourist visa Application for citizens of Maldives living in Alberta Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for

More information

RAPPORT FINANCIER ANNUEL PORTANT SUR LES COMPTES 2014

RAPPORT FINANCIER ANNUEL PORTANT SUR LES COMPTES 2014 RAPPORT FINANCIER ANNUEL PORTANT SUR LES COMPTES 2014 En application de la loi du Luxembourg du 11 janvier 2008 relative aux obligations de transparence sur les émetteurs de valeurs mobilières. CREDIT

More information

Cameroon Visitor visa Application for citizens of Canada living in Alberta

Cameroon Visitor visa Application for citizens of Canada living in Alberta Cameroon Visitor visa Application for citizens of Canada living in Alberta Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your

More information

Sun StorEdge A5000 Installation Guide

Sun StorEdge A5000 Installation Guide Sun StorEdge A5000 Installation Guide for Windows NT Server 4.0 Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, CA 94303-4900 USA 650 960-1300 Fax 650 969-9131 Part No. 805-7273-11 October 1998,

More information

Liste d'adresses URL

Liste d'adresses URL Liste de sites Internet concernés dans l' étude Le 25/02/2014 Information à propos de contrefacon.fr Le site Internet https://www.contrefacon.fr/ permet de vérifier dans une base de donnée de plus d' 1

More information

Sun StorEdge RAID Manager 6.2.21 Release Notes

Sun StorEdge RAID Manager 6.2.21 Release Notes Sun StorEdge RAID Manager 6.2.21 Release Notes formicrosoftwindowsnt Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, CA 94303-4900 USA 650 960-1300 Fax 650 969-9131 Part No. 805-6890-11 November

More information

Audit de sécurité avec Backtrack 5

Audit de sécurité avec Backtrack 5 Audit de sécurité avec Backtrack 5 DUMITRESCU Andrei EL RAOUSTI Habib Université de Versailles Saint-Quentin-En-Yvelines 24-05-2012 UVSQ - Audit de sécurité avec Backtrack 5 DUMITRESCU Andrei EL RAOUSTI

More information

Cours de Java. Sciences-U Lyon. Java - Introduction Java - Fondamentaux Java Avancé. http://www.rzo.free.fr

Cours de Java. Sciences-U Lyon. Java - Introduction Java - Fondamentaux Java Avancé. http://www.rzo.free.fr Cours de Java Sciences-U Lyon Java - Introduction Java - Fondamentaux Java Avancé http://www.rzo.free.fr Pierre PARREND 1 Octobre 2004 Sommaire Java Introduction Java Fondamentaux Java Avancé GUI Graphical

More information

Benin Business visa Application

Benin Business visa Application Benin Business visa Application Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your travel: Benin business visa checklist Filled

More information

Service Level Definitions and Interactions

Service Level Definitions and Interactions Service Level Definitions and Interactions By Adrian Cockcroft - Enterprise Engineering Sun BluePrints OnLine - April 1999 http://www.sun.com/blueprints Sun Microsystems, Inc. 901 San Antonio Road Palo

More information

Solaris 10 Documentation README

Solaris 10 Documentation README Solaris 10 Documentation README Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 817 0550 10 January 2005 Copyright 2005 Sun Microsystems, Inc. 4150 Network Circle, Santa

More information

Une campagne de sensibilisation est lancée (1) pour lutter (1) contre les conséquences de l'alcool au volant. Il faut absolument réussir (2).

Une campagne de sensibilisation est lancée (1) pour lutter (1) contre les conséquences de l'alcool au volant. Il faut absolument réussir (2). > les verbes du groupe deux la forme passive beaucoup de, trop de: les adverbes de quantité L'affiche est posée (1) sur le bord des routes pour sensibiliser (1) les gens au problème de l'alcool au volant.

More information

BILL C-665 PROJET DE LOI C-665 C-665 C-665 HOUSE OF COMMONS OF CANADA CHAMBRE DES COMMUNES DU CANADA

BILL C-665 PROJET DE LOI C-665 C-665 C-665 HOUSE OF COMMONS OF CANADA CHAMBRE DES COMMUNES DU CANADA C-665 C-665 Second Session, Forty-first Parliament, Deuxième session, quarante et unième législature, HOUSE OF COMMONS OF CANADA CHAMBRE DES COMMUNES DU CANADA BILL C-665 PROJET DE LOI C-665 An Act to

More information

TP : Système de messagerie - Fichiers properties - PrepareStatement

TP : Système de messagerie - Fichiers properties - PrepareStatement TP : Système de messagerie - Fichiers properties - PrepareStatement exelib.net Une société souhaite mettre en place un système de messagerie entre ses employés. Les travaux de l équipe chargée de l analyse

More information

ColdGuard Bi-PARTING DOOR INSTALLATION INSTRUCTIONS

ColdGuard Bi-PARTING DOOR INSTALLATION INSTRUCTIONS EHD TRACK LEVEL, (SET LEVEL ON PLASTIC HEADER. DO NOT PLACE LEVEL ON ALUMINUM TRACK.) TRACK IS FLUSH WITH TOP OF HEADER JUNCTION BOX IDLER PULLEY LOCATOR PINS LOCATOR PINS OPERATOR DOOR STOP JUNCTION BOX

More information

Brazil + JDBC Juin 2001, douin@cnam.fr http://jfod.cnam.fr/tp_cdi/douin/

Brazil + JDBC Juin 2001, douin@cnam.fr http://jfod.cnam.fr/tp_cdi/douin/ Brazil + JDBC Juin 2001, douin@cnam.fr http://jfod.cnam.fr/tp_cdi/douin/ version du 26 Mai 2003 : JDBC-SQL et Brazil pré-requis : lecture de Tutorial JDBC de Sun Bibliographie Brazil [Bra00]www.sun.com/research/brazil

More information

1-20020138637 26-sept-2002 Computer architecture and software cells for broadband networks Va avec 6526491

1-20020138637 26-sept-2002 Computer architecture and software cells for broadband networks Va avec 6526491 Les brevets CELL 14 décembre 2006 1 ARCHITECTURE GENERALE 1-20020138637 26-sept-2002 Computer architecture and software cells for broadband networks 6526491 2-6526491 25-févr-03 Memory protection system

More information

Keywords are identifiers having predefined meanings in C programming language. The list of keywords used in standard C are : unsigned void

Keywords are identifiers having predefined meanings in C programming language. The list of keywords used in standard C are : unsigned void 1. Explain C tokens Tokens are basic building blocks of a C program. A token is the smallest element of a C program that is meaningful to the compiler. The C compiler recognizes the following kinds of

More information

Scrubbing Disks Using the Solaris Operating Environment Format Program

Scrubbing Disks Using the Solaris Operating Environment Format Program Scrubbing Disks Using the Solaris Operating Environment Format Program By Rob Snevely - Enterprise Technology Center Sun BluePrints OnLine - June 2000 http://www.sun.com/blueprints Sun Microsystems, Inc.

More information

General Certificate of Education Advanced Level Examination June 2012

General Certificate of Education Advanced Level Examination June 2012 General Certificate of Education Advanced Level Examination June 2012 French Unit 4 Speaking Test Candidate s Material To be conducted by the teacher examiner between 7 March and 15 May 2012 (FRE4T) To

More information

Policy on Recruitment, Selection and Hiring of Teachers at the Youth Sector

Policy on Recruitment, Selection and Hiring of Teachers at the Youth Sector Policy on Recruitment, Selection and Hiring of Teachers at the Youth Sector Department responsible: Human Resources Effective date: October 29, 2015 Approved by: Resolution # EC 2015-427 References: Teachers'

More information

"Internationalization vs. Localization: The Translation of Videogame Advertising"

Internationalization vs. Localization: The Translation of Videogame Advertising Article "Internationalization vs. Localization: The Translation of Videogame Advertising" Raquel de Pedro Ricoy Meta : journal des traducteurs / Meta: Translators' Journal, vol. 52, n 2, 2007, p. 260-275.

More information

Archived Content. Contenu archivé

Archived Content. Contenu archivé ARCHIVED - Archiving Content ARCHIVÉE - Contenu archivé Archived Content Contenu archivé Information identified as archived is provided for reference, research or recordkeeping purposes. It is not subject

More information

TP N 10 : Gestion des fichiers Langage JAVA

TP N 10 : Gestion des fichiers Langage JAVA TP N 10 : Gestion des fichiers Langage JAVA Rappel : Exemple d utilisation de FileReader/FileWriter import java.io.*; public class Copy public static void main(string[] args) throws IOException File inputfile

More information

Gabon Tourist visa Application for citizens of Canada living in Alberta

Gabon Tourist visa Application for citizens of Canada living in Alberta Gabon Tourist visa Application for citizens of Canada living in Alberta Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your

More information

A Summary of the Canadian Firearm Act (FTA)

A Summary of the Canadian Firearm Act (FTA) PLEIAD CANADA INC. FINAL Risks and Benefits of Proposed Firearms Legislation Prepared for: RCMP/Canadian Firearms Program (CFP) Prepared by: Peter Hall Senior Consultant Final Table of Contents Page RISK

More information

The road haulage market and its social dimension, including the impact on safety

The road haulage market and its social dimension, including the impact on safety The road haulage market and its social dimension, including the impact on safety - European Parliament - TRAN Committee Brussels 5 May 2015 What is the ETF? Structure Pan-European trade union organisation;

More information

MapReduce Détails Optimisation de la phase Reduce avec le Combiner

MapReduce Détails Optimisation de la phase Reduce avec le Combiner MapReduce Détails Optimisation de la phase Reduce avec le Combiner S'il est présent, le framework insère le Combiner dans la pipeline de traitement sur les noeuds qui viennent de terminer la phase Map.

More information

International merchandise trade Commerce international

International merchandise trade Commerce international Argentina Argentine Imports: Volume 230 214 220 194 245 215 187 202 208 179 175... Importations : volume Imports: Unit Value 127 125 131 132 130 129 132 135 130 130 119 122 Importations : valeur unitaire

More information

Certificate of Incorporation Certificat de constitution

Certificate of Incorporation Certificat de constitution Request ID: 014752622 Province of Ontario Date Report Produced: 2012/10/30 Demande n : Province de ('Ontario Document produit le: Transaction ID: 0491 1 1 718 Ministry of Government Services Time Report

More information

Web - Travaux Pratiques 1

Web - Travaux Pratiques 1 Web - Travaux Pratiques 1 Pour rappel, le squelette d une page HTML5 est la suivante : Syntaxe ... ... Une fois qu une page est terminée,

More information

N1 Grid Service Provisioning System 5.0 User s Guide for the Linux Plug-In

N1 Grid Service Provisioning System 5.0 User s Guide for the Linux Plug-In N1 Grid Service Provisioning System 5.0 User s Guide for the Linux Plug-In Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 819 0735 December 2004 Copyright 2004 Sun Microsystems,

More information

In-Home Caregivers Teleconference with Canadian Bar Association September 17, 2015

In-Home Caregivers Teleconference with Canadian Bar Association September 17, 2015 In-Home Caregivers Teleconference with Canadian Bar Association September 17, 2015 QUESTIONS FOR ESDC Temporary Foreign Worker Program -- Mr. Steve WEST *Answers have been updated following the conference

More information

Join the Bilingual Revolution today! French-English Dual Language Programs. In New York City Public Schools

Join the Bilingual Revolution today! French-English Dual Language Programs. In New York City Public Schools Join the Bilingual Revolution today! French-English Dual Language Programs In New York City Public Schools There are more than 22,000 francophone children in NYC and only 3,000 have access to a bilingual

More information

NBC MANAGEMENT ACTION PLAN PLAN D ACTION DE CCBN

NBC MANAGEMENT ACTION PLAN PLAN D ACTION DE CCBN NBC MANAGEMENT ACTION PLAN PLAN D ACTION DE CCBN Please develop a detailed management action plan with actions that are specific, measurable, attainable, relevant and timely. Management Action Plans will

More information

Private banking: the post-eldorado era

Private banking: the post-eldorado era Private banking: the post-eldorado era Michel Juvet Partner 9 June 2015 All crises beget new regulations 2008: the turning point Client protection MIFID, UCITS, FIDLEG Bank balance sheets Basel III Banking

More information

LUDEP 1.0, un logiciel pour ordinateur personnel qui applique le nouveau modèle pulmonaire de la CIPR*

LUDEP 1.0, un logiciel pour ordinateur personnel qui applique le nouveau modèle pulmonaire de la CIPR* Radioprotection 1994 Vol. 29, n l, pages 81 à 86 Produits nouveaux LUDEP 1.0, un logiciel pour ordinateur personnel qui applique le nouveau modèle pulmonaire de la CIPR* N.S. JARVIS**, A. BIRCHALL** (Manuscrit

More information

Installation troubleshooting guide

Installation troubleshooting guide Installation troubleshooting guide Content ERROR CODE PROBLEMS... 3 Error code 301: Unknown protection system. Verify the installation.... 3 Error code 302: The software cannot be used. The computer date

More information

RAMAN SCATTERING INDUCED BY UNDOPED AND DOPED POLYPARAPHENYLENE

RAMAN SCATTERING INDUCED BY UNDOPED AND DOPED POLYPARAPHENYLENE RAMAN SCATTERING INDUCED BY UNDOPED AND DOPED POLYPARAPHENYLENE S. Krichene, S. Lefrant, G. Froyer, F. Maurice, Y. Pelous To cite this version: S. Krichene, S. Lefrant, G. Froyer, F. Maurice, Y. Pelous.

More information

CONSIGNES PARTICULIERES RELATIVES AUX PROCEDURES D ARRIVEE Particular instructions for arrivals procedures

CONSIGNES PARTICULIERES RELATIVES AUX PROCEDURES D ARRIVEE Particular instructions for arrivals procedures 2 LFTH 02 22 UG 13 ONSIGNES Instructions IP HYERES LE PLYVESTRE ONSIGNES PRTIULIERES RELTIVES UX PROEURES RRIVEE Particular instructions for arrivals procedures Observations Le roulage sur les brins d

More information

Power Distribution System. Additional Information on page 2 See Page 2 Page 6. Eaton. See Page 2. Additional Information on page 2

Power Distribution System. Additional Information on page 2 See Page 2 Page 6. Eaton. See Page 2. Additional Information on page 2 IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME SYSTEME CEI D ACCEPTATION MUTUELLE DE CERTIFICATS D ESSAIS DES EQUIPEMENTS ELECTRIQUES (IECEE) METHODE

More information

OTHER SCIENTIFIC AND TECHNICAL ISSUES THAT MAY BE NECESSARY FOR THE EFFECTIVE IMPLEMENTATION OF THE PROTOCOL

OTHER SCIENTIFIC AND TECHNICAL ISSUES THAT MAY BE NECESSARY FOR THE EFFECTIVE IMPLEMENTATION OF THE PROTOCOL CBD CONVENTION ON BIOLOGICAL DIVERSITY Distr. GENERAL UNEP/CBD/BS/COP-MOP/2/INF/6 18 April 2005 ORIGINAL: ENGLISH/FRENCH CONFERENCE OF THE PARTIES TO THE CONVENTION ON BIOLOGICAL DIVERSITY SERVING AS THE

More information

Les fragments. Programmation Mobile Android Master CCI. Une application avec deux fragments. Premier layout : le formulaire

Les fragments. Programmation Mobile Android Master CCI. Une application avec deux fragments. Premier layout : le formulaire Programmation Mobile Android Master CCI Bertrand Estellon Aix-Marseille Université March 23, 2015 Bertrand Estellon (AMU) Android Master CCI March 23, 2015 1 / 266 Les fragments Un fragment : représente

More information

TALKING ABOUT WORK CONDITIONS

TALKING ABOUT WORK CONDITIONS TALKING ABOUT WORK CONDITIONS PART 1: http://www.bbc.co.uk/worldservice/learningenglish/multimedia/london/unit5/listen1.shtml Voici les questions posées par John. Notez en français ou en anglais ce que

More information