sujet1: Correction Des Epreuves D Informatique _--Pratique--_ MEDDEB Mohamed Page 1 Devoirs et examens :

Size: px
Start display at page:

Download "sujet1: Correction Des Epreuves D Informatique _--Pratique--_ MEDDEB Mohamed Page 1 Devoirs et examens :"

Transcription

1 Correction Des Epreuves D Informatique sujet1: Program bac_2017_25_mai_s1; Uses Wincrt; Type tab = Array [1..20] Of Integer; n: Integer; T: tab; _--Pratique--_ 2017 Procedure saisir( n:integer); write('donner la taille du tableau :'); Readln(n); Until n In [3..20]; Procedure remplir( T:tab;n:Integer); For i:=1 To n Do Readln(T[i]); Until T[i]>0; Procedure afficher(t:tab;n:integer); i,s,j: Integer; ch,d,chd: string; ch := ''; j := 0; If (T[i] Mod 2=0) and (i<=n) Then Str(T[i],d); ch := ch+d+',' ; End chd := ch; s := 0; If Pos(',',chd)<>0 Then s := s+1; Delete(chd,Pos(',',chd),1); Until Pos(',',chd)=0; If (ch<>'') And (s>=2) Then j := j+1; ch := ''; Until i>n; Writeln('le nombre de séquences paires est ',j); Writeln('les séquences d''entiers pairs sont :'); ch := ''; If (T[i] Mod 2=0) and (i<=n) Then Str(T[i],d); ch := ch+d+',' ; End chd := ch; s := 0; If Pos(',',chd)<>0 Then s := s+1; Delete(chd,Pos(',',chd),1); Until Pos(',',chd)=0; If (ch<>'') And (s>=2) Then Writeln(Copy(ch,1,Length(ch)- 1)); ch := ''; Until i>n; saisir(n); remplir(t,n); afficher(t,n); End. MEDDEB Mohamed Page 1

2 sujet2: Program bac_2017_25_mai_s2; Uses Wincrt; n: string; Function verif(n:string): Boolean; test: Boolean; If n[i] In ['0'..'9'] Then test := True test := False; Until (Not(test)) Or (i>=length(n)); verif := (test And (Length(n)=8)); Procedure saisir( n:string); write('saisir le numero de telephone à deviner : '); Readln(n); Until verif(n); Function norepeat(ch:string): string; ch2: string; ch2 := ''; For i:=1 To Length(ch) Do If Pos(ch[i],ch2)=0 Then ch2 := ch2+ch[i]; norepeat := ch2; Procedure deviner(n:string); i,j,k: Integer; ch: string; i := 8; Writeln('vous avez ',i,' essais'); write('proposer un numéro de téléphone :'); Readln(ch); Until verif(ch); If ch<>n Then j:=0; j:=j+1; k:=0; if ch[j]<>n[j] Then k:=k+1; if (n[k]=ch[j]) And (j<>k) then Writeln(ch[j],' qui est à la position ',j,' dans la proposition n''est pas à sa bonne position'); until (k>=length(n)) or ((n[k]=ch[j]) And (j<>k)); Until j>=length(ch); i := i-1; If i<>1 Then Writeln('il vous reste ',i,' essais') Writeln('il vous reste ',i,' essai'); For j:=1 To Length(ch) Do If ch[j]=n[j] Then write(ch[j]); End write('-'); Writeln; Until (n=ch) Or (i<=1); If n<>ch Then Writeln('désolé, vous avez perdu') Writeln('bravo, vous avez gagné'); saisir(n); Clrscr; deviner(n); End. MEDDEB Mohamed Page 2

3 sujet3: Program bac_2017_25_mai_s3; Uses Wincrt; ch: string; p: Integer; Function verif(ch:string): Boolean; test: Boolean; If Upcase(ch[i]) In ['A'..'Z',' '] Then test := True test := False; Until (Not(test)) Or (i>=length(ch)); verif := test; Procedure saisir( ch:string); Readln(ch); Until verif(ch); Function nbmot(ch:string): Integer; i,j,n: Integer; T: Array [1..200] Of string; j := 1; If Upcase(ch[i]) In ['A'..'Z'] Then T[j] := T[j]+ch[i] j := j+1; Until i>=length(ch); n := 0; For i:=1 To j Do If T[i]<>'' Then n := n+1; nbmot := n; Function crypter(ch:string;p:integer): String; i,ordch: Integer; Chrd: string; chrd:=''; For i:=1 To Length(ch) Do If ch[i]=' ' Then Chrd :=Chrd + ch[i] If ch[i] In ['A'..'Z'] Then ordch := Ord(ch[i])+p; While not(ordch In [65..91]) Do ordch := ordch-26; Chrd :=chrd + Chr(ordch); End If ch[i] In ['a'..'z'] Then ordch := Ord(ch[i])+p; While not(ordch In [ ]) Do ordch := ordch-26; Chrd :=chrd + Chr(ordch); crypter:=chrd; saisir(ch); p := nbmot(ch); writeln(p); Writeln(crypter(ch,p)); End. MEDDEB Mohamed Page 3

4 sujet4: Program bac_2017_25_mai_s4; uses wincrt; cle,init,rib:string; End. saisir(init,rib); cle:=cle_iban(init); writeln('l''iban correspondant est : ',init+cle+rib); Function verif(ch:string):boolean; if ch[i] in ['A'..'Z'] then test:=true test:=false; until (i>=length(ch)) or (not(test)); verif:=test; sujet5: Program bac_2017_25_mai_s5; uses wincrt; type tab=array [1..250] of string; tableau=array [1..250] of longint; n:integer; tb,te:tab; tbu:tableau; procedure saisir(var init,rib:string); readln(init); Until (Length(init)=2) and (verif(init)); readln(rib); until length(rib) in [10..30]; function cle_iban(init:string):string; ch,ch1:string; d,i,e:integer; ch:=''; for i:=1 to length(init) Do str(ord(init[i])-55,ch1); ch:=ch+ch1; ch:=ch+'00'; val(ch,d,e); d:=98-(d mod 97); if d<10 then d:=d*10; str(d,ch); cle_iban:=ch; Function verifb(ch:string):boolean; s, if ch[i] in ['0'..'9','#'] then test:=true else test:=false; if ch[i]='#' then s:=s+1; until (i>=length(ch)) or (not(test)); verifb:=(test) and (s=1); function veriflength(ch:string):boolean; test1,test2:boolean; p:integer; p:=pos('#',ch); if length(copy(ch,1,p-1))<=3 then test1:=true else test1:=false; if length(copy(ch,p+1,length(ch)-p))<=3 then test2:=true else test2:=false; veriflength:=(test1) and (test2); function verif(ch:string):boolean; MEDDEB Mohamed Page 4

5 i:integer; if ch[i] in ['0'..'9'] then test:=true else test:=false; until (not(test)) or (i>=length(ch)); verif:=test; procedure remplir(var te,tb:tab;n:integer); readln(te[i]); until (verif(te[i])) and (length(te[i])=6); readln(tb[i]); until (verifb(tb[i])) and (veriflength(tb[i])); max:=tbu[1]; for i:=2 to n Do if tbu[i]>max then max:=tbu[i]; ch:=''; if max=tbu[i] then ch:=ch+te[i]+'-'; delete(ch,length(ch),1); writeln('le besoin budgétaire le plus élevé est ',max,' D et les écoles concernées sont : ',ch); end. write('donner le nombre d''écoles à visiter :'); readln(n); until n in [2..250]; remplir(te,tb,n); generer(tb,tbu,n); afficher(te,tbu,n); procedure generer(tb:tab;var tbu:tableau;n:integer); Const p1=80; p2=160; i,p,ntableaux,ntables,e:integer; p:=pos('#',tb[i]); val(copy(tb[i],1,p-1),ntableaux,e); val(copy(tb[i],p+1,length(tb[i])-p),ntables,e); tbu[i]:=(p1*ntableaux)+(p2*ntables); procedure afficher(te:tab;tbu:tableau;n:integer); ch:string; max:longint; MEDDEB Mohamed Page 5

6 sujet6: Program bac_2017_25_mai_s6; uses wincrt; code:string; sujet7: Program bac_2017_25_mai_s7; Uses Wincrt; mot,masque: string; function verif(ch:string):boolean; test,test1:boolean; begin if (ch[1] in ['A'..'Z']) then test1:=true else test1:=false; i:=1; if (i>1) and (ch[i] in ['0'..'9']) then test:=true else test:=false; until (i>=length(ch)) or not(test); verif:=test and test1 and (length(ch)=12); function authentique(ch:string):boolean; d,e,i,s:integer; aux:string; str(ord(ch[1])-64,aux); delete(ch,1,1); ch:=aux+ch; for i:=1 to length(ch) Do val(ch[i],d,e); s:=s+d; authentique:=(s mod 9 = 8); repeat write('saisir le code à valider :'); readln(code); until verif(code); if authentique(code) Then writeln('c''est un billet authentique') writeln('attention! ce billet n''est pas authentique'); end. Function verif(ch:string): Boolean; test: Boolean; If (Upcase(ch[i]) In ['A'..'Z']) Then test := True test := False; Until (i>=length(ch)) Or Not(test); verif := test And (Length(ch) In [5..20]); Function masquer(ch:string): string; ch1: string; ch1 := ''; ch1 := ch1+ch[1]; For i:=1 To (Length(ch)-2) Do ch1:=ch1+'-'; ch1 := ch1+ch[length(ch)]; masquer := ch1; Procedure remplace( ch:string;ch1:string;c:char); For i:=2 To (Length(ch)-1) Do If ch1[i]=c Then ch[i] := c; Procedure deviner(mot:string; masque:string); tentative: Integer; c: Char; Writeln('le mot à deviner est ',masque); MEDDEB Mohamed Page 6

7 tentative := Length(mot); Writeln('il vous reste ',tentative,' essai(s)'); write('proposer un caractere :'); Readln(c); Until (Upcase(c) In ['A'..'Z']); remplace(masque,mot,c); If (masque<>mot) Then tentative := tentative-1; if tentative<>0 Then Writeln('le mot à deviner est ',masque); Until (masque=mot) Or (tentative<=0); If (tentative<=0) Then Writeln('desole, vous avez perdu ') Writeln('bravo, vous avez gagne '); writeln('le mot masqué est : ',mot); write('saisir le mot à deviner :'); Readln(mot); Until verif(mot); Clrscr; masque := masquer(mot); deviner(mot,masque); End. sujet8: Program bac_2017_25_mai_s8; Uses Wincrt; m:string; function valide(message:string):boolean; if (message[i] in ['A'..'Z',' ']) then test:=true else test:=false; until (i>=length(message)) or not(test); valide:=test and (length(message) mod 2 = 0); procedure saisir(var message:string); write('donner une chaine à coder :'); readln(message); until valide(message); function crypter(message:string):string; i,e,x1,x2,yn1,yn2:integer; yc1,yc2:char; ch,ch1,aux,mcrypte,y1,y2:string; mcrypte:=''; for i:=1 to length(message) Do if i mod 2=1 Then ch:='('; if message[i] in ['A'..'Z'] Then str(ord(message[i])-65,aux) aux:='26'; ch:=ch+aux+','; if i mod 2=0 Then if message[i] in ['A'..'Z'] Then str(ord(message[i])-65,aux) else aux:='26'; ch:=ch+aux+')'; MEDDEB Mohamed Page 7

8 ch1:='('; val(copy(ch,2,pos(',',ch)-1),x1,e); val(copy(ch,pos(',',ch)+1,length(ch)- pos(',',ch)-1),x2,e); str((((11*x1)+(3*x2)) mod 27),y1); str((((7*x1)+(4*x2)) mod 27),y2); ch1:=ch1+y1+','+y2+')'; if y1='26' then yc1:=' ' else val(copy(ch1,2,pos(',',ch1)- 1),yn1,e); yc1:=chr(yn1+65); mcrypte:=mcrypte+yc1; if y2='26' then yc2:=' ' val(copy(ch1,pos(',',ch1)+1, length(ch1)-pos(',',ch1)-1),yn2,e); yc2:=chr(yn2+65); mcrypte:=mcrypte+yc2; crypter:=mcrypte; end. saisir(m); writeln(crypter(m)); sujet9: program bac_2017_25_mai_s9; uses wincrt; Type tableau=array [1..100] of string; tab=array[1..100] of real; TC:tableau; TN:tab; N:integer; procedure saisir(var n:integer); write('donner le nombre de participants :'); readln(n); until n in [5..100]; function verifgov(ch:string):boolean; if ch='' then test:=false if upcase(ch[i]) in ['A'..'Z'] then test:=true else test:=false; until not(test) or (i>=length(ch)); verifgov:=test and (length(ch)<=15); function verif(ch:string):boolean; test1,test2,testotal:boolean; if ch[i] in ['A'..'Z'] then test1:=true else test1:=false; until (i>=3) or not(test1); if test1=false then testotal:=false else MEDDEB Mohamed Page 8

9 if ch[i] in ['0'..'9'] then test2:=true else test2:=false; until not(test2) or (i>=length(ch)); testotal:=test1 and test2; verif:=(length(ch)=6) and testotal; function npr(tn:tab;n:integer):integer; i,s:integer; if TN[i]>=10 then s:=s+1; npr:=s; function ntpg(tn:tab;tc:tableau;gov:string;n:integer):integer; ch:string; i,j,s:integer; ch:=''; for j:=1 to 3 Do ch:=ch+upcase(gov[j]); if (ch=copy(tc[i],1,3)) then s:=s+1; ntpg:=s; function nprg(tn:tab;tc:tableau;gov:string;n:integer):integer; i,j,s:integer; ch:string; ch:=''; for j:=1 to 3 Do ch:=ch+upcase(gov[j]); s:=s+1; if (ch=copy(tc[i],1,3)) and (TN[i]>=10) then nprg:=s; procedure remplir(var TC:tableau;var TN:tab;n:integer); readln(tc[i]); Until verif(tc[i]); readln(tn[i]); until (TN[i]>=0) and (TN[i]<=20); procedure afficher(tc:tableau;tn:tab;n:integer); TRG,TRN:real; gov:string; TRN:=(npr(TN,n)/n)*100; writeln('le taux de reussite national est de ',TRN:5:2,' %'); readln(gov); until verifgov(gov); TRG:=((nprg(TN,TC,gov,n)/ntpg(TN,TC,gov,n))*100); writeln('le taux de reussite de ',gov,' est ',TRG:5:2,' %'); begin end. saisir(n); remplir(tc,tn,n); afficher(tc,tn,n); MEDDEB Mohamed Page 9

10 sujet10: program bac_2017_25_mai_s10; uses wincrt; Type tab=array [ ] of string; tableau=array [ ] of integer; ch:string; function valide(ch:string):boolean; test:=false; if ch<>'' Then if ch[i] in ['a'..'z'] then test:=true else test:=false; until (not(test)) or (i>=length(ch)); valide:=(test and (ch<>'') and (length(ch)>=2)); Procedure saisir(var ch:string); write('donner une chaine: '); readln(ch); until valide(ch); function existence(t:tab;ch:string;j:integer):boolean; if T[i]=ch then test:=true else test:=false; until (i>=j) or test; existence:=test; procedure afficher(ch:string); T:tab; Toc:tableau; i,j,k,l,s:integer; j:=0; for i:=1 to length(ch)-1 Do if (ch[i]<>ch[i+1]) Then if j<>0 Then if not(existence(t,ch[i]+ch[i+1],j)) Then s:=s+1; j:=j+1; T[j]:=ch[i]+ch[i+1]; End j:=j+1; T[j]:=ch[i]+ch[i+1]; if j<>0 Then for k:=1 to j Do for l:=1 to (length(ch)-1) Do if T[k]=(ch[l]+ch[l+1]) then ',T[k],' est ',Toc[k]); end. saisir(ch); afficher(ch); Toc[k]:=s; writeln('le nombre d''occurences de MEDDEB Mohamed Page 10

Correction Bac pratique 28/05/2012 8h30

Correction Bac pratique 28/05/2012 8h30 Correction Bac pratique 28/05/2012 8h30 program tp28052012_8h30; uses wincrt; type tab=array[1..20] of integer; n,p:integer; t:tab; procedure saisie( n:integer); writeln('=====================donner la

More information

Corrections proposées par Mr Adnen Smii. Propositions de correction Bac Pratique informatique 4 scientifiques -27 mai h

Corrections proposées par Mr Adnen Smii. Propositions de correction Bac Pratique informatique 4 scientifiques -27 mai h Propositions de correction Bac Pratique informatique 4 scientifiques -27 mai 2014-8h Program BP_2014_27_Mai_8H; uses wincrt; Type Tab=Array[1..50] of integer; VAR T1,T2:Tab; N1,N2,N,M,A1,A2:integer; Procedure

More information

Correction proposée par Mr Najeh SOUGUIR 1/8

Correction proposée par Mr Najeh SOUGUIR 1/8 Corrigés Bac pratique Informatique Sections Math, Sciences et Technique 28 mai 2012(8h30, 10h,14h, 15h30) lundi 28 mai 2012 à 8h30 program Lundi_28_05_2012_8h30; type tab= array [1..20] of integer; var

More information

Correction bac pratique 2012 g1

Correction bac pratique 2012 g1 Bac pratique 2012 g1 Correction bac pratique 2012 g1 program FactPrem; uses wincrt; type fdat=file of integer; tab=array[1..20] of string; var fd:fdat; ft:text;n,p,d:integer;decomp:tab; {***** fonction

More information

SERIE N 1. 4 ème Année informatiques. Exercice 3. Exercice 4 (Manuel Scolaire) Page [1] Les enregistrements & Les fichiers Infoslpm.e-monsite.

SERIE N 1. 4 ème Année informatiques. Exercice 3. Exercice 4 (Manuel Scolaire) Page [1] Les enregistrements & Les fichiers Infoslpm.e-monsite. Exercice 3 SERIE N 1 program exercice3; uses wincrt; type st = string[30]; fch = file of st; var f:fch; nom: st; b : integer; procedure saisie(var f:fch); var vil:st; rep:char; write('donner le nom d''une

More information

TD 2. Correction TP info

TD 2. Correction TP info TP 2 Exercice 3 : Impôts Sub impot() Dim montant As Integer montant = Cells(1, 1).Value Dim montanttot As Integer Select Case montant Case 0 To 1000 montanttot = 0.1 * montant Case 1001 To 5000 montanttot

More information

About Transferring License Rights for. PL7 V4.5 and Unity Pro V2.3 SP1 Software

About Transferring License Rights for. PL7 V4.5 and Unity Pro V2.3 SP1 Software Page 1 of 38 Click here to access the English Cliquez ici pour accéder au Français Klicken Sie hier, um zum Deutschen zu gelangen Premete qui per accedere all' Italiano Pulse acquì para acceder al Español

More information

Mardi 3 avril Epreuve écrite sur un document en anglais

Mardi 3 avril Epreuve écrite sur un document en anglais C O L L E CONCOURS INTERNE ET EXTERNE DE TECHNICIEN DE CLASSE NORMALE DES SYSTEMES D INFORMATION ET DE COMMUNICATION Ne pas cacher le cadre d identité. Cette opération sera réalisée par l administration

More information

VLANs. Commutation LAN et Wireless Chapitre 3

VLANs. Commutation LAN et Wireless Chapitre 3 VLANs Commutation LAN et Wireless Chapitre 3 ITE I Chapter 6 2006 Cisco Systems, Inc. All rights reserved. Cisco Public 1 Objectifs Expliquer le rôle des VLANs dans un réseau convergent. Expliquer le rôle

More information

Analyse statique de programmes avioniques

Analyse statique de programmes avioniques June 28th 2013. Forum Méthodes Formelles Cycle de conférences: Analyse Statique : «Retour d expériences industrielles» Analyse statique de programmes avioniques Presenté par Jean Souyris (Airbus Opérations

More information

Ecole Nationale d Ingénieurs de Brest. Programmation par objets Le langage C++ Type Concret de Données en C++

Ecole Nationale d Ingénieurs de Brest. Programmation par objets Le langage C++ Type Concret de Données en C++ Notes de cours Ecole Nationale d Ingénieurs de Brest Programmation par objets Le langage C++ Type Concret de Données en C++ J. Tisseau 1995/1997 enib c jt......... 1/30 Du TAD au TCD Type Abstrait de Données

More information

... ; ako je a n parno. ; ako je a n neparno

... ; ako je a n parno. ; ako je a n neparno Zadaci vezani za ciklus sa preduslovom (WHILE) Zad. Napisati program za izračunavanje n_tog stepena broja a. Zad2. Napisati program za izračunavanje sume S kvadrata parnih i kubova neparnih prirodnih brojeva

More information

The Personal Information Canadians Give to Retailers

The Personal Information Canadians Give to Retailers The Personal Information Canadians Give to Retailers Final Report Submitted to: Office of the Privacy Commissioner January 4, 2008 Table of Contents RESEARCH PURPOSE... 1 METHODOLOGY... 2 KEY FINDINGS...

More information

Input parameters. Function. An ideal black-box representation of a function

Input parameters. Function. An ideal black-box representation of a function 7 Functions 7. Introduction Functions are identifiable pieces of code with a defined interface. They are called from any part of a program and allow large programs to be split into more manageable tasks,

More information

ASPEN Argent / Silver

ASPEN Argent / Silver TEL.: 1-866-536-6247 FAX: 1-800-361-9000 www.rthibert.com S704A-MC MAG NET AVRIL 2017 APRIL Les spéciaux s appliquent aux items en inventaire durant la période indiquée ; ne comprend pas les commandes

More information

Case by Case. Chapter 3

Case by Case. Chapter 3 Chapter 3 Case by Case In the previous chapter, we used the conditional expression if... then... else to define functions whose results depend on their arguments. For some of them we had to nest the conditional

More information

System Controller CPU Board, Netra CompactPCI, Installation Guide. Sun Fire E25K/E20K Systems Sun Fire 15K/12K Systems

System Controller CPU Board, Netra CompactPCI, Installation Guide. Sun Fire E25K/E20K Systems Sun Fire 15K/12K Systems 8F ON 1 3 3 4 5 6 System Controller CPU Board, Netra CompactPCI, Installation Guide Sun Fire E25K/E20K Systems Sun Fire 15K/12K Systems Firmware Requirements Sun Fire E25K/E20K systems and upgraded Sun

More information

This document is a preview generated by EVS

This document is a preview generated by EVS INTERNATIONAL STANDARD ISO 472 NORME INTERNATIONALE Fourth edition Quatrième édition 2013-02-01 Plastics Vocabulary Plastiques Vocabulaire Reference number Numéro de référence ISO 2013 COPYRIGHT PROTECTED

More information

{ -- FLORIDA HIGH SCHOOLS COMPUTING COMPETITION '83 } { -- PASCAL PROGRAM SOLUTIONS }

{ -- FLORIDA HIGH SCHOOLS COMPUTING COMPETITION '83 } { -- PASCAL PROGRAM SOLUTIONS } FHSCC '83 PASCAL PROGRAM SOLUTIONS 145 { -- FLORIDA HIGH SCHOOLS COMPUTING COMPETITION '83 } { -- PASCAL PROGRAM SOLUTIONS } {1.1} program One1T83; { -- This program will round a number to nearest whole

More information

8.4. Mobile Platform Release Notes

8.4. Mobile Platform Release Notes 8.4 Mobile Platform Release Notes DL RELEASE NOTES WEBRATIO MOBILE PLATFORM 8.4 Copyright 2015 WebRatio s.r.l All rights reserved. This document is protected by copyright and distributed under licenses

More information

Latest information prior to deployment of "Dialogys V7.5.6" Contents. What is Dialogys? How often is data updated?... 5

Latest information prior to deployment of Dialogys V7.5.6 Contents. What is Dialogys? How often is data updated?... 5 Latest information prior to deployment of "Dialogys V7.5.6" Contents What is Dialogys?... 5 How often is data updated?... 5 What will the November 2014 delivery with the new Dialogys application contain

More information

Laboratoire de l Informatique du Parallélisme

Laboratoire de l Informatique du Parallélisme Laboratoire de l Informatique du Parallélisme École Normale Supérieure de Lyon Unité Mixte de Recherche CNRS-INRIA-ENS LYON n o 8512 SPI Multiplication by an Integer Constant Vincent Lefevre January 1999

More information

LVB-2 INSTRUCTION SHEET. Leakage Current Verification Box

LVB-2 INSTRUCTION SHEET. Leakage Current Verification Box LVB-2 INSTRUCTION SHEET Leakage Current Verification Box V 1.02 1.2018 DECLARATION OF CONFORMITY Manufacturer: Address: Product Name: Model Number: Associated Research, Inc. 13860 W. Laurel Dr. Lake Forest,

More information

Package CUFF. May 28, 2018

Package CUFF. May 28, 2018 Note -*- Encoding: utf-8 -*- Type Package Title Charles's Utility Function using Formula Version 1.5 Date 2018-05-27 Author Package CUFF May 28, 2018 Maintainer Depends R (>= 3.2.2)

More information

SunGigabitEthernetAdapter2.0

SunGigabitEthernetAdapter2.0 Copyright 1998 Sun Microsystems,Inc. All rights reserved. Protected by copyright and licenses restricting use, copying, distribution, and decompilation. Sun, Sun Microsystems, the Sun Logo, SPARC, OpenBoot,

More information

IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME. Additional Information on page 2

IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME. Additional Information on page 2 DK-69361-UL IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME CB TEST CERTIFICATE Product Switching Power Supply for Building In Name and address of the

More information

SOUTH AFRICAN NATIONAL STANDARD

SOUTH AFRICAN NATIONAL STANDARD ISBN 978-0-626-33587-8 Edition 1.2 and IEC corr. 1, 2 :2013 Edition 2.2 and corr. 1, 2 SOUTH AFRICAN NATIONAL STANDARD Degrees of protection provided by enclosures (IP Code) This national standard is the

More information

Oracle ZFS Storage Appliance Cabling Guide. For ZS3-x, 7x20 Controllers, and DE2-24, Sun Disk Shelves

Oracle ZFS Storage Appliance Cabling Guide. For ZS3-x, 7x20 Controllers, and DE2-24, Sun Disk Shelves Oracle ZFS Storage Appliance Cabling Guide For ZS3-x, 7x20 Controllers, and DE2-24, Sun Disk Shelves Part No: E53670-01 June 2014 Copyright 2009, 2014, Oracle and/or its affiliates. All rights reserved.

More information

Summary of Embroidery Patterns Résumé des motifs de broderie Resumen de diseños de bordado

Summary of Embroidery Patterns Résumé des motifs de broderie Resumen de diseños de bordado Summary of Embroidery Patterns Résumé des motifs de broderie Resumen de diseños de bordado Common design patterns Motifs courants Diseños comunes For tutorial practice Pour une pratique d apprentissage

More information

WLM Accounting. User s Guide AIX ORDER REFERENCE 86 A2 76EF 00

WLM Accounting. User s Guide AIX ORDER REFERENCE 86 A2 76EF 00 WLM Accounting User s Guide AIX ORDER REFERENCE 86 A2 76EF 00 WLM Accounting User s Guide AIX Software September 2001 BULL CEDOC 357 AVENUE PATTON B.P.20845 49008 ANGERS CEDEX 01 FRANCE ORDER REFERENCE

More information

Tutorial 4: Flow Artificial Intelligence

Tutorial 4: Flow Artificial Intelligence Tutorial 4: Flow Artificial Intelligence G.Guérard Les étudiants doivent faire des groupes de 3-4 afin de faire un brainstorming pour chaque exercice. Il n est pas demandé aux étudiants d avoir une connaissance

More information

New Complexity Results on Array Contraction and Related Problems

New Complexity Results on Array Contraction and Related Problems Laboratoire de l Informatique du Parallélisme École Normale Supérieure de Lyon Unité Mixte de Recherche CNRS-INRIA-ENS LYON n o 5668 New Complexity Results on Array Contraction and Related Problems (Extension

More information

SunVTS Quick Reference Card

SunVTS Quick Reference Card SunVTS Quick Reference Card Sun Microsystems, Inc. www.sun.com Part No. 820-1672-10 September 2007, Revision 01 Submit comments about this document at: http://www.sun.com/hwdocs/feedback Copyright 2007

More information

Web Sémantique TD 1 - RDF

Web Sémantique TD 1 - RDF Master MIASHS UFR SHS, Université Grenoble Alpes Manuel Atencia 2017-2018 Web Sémantique TD 1 - RDF Exercice 1 La table suivante (Table 1) montre un échantillon de données d une base de données relationnelle

More information

IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME. Additional Information on page 2

IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME. Additional Information on page 2 DK-69327-UL IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME CB TEST CERTIFICATE Product Switching Power Supply for Building In Name and address of the

More information

SunVTS Quick Reference Card

SunVTS Quick Reference Card SunVTS Quick Reference Card Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, CA 94303-4900 U.S.A. 650-960-1300 Part No. 806-6519-10 January 2001, Revision A Send comments about this document to:

More information

Conception Orientée Objet. Romain Rouvoy Licence mention Informatique Université Lille 1

Conception Orientée Objet. Romain Rouvoy Licence mention Informatique Université Lille 1 Conception Orientée Objet Romain Rouvoy Licence mention Informatique Université Lille 1 1 Menu du jour 1. Coder c est douter 2. De la génération 3. À l analyse 2 Mauvaise conception? Où est le problème?

More information

Préparation au concours ACM TP 2

Préparation au concours ACM TP 2 Préparation au concours ACM TP 2 Christoph Dürr Jill-Jênn Vie September 25, 2014 Quelques conseils Entraînez-vous à identifier les problèmes les plus faciles. Lisez bien les contraintes d affichage : faut-il

More information

Sun Control Station. Performance Module. Sun Microsystems, Inc. Part No September 2003, Revision A

Sun Control Station. Performance Module. Sun Microsystems, Inc.   Part No September 2003, Revision A Sun Control Station Performance Module Sun Microsystems, Inc. www.sun.com Part No. 817-3610-10 September 2003, Revision A Submit comments about this document at: http://www.sun.com/hwdocs/feedback Copyright

More information

CERTIFICAT D'ESSAI OC. Switching Power Supply XP POWER L L C RED HILL AVE, SUITE 100 TUSTIN CA 92780, USA

CERTIFICAT D'ESSAI OC. Switching Power Supply XP POWER L L C RED HILL AVE, SUITE 100 TUSTIN CA 92780, USA US-26019-UL 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)

More information

Scheduling Tasks Sharing Files from Distributed Repositories (revised version)

Scheduling Tasks Sharing Files from Distributed Repositories (revised version) Laboratoire de l Informatique du Parallélisme École Normale Supérieure de Lyon Unité Mixte de Recherche CNRS-INRIA-ENS LYON-UCBL n o 8 Scheduling Tasks Sharing Files from Distributed Repositories (revised

More information

Sun Fire TM E2900 Systems Getting Started

Sun Fire TM E2900 Systems Getting Started Sun Fire TM E2900 Systems Getting Started Accessing the Sun Fire E2900 Documentation Files The full documentation set for Sun Fire E2900 systems is available on the documentation CD (doc CD). 1. Insert

More information

Solaris 8 6/00 Sun Hardware Roadmap

Solaris 8 6/00 Sun Hardware Roadmap Solaris 8 6/00 Sun Hardware Roadmap This document is a guide to the CDs and documents involved in installing the Solaris 8 6/00 software. Note The arrangement of CDs in the Solaris 8 product is different

More information

Efficient Learning of Sparse Representations with an Energy-Based Model

Efficient Learning of Sparse Representations with an Energy-Based Model Efficient of Sparse Representations with an Energy-Based Model Marc Aurelio Ranzato, Christopher Poultney, Sumit Chopra, Yann Le Cun Presented by Pascal Lamblin February 14 th, 2007 Efficient of Sparse

More information

Introduction to C Programming. Chih-Wei Tang ( 唐之瑋 ) Department of Communication Engineering National Central University JhongLi, Taiwan

Introduction to C Programming. Chih-Wei Tang ( 唐之瑋 ) Department of Communication Engineering National Central University JhongLi, Taiwan Introduction to C Programming Chih-Wei Tang ( 唐之瑋 ) Department of Communication Engineering National Central University JhongLi, Taiwan Outline Printing texts Adding 2 integers Comparing 2 integers C.E.,

More information

Sun StorEdge Network 2 Gb Brocade SilkWorm 3200, 3800, and Core Fabric Switches Guide to Documentation, 3.x / Firmware

Sun StorEdge Network 2 Gb Brocade SilkWorm 3200, 3800, and Core Fabric Switches Guide to Documentation, 3.x / Firmware Network 2 Gb SilkWorm 3200, 3800, and 12000 Core Fabric Switches Guide to Documentation, 3.x / 4.2.0 Firmware For late-breaking about the Network 2 Gb SilkWorm 3200 and 3800 Core Fabric Switches with v3.x

More information

GOZO COLLEGE. Boys Secondary Victoria - Gozo, Malta Ninu Cremona. Half Yearly Examination

GOZO COLLEGE. Boys Secondary Victoria - Gozo, Malta Ninu Cremona. Half Yearly Examination GOZO COLLEGE Boys Secondary Victoria - Gozo, Malta Ninu Cremona Half Yearly Examination 2010 2011 Subject: Form: Time: COMPUTER STUDIES 4 Junior Lyceum 1 hr 30 min NAME: CLASS: INDEX NO: Instructions to

More information

Sun Java System Directory Server Release Notes for HP-UX

Sun Java System Directory Server Release Notes for HP-UX Sun Java System Directory Server Release Notes for HP-UX Version 5.2 2005Q1 Part Number 819-1566-10 These Release Notes contain important information available at the time of release of Sun Java System

More information

Compilation TP 0.0 : The target architecture: Digmips

Compilation TP 0.0 : The target architecture: Digmips Compilation TP 0.0 : The target architecture: Digmips C. Alias & G. Iooss The goal of these TPs is to construct a C compiler for Digmips, a small MIPS processor implemented using the Diglog logic simulation

More information

V2 2/4/ Ch Programming in C. Flow of Control. Flow of Control. Flow of control The order in which statements are executed

V2 2/4/ Ch Programming in C. Flow of Control. Flow of Control. Flow of control The order in which statements are executed Programming in C 1 Flow of Control Flow of control The order in which statements are executed Transfer of control When the next statement executed is not the next one in sequence 2 Flow of Control Control

More information

Switching Power Supply DELTA ELECTRONICS INC 3 TUNGYUAN RD CHUNGLI INDUSTRIAL ZONE TAOYUAN COUNTY TAIWAN

Switching Power Supply DELTA ELECTRONICS INC 3 TUNGYUAN RD CHUNGLI INDUSTRIAL ZONE TAOYUAN COUNTY TAIWAN DK-48554-A2-UL 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)

More information

Memory Hole in Large Memory X86 Based Systems

Memory Hole in Large Memory X86 Based Systems Memory Hole in Large Memory X86 Based Systems By XES Product Development Team http://www.sun.com/desktop/products Wednesday, May 19, 2004 1 Copyright 2004 Sun Microsystems, Inc. 4150 Network Circle, Santa

More information

When double rounding is odd

When double rounding is odd Laboratoire de l Informatique du Parallélisme École Normale Supérieure de Lyon Unité Mixte de Recherche CNRS-INRIA-ENS LYON-UCBL n o 5668 When double rounding is odd Sylvie Boldo, Guillaume Melquiond November

More information

Using the Document Camera. Features of Interest During Operation

Using the Document Camera. Features of Interest During Operation Using the Document Camera This document provides instructions for controlling the Vaddio DocCAM 20 HDBT ceiling-mounted document camera using the IR remote. You may use this material in your organization's

More information

Flow of Control. Flow of control The order in which statements are executed. Transfer of control

Flow of Control. Flow of control The order in which statements are executed. Transfer of control 1 Programming in C Flow of Control Flow of control The order in which statements are executed Transfer of control When the next statement executed is not the next one in sequence 2 Flow of Control Control

More information

Private Sub Cours_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

Private Sub Cours_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Public Class Cours Private nc As Integer Private Sub Cours_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'TODO : cette ligne de code charge les données dans la table

More information

{ -- FLORIDA HIGH SCHOOLS COMPUTING COMPETITION '84 } { -- PASCAL PROGRAM SOLUTIONS }

{ -- FLORIDA HIGH SCHOOLS COMPUTING COMPETITION '84 } { -- PASCAL PROGRAM SOLUTIONS } { -- FLORIDA HIGH SCHOOLS COMPUTING COMPETITION '84 } { -- PASCAL PROGRAM SOLUTIONS } {1.1} program One1T84; { -- This program produces a table of Fahrenheit for Celcius. } C: Integer; Writeln ('CELCIUS

More information

REFERENCE MATERIALS. Assignment, Display, and Input Evaluates expression and assigns the result to the variable a.

REFERENCE MATERIALS. Assignment, Display, and Input Evaluates expression and assigns the result to the variable a. a expression Assignment, Display, and Input Evaluates expression and assigns the result to the variable a. DISPLAY (expression) Displays the value of expression, followed by a space. INPUT () Accepts a

More information

Solaris 9 9/04 Installation Roadmap

Solaris 9 9/04 Installation Roadmap Solaris 9 9/04 Installation Roadmap This document is a guide to the DVD-ROM, CD-ROMs, and documents involved in installing the Solaris 9 9/04 software. Unless otherwise specified, this document refers

More information

Sales flow. Creation of a lead until the payment and the reminder through the consultation of the stock

Sales flow. Creation of a lead until the payment and the reminder through the consultation of the stock Sales flow - Creation of a lead until the payment and the reminder through the consultation of the stock This flow requires the installation of CRM/Sales/Stocks/Invoicing/Accounting/Supply Chain applications

More information

Workflow Concepts and Techniques

Workflow Concepts and Techniques Workflow Concepts and Techniques Hala Skaf-Molli Maître de Conférences Université de Nantes Hala.Skaf@univ-nantes.fr http://pagesperso.lina.univ-nantes.fr/~skaf-h Workflow Concepts and Techniques General

More information

C: How to Program. Week /Mar/05

C: How to Program. Week /Mar/05 1 C: How to Program Week 2 2007/Mar/05 Chapter 2 - Introduction to C Programming 2 Outline 2.1 Introduction 2.2 A Simple C Program: Printing a Line of Text 2.3 Another Simple C Program: Adding Two Integers

More information

Algorithms and Experimental Study for the Traveling Salesman Problem of Second Order. Gerold Jäger

Algorithms and Experimental Study for the Traveling Salesman Problem of Second Order. Gerold Jäger Algorithms and Experimental Study for the Traveling Salesman Problem of Second Order Gerold Jäger joint work with Paul Molitor University Halle-Wittenberg, Germany August 22, 2008 Overview 1 Introduction

More information

Verification and Validation

Verification and Validation Cycle Ingénieur 2 ème année Département Informatique Verification and Validation Part IV : Proof-based Verification (I) Burkhart Wolff Département Informatique Université Paris-Sud / Orsay 2013-2014 What

More information

Verification and Validation

Verification and Validation 2017-2018 Cycle Ingénieur 2 ème année Département Informatique Verification and Validation Part IV : Proof-based Verification (I) Burkhart Wolff Département Informatique Université Paris-Sud / Orsay Difference

More information

Dolphin CT50 Non-Incendive

Dolphin CT50 Non-Incendive Dolphin CT50 Non-Incendive powered by Android 6.0 Quick Start Guide CT50NI-AN6-EN-QS Rev B 6/18 Introduction This document is for the Dolphin CT50 NI. This is the nonincendive version of the Dolphin CT50.

More information

3/12/2018. Structures. Programming in C++ Sequential Branching Repeating. Loops (Repetition)

3/12/2018. Structures. Programming in C++ Sequential Branching Repeating. Loops (Repetition) Structures Programming in C++ Sequential Branching Repeating Loops (Repetition) 2 1 Loops Repetition is referred to the ability of repeating a statement or a set of statements as many times this is necessary.

More information

Quick Start. AC1200 WiFi Range Extender Model EX6150

Quick Start. AC1200 WiFi Range Extender Model EX6150 Quick Start AC1200 WiFi Range Extender Model EX6150 Getting Started The NETGEAR WiFi Range Extender increases the distance of a WiFi network by boosting the existing WiFi signal and enhancing the overall

More information

An Introduction to MATLAB

An Introduction to MATLAB An Introduction to MATLAB Day 1 Simon Mitchell Simon.Mitchell@ucla.edu High level language Programing language and development environment Built-in development tools Numerical manipulation Plotting of

More information

Tutorial :.Net Micro Framework et.net Gadgeteer

Tutorial :.Net Micro Framework et.net Gadgeteer 1 Co-développement émulateur personnalisé et application pour une cible. 1.1 Utilisation d un émulateur personnalisé Après l installation du SDK.Net Micro, dans le répertoire d exemples, Framework (ex.

More information

Chapter 2 - Introduction to C Programming

Chapter 2 - Introduction to C Programming Chapter 2 - Introduction to C Programming 2 Outline 2.1 Introduction 2.2 A Simple C Program: Printing a Line of Text 2.3 Another Simple C Program: Adding Two Integers 2.4 Memory Concepts 2.5 Arithmetic

More information

Impact of QoS on Replica Placement in Tree Networks

Impact of QoS on Replica Placement in Tree Networks INSTITUT NATIONAL DE RECHERCHE EN INFORMATIQUE ET EN AUTOMATIQUE Impact of QoS on Replica Placement in Tree Networks Anne Benoit Veronika Rehn Yves Robert N 665 December 26 Thème NUM apport de recherche

More information

Making Decisions In Pascal

Making Decisions In Pascal Making Decisions In Pascal In this section of notes you will learn how to have your Pascal programs choose between alternative courses of action High Level View Of Decision Making For The Computer??? True

More information

EMBOUTS RONDS - ROUND FINIALS

EMBOUTS RONDS - ROUND FINIALS Collection Cette collection séduit par son style original à l accent ethnic chic et sa gamme pratique et technique. Ainsi, ses 9 embouts déclinés dans divers coloris, sont travaillés avec des matières

More information

DK UL. Ref. Certif. No. Date: Signature:

DK UL. Ref. Certif. No. Date: Signature: DK-54446-UL 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)

More information

String Instructions In Cobol Delimited By Spaces

String Instructions In Cobol Delimited By Spaces String Instructions In Cobol Delimited By Spaces The fourth division in a COBOL (sub)program is the PROCEDURE DIVISION, which of the instruction STOP RUN, or, in the case of a subprogram, EXIT PROGRAM,

More information

Sun Fire System Controller Board, Version 2 (Enhanced Memory) Installation Guide

Sun Fire System Controller Board, Version 2 (Enhanced Memory) Installation Guide Sun Fire System Controller Board, Version 2 (Enhanced Memory) Installation Guide Sun Fire E6900/E4900 Systems Sun Fire 6800/4800 Systems Version 2 of the Sun Fire System Controller board has increased

More information

Making Decisions In Pascal In this section of notes you will learn how to have your Pascal programs to execute alternatives

Making Decisions In Pascal In this section of notes you will learn how to have your Pascal programs to execute alternatives Making Decisions In Pascal In this section of notes you will learn how to have your Pascal programs to execute alternatives Decision-Making In Pascal Decisions are questions that are either true or false

More information

Read me carefully before making your connections!

Read me carefully before making your connections! CROSS GAME USER GUIDE Read me carefully before making your connections! Warning: The CROSS GAME converter is compatible with most brands of keyboards and Gamer mice. However, we cannot guarantee 100% compatibility.

More information

LA NWM INSTALLATION. Computer requirements. Updating LA Network Manager. Saving user presets and current Session. technical bulletin - v.4.

LA NWM INSTALLATION. Computer requirements. Updating LA Network Manager. Saving user presets and current Session. technical bulletin - v.4. LA NWM INSTALLATION technical bulletin - v.4.0 Computer requirements System: Windows 7 to Windows 10 macos El Capitan (OS X 10.11) to macos Mojave (10.14) LA NWM may not start if Windows is not up to date.

More information

(A) 99 ** (B) 100 (C) 101 (D) 100 initial integers plus any additional integers required during program execution

(A) 99 ** (B) 100 (C) 101 (D) 100 initial integers plus any additional integers required during program execution Ch 5 Arrays Multiple Choice Test 01. An array is a ** (A) data structure with one, or more, elements of the same type. (B) data structure with LIFO access. (C) data structure, which allows transfer between

More information

IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME. Additional Information on page 2.

IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME. Additional Information on page 2. DK-68856-M1-UL IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME CB TEST CERTIFICATE Product Switching Power Supply for Building In Name and address of the

More information

ALGORITHMS. Algorithms help for all these issues.

ALGORITHMS. Algorithms help for all these issues. ALGORITHMS Objective To be able to identify constants and variables in a simple problem to define the type of a constant to explain an algorithm to describe a simple problem using an algorithm Why do we

More information

Sun Fire V60x and V65x Servers ReadMe

Sun Fire V60x and V65x Servers ReadMe Sun Fire V60x and V65x Servers ReadMe Hot-Swappable Controller Update Sun Microsystems, Inc. www.sun.com Part No. 817-7172-10 April 2004 Submit comments about this document at: http://www.sun.com/hwdocs/feedback

More information

Sun Fire High-End Server Systems Hold-down Kit

Sun Fire High-End Server Systems Hold-down Kit Sun Fire High-End Server Systems Hold-down Kit This document describes how to update the doors and bolt high-end server systems to the floor. Installing the Door Restraint brackets (4-Door Systems Only)

More information

N09/2/ABENG/SP1/ENG/TZ0/XX/Q

N09/2/ABENG/SP1/ENG/TZ0/XX/Q N09/2/ABENG/SP1/ENG/TZ0/XX/Q 88092240 ENGLISH B STANDARD LEVEL PAPER 1 ANGLAIS B NIVEAU MOYEN ÉPREUVE 1 INGLÉS B NIVEL MEDIO PRUEBA 1 Thursday 12 November 2009 (morning) Jeudi 12 novembre 2009 (matin)

More information

C-DIAS Analogue Output Module CAO 082 for eight ±10V DC respectively eight 0 20mA DC outputs

C-DIAS Analogue Output Module CAO 082 for eight ±10V DC respectively eight 0 20mA DC outputs C-DIAS Analogue Output Module CAO 082 for eight ±10V DC respectively eight 0 20mA DC outputs This analogue output module is used for driving components capable of being analogue driven (e.g. proportional

More information

IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME. Switching Power Supply for Building In

IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME. Switching Power Supply for Building In DK-68856-M1-UL IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME CB TEST CERTIFICATE Product Switching Power Supply for Building In Name and address of the

More information

TP 2 : Application SnapTchat 20 février 2015

TP 2 : Application SnapTchat 20 février 2015 TP 2 : Application SnapTchat 20 février 2015 SnapTchat : cahier de charges L objectif de ce TP est de développer une simple application d échange de messages courts entre deux utilisateurs. Le cahier des

More information

Cable Management Guide

Cable Management Guide Cable Management Guide Sun Fire High End Server Systems Sun Microsystems, Inc. www.sun.com Part No. 817-1753-11 July 2005, Revision A Submit comments about this document at: http://www.sun.com/hwdocs/feedback

More information

Sun Java System Access Manager Release Notes for Microsoft Windows

Sun Java System Access Manager Release Notes for Microsoft Windows Sun Java System Access Manager Release Notes for Microsoft Windows Version 6 2005Q1 Part Number 819-1574-10 These Release Notes contain important information available at the time of release of Sun Java

More information

TP7 7 Touch Panel User Interface Quick Install Guide

TP7 7 Touch Panel User Interface Quick Install Guide TP7 7 Touch Panel User Interface Quick Install Guide English Thank you for including the TP7 as part of the user interface strategy for your customer. The TP7 has been designed to provide years of trouble

More information

C-DIAS Analog Input Module CAI 086 For eight, ±10V voltage inputs

C-DIAS Analog Input Module CAI 086 For eight, ±10V voltage inputs C-DIAS ANALOG INPUT MODULE CAI 086 C-DIAS Analog Input Module CAI 086 For eight, ±10V voltage inputs This analog input module is used for the input of voltage values in the range of ±100mV / ±1.0V and10v.

More information

Feature-Based Facial Expression Recognition: Experiments With a Multi-Layer Perceptron

Feature-Based Facial Expression Recognition: Experiments With a Multi-Layer Perceptron Feature-Based Facial Expression Recognition: Experiments With a Multi-Layer Perceptron Zhengyou Zhang To cite this version: Zhengyou Zhang. Feature-Based Facial Expression Recognition: Experiments With

More information

Sun Fire X4250 Volume Configuration Guide

Sun Fire X4250 Volume Configuration Guide Sun Fire X4250 Volume Configuration Guide Sun Microsystems, Inc. www.sun.com Part No. 820-6890-10 March 2009 Revision A Submit comments about this document at: http://www.sun.com/hwdocs/feedback Copyright

More information

Descriptif de communication Page 2 29 CALEC ST II KNX TP1

Descriptif de communication Page 2 29 CALEC ST II KNX TP1 Descriptif de communication Page 2 29 CALEC ST II KNX TP1 Table des matières 1 Généralités... 2 1.1 Contenu... 2 1.2 Définition... 2 1.3 Marques déposées et noms commerciaux... 2 1.4 Certification selon

More information

Software security. Chaire Informatique et sciences numériques Collège de France, cours du 6 avril 2011

Software security. Chaire Informatique et sciences numériques Collège de France, cours du 6 avril 2011 Software security Chaire Informatique et sciences numériques Collège de France, cours du 6 avril 2011 App1 App2 Pictures such as these ones make sense only if a component cannot circumvent or hijack other

More information

Réinitialisation de serveur d'ucs série C dépannant TechNote

Réinitialisation de serveur d'ucs série C dépannant TechNote Réinitialisation de serveur d'ucs série C dépannant TechNote Contenu Introduction Conditions préalables Conditions requises Composants utilisés Sortie prévue pour différents états de réinitialisation Réinitialisation

More information

IPv6 Workshop: CRIHAN -Rouen 04-06/02/2014 Security Bernard TUY Thanh-Luu HA

IPv6 Workshop: CRIHAN -Rouen 04-06/02/2014 Security Bernard TUY Thanh-Luu HA : CRIHAN -Rouen 04-06/02/2014 Bernard TUY Thanh-Luu HA 1/6 Securing the servers 1 ) Boot on linux, check that the IPv6 connectivity is fine. 2 ) From application hands-on, a web server should be running

More information

Semantic analysis for arrays, structures and pointers

Semantic analysis for arrays, structures and pointers Semantic analysis for arrays, structures and pointers Nelson Lossing Centre de recherche en informatique Mines ParisTech Septièmes rencontres de la communauté française de compilation December 04, 2013

More information