TD 2. Correction TP info

Size: px
Start display at page:

Download "TD 2. Correction TP info"

Transcription

1 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 = 0.1 * * (montant ) Case montanttot = 0.1 * * * (montant ) End Select Exercice 4 : Somme Des Nombres Sub SommeN() Dim a As Integer, s As Integer, prec As Integer s = 0 a = 0 prec = 0 Do prec = a s = s + a a = Application.InputBox( entrez la valeur de a ) Loop Until a < prec MsgBox La somme est & s Exercice 5 : Sphinx Sub Sphinx() Dim r As Integer, s As Integer, c As Integer r = Application.InputBox("Entrez un nombre") c = 0 Do Until r = a s = Application.InputBox("Entrez un nombre positif") c = c + 1 If s > r Then MsgBox "Entrez un nombre plus petit" If s < r Then MsgBox "Entrez un nombre plus grand" Loop MsgBox "Le nombre est bien" & r & "Vous l'avez trouvé en" & c & "coups" Exercice 6 : Palindrome Sub Palindrome() Dim x As String, nb As Integer Dim palindrom As Boolean Dim i As Integer x = Application.InputBox("Entrez un mot") nb = Len(x) palindrom = True For i = 1 To nb / 2 If Mid(x, i, 1) < > Mid(x, nb i, 1) Then palindrom = False

2 Exit For If palindrom Then MsgBox ("C'est un palindrome") MsgBox ("Ce n'est pas un palindrome") : autre version Public Sub Lepalindrome( ) Dim motu as string, moti as string, taille as byte, cont as byte Motu = application.imputbox(«entrez un mot», «le jeu du palindrome», type:=2) taille= len(motu) cont= taille do moti= moti +mid(motu,cont,1) cont= cont-1 loop until compt = 0 if motu= motto then Msgbox(«c est un palindrome») else Msgbox(«ce n est pas un palindrome») end if End sub Exercice 7 : Devinez mon nombre Sub Devinette_Correction() Dim n1 As Integer, n2 As Integer Dim nbbons As Integer, nbbienplaces As Integer n1 = Application.InputBox("Nombre à deviner?", Type:=1) nbbienplaces = 0 Do n2 = Application.InputBox("Proposition du joueur?", Type:=1) nbbons = 0: nbbienplaces = 0 Dim chiffre As Byte, nb As Integer, nbj As Integer Dim i As Long, j As Long nb = n1 For i = 1 To 3 chiffre = nb Mod 10 nbj = n2 For j = 1 To 3 If nbj Mod 10 = chiffre Then nbbons = nbbons + 1 nbj = nbj \ 10 Next j nb = nb \ 10 nb = n1: nbj = n2 For i = 1 To 3 If nb Mod 10 = nbj Mod 10 Then nbbienplaces = nbbienplaces + 1 nb = nb \ 10: nbj = nbj \ 10 nbbons = nbbons - nbbienplaces

3 If (nbbienplaces <> 3) Then MsgBox ("Il y a " & nbbienplaces & " chiffres au bon endroit " & nbbons & "chiffres mal placés") Loop While (nbbienplaces <> 3) MsgBox ("Bravo! Vous avez trouvé, le nombre est " & n1) TD 2 Exercice 1 : Type Date et entrées-sorties Sub datedujour( ) Dim x As Date x = Date MsgBox (x) Sub DateAnniversaire() Dim a As Integer, annee As Integer, age As Integer, d As Date d = Date a = MsgBox("La date est :" & d & "Est-ce votre anniversaire?", 4) If a = 6 Then annee = Application.InputBox("Quelle est votre année de naissance?") age = Year(d) - annee MsgBox ("Aujourd'hui, vous avez" & age & "ans") Sub age(naissance As Date) Dim d As Date, age1 As Integer d = Date age1 = Year(d) - Year(naissance) If Month(d) < Month(naissance) Then age1 = age1-1 If Month(d) = Month(naissance) And Day(d) < Day(naissance) Then age1 = age1-1 Msgbox ("Votre âge est" & age1 & «ans") afficher le message «vous êtes majeur» si l utilisateur a plus de 18 ans «vous êtes mineur» sinon Sub MajMin ( ) Dim ag as Byte ag = MsgBox(«Avez vous plus de 18 ans?», 4, «majeur ou mineur» ) If ag= 6 then MsgBox «vous êtes majeur» MsgBox «vous êtes mineurs» end if end Sub deviner l age de l utilisateur -un utilisateur tape son âge -un 2ème essaie de deviner en tapant un âge (5X) Sub DevinerAge( ) Dim ageu as byte, aged As Byte, cont As byte, rep as byte cont=0 ageu= ApplicationInputBox( «tapez votre âge», «utilisateur», type:=1) Do aged= ApplicationInputBox(«devinez l age», «devineur», type :=1) cont=cont+1

4 If ageu > aged Then Rep= MsgBox («il est plus vieux»,5 «devineur») MsgBox(«Bravo vous avez gagné») Exit Sub End if if rep=2 Then Eixtsub Loopwhile coont <=5 MsgBox («vous avez perdu») End sub Exercice 2 : Plage de nombres Sub remplir() Dim i As Integer, j As Integer, k As Integer k = 0 For i = 1 To 100 For j = 1 To 100 k = k + 1 Cells(i, j).value = k Next j L2C1 : L100C1 --> " =L(-1)C+100 " L1C2 : L11C100 --> " =LC(-1)+1" Sub remplir3() Dim i As Integer Cells(1, 1).Value = 1 For i = 2 To 100 Cells(i, r).formular1c1local = "L(-1)C+100" For i = 1 To 100 For j = 2 To 100 Cells(i, j).formular1c1local = "LC(-1)+1" Next j Exercice 3 : Entrées-Sorties Sub carre() Dim nombre As Integer nombre = Application.InputBox("Entrez un nombre", Type:=1) MsgBox nombre * nombre TP 3 Exercice 1 : Volume d une sphère Function volume(r As Double) As Double Const pi = 3.14 Dim s As Double s = 4 * pi * r * r volume = r * s / 3 Sub testsphère() Dim r1 As Single r1 = Application.InputBox("Entrez le rayon de la sphère", Type:=2)

5 MsgBox "Le volume est" & volume(r1) Exercice 2 : Fonction SommeChiffres Function SommeChiffres(n As Integer) As Integer Dim s As Integer s = 0 Do Until n = 0 s = s + n Mod 10 n = n \ 10 Loop SommeChiffres = s Sub affichesomme() Dim n As Integer n = Application.InputBox("Votre chiffre?", Type:=1) MsgBox "La somme des chiffres est de " & SommeChiffres(n) Exercice 3 : Sélection de dates sous Excel Const d As Date = #1/1/2010# Sub test() For i = 1 To 5 If Cells(i, 1).Value > d Then Cells(i, 1).Interior.Color = RGB(200, 0, 0) Exercice 4 : procédure, dessiner un échiquier 10x10 Sub Echiquier10x10(x As Integer, y As Integer) Dim i As Integer For i = 1 To 10 For j = 1 To 10 If (i + j) Mod 2 = 0 Then Cells(i, j).interior.color = RGB(0, 0, 0) Cells(i, j).interior.color = RGB(200, 0, 0) Next j Sub Echiquier() Dim x As Integer, y As Integer x = Application.InputBox("Saisissez le numéro de la ligne") y = Application.InputBox("Saisissez le numéro de la colonne") Echiquier10x10 x, y Exercice 5 : Dessiner une pyramide Sub coloriersegment(byval x As Integer, ByVal ligne As Integer, ByVal colonne As Integer) Dim i As Integer For i = 0 To x - 1 Cells(ligne, colonne + i).interior.color = RGB(0, 0, 250) Sub colorierpyramide(byval lignesommet As Integer, ByVal colsommet As Integer, ByVal n As Integer) Dim i As Integer For i = 1 To n

6 coloriersegment 2 * i - 1, lignesommet, colsommet lignesommet = lignesommet + 1 colsommet = colsommet - 1 Sub ApplicationPyramide() Dim x As Integer, ligne As Integer, colonne As Integer x = Application.InputBox("Taille de la pyramide") ligne = Application.InputBox("Numéro de la ligne") colonne = Application.InputBox("Numéro de la colonne") colorierpyramide x, ligne, colonne TP Indice de Gini Q1 : Function LignePays(ByVal pays As String) As Integer Dim i As Integer: LignePays = 0 For i = 2 To 9 If (Cells(i, 1).Value) = pays Then LignePays = i If LignePays = 0 Then MsgBox ("Le pays n'existe pas") Sub test() Dim P1 As String, l As Integer P1 = Application.InputBox("Donnez votre ville") l = LignePays(P1) If l = 0 Then MsgBox ("La ville n'existe pas") MsgBox ("La ville se trouve à la ligne" & l) Q2 : Function Verification(ByVal pays As String) As String Dim i As Integer, j As Integer, s As Double i = LignePays(pays) Verification = True s = 0 For j = 2 To 5 s = Cells(i, j).value + s If Cells(i, j).value > Cells(i, j + 1).Value Then Verification = False Next j s = s + Cells(i, 6).Value If s <> 1 Then Verification = False Sub TestVerification() Dim P1 As String

7 P1 = Application.InputBox("Donnez votre pays") MsgBox (Verification(P1)) Q3 : Sub remplir_verification(byval pays As String) Dim i As Integer i = LignePays(pays) If Verification(pays) Then Cells(i, 7).Value = 1 Cells(i, 7).Value = 0 Function LignePays(x As String) As Integer Dim i As Long, n As Long n = 0 For i = 2 To 9 If Cells(i, 1) = x Then n = i LignePays = n Function Verification(x As String) As Boolean Dim b As Double, Verif As Boolean, li As Integer, i As Long li = LignePays(x) b = Cells(li, 2).Value Verif = True For i = 2 To 5 b = b + Cells(li, i + 1).Value If Cells(li, i).value > Cells(li, i + 1) Then Verif = False If b <> 1 Then Verif = False Verification = Verif Sub Remplir_Verification(x As String) Dim li As Integer li = LignePays(x) If Verification(x) = False Then Cells(li, 7).Value = 0 Cells(li, 7).Value = 1 Q4 : Q5 : Q6 : Sub Remplir_Lorenz(x As String) Dim li As Integer li = LignePays(x) Cells(li, 8).Value = Cells(li, 2) Range(Cells(li, 9), Cells(li, 12)).FormulaR1C1Local = "=LC(-1)+LC(-6)"

8 Function Calcul_Gini(x As String) As Double Dim sous As Double, sur As Double, ind As Double, li As Integer, i As Long li = LignePays(x): sous = 0: sur = 0.2 * Cells(li, 8).Value: For i = 8 To 11 sous = sous * Cells(li, i).value sur = sur * Cells(li, i + 1).Value ind = sous + sur ind = 0.5 * ind ind = ind ind = ind / 0.5 Calcul_Gini = ind Sub Pays() Dim x As String, reponse As Integer, b As Integer Do x = Application.InputBox("Le nom du pays est =") Do While LignePays(x) = 0 MsgBox "Ce pays n'est pas répertorié, essayer un autre pays" x = Application.InputBox("Le nom du pays est =") Loop Verification (x) Remplir_Verification x If Verification(x) = False Then MsgBox "Les pourcentages de revenus de ce pays sont erronés, veuillez les modifier." Remplir_Lorenz x Cells(LignePays(x), 13) = Calcul_Gini(x) b = MsgBox("Voulez-vous continuer?", 4) Loop Until b = 7 TP Représentation binaire des nombres Exercice 2 : Conversion d un entier positif en base 2 Q 2.1 Function DecToBin(n As Integer, nbits As Integer) As Boolean Dim Resultat As Integer, i As Integer Resultat = n For i = 0 To nbits - 1 Cells(1, nbits - i).value = Resultat Mod 2 Resultat = Resultat \ 2 If Resultat = 0 Then DecToBin = True DecToBin = False Q 2.2 Sub DecToBin_Test() Dim n As Integer, nbits As Integer

9 n = Application.InputBox("Quel est votre nombre?") nbits = Application.InputBox("Nombre de bits") MsgBox (DecToBin(n, nbits)) Q 2.3 Function BinToDec(ByVal nbits As Long) As Long Dim i As Long, n As Long, puiss As Long n = 0 puiss = 1 For i = 0 To nbits - 1 n = n + Cells(1, nbits - i).value * puiss puiss = puiss * 2 BinToDec = n Q 2.4 Sub BinToDec_Test() Dim v As Long v = Application.InputBox("Entrez le nombre de bits") MsgBox (BinToDec(v)) Q 2.5 Sub verification() Dim ndec As Long, nobtenu As Long ndec = Application.InputBox("nombre décimal compris entre...") If DecToBin(nDec, 10) Then nobtenu = BinToDec(10) If nobtenu = ndec Then MsgBox "C'est bon!" MsgBox "Problème!" Q 2.6 Sub affbin(byval n As Long) Dim taille As Long, nb As Long, i As Long nb = n taille = 0 Do While nb > 0 If nb Mod 10 > 1 Then MsgBox "Erreur, ce n'est pas un nombre binaire" Exit Sub taille = taille + 1 nb = nb \ 10 Loop nb = n For i = taille To 1 Step -1 Cells(1, i).value = nb Mod 10 nb = nb \ 10

10 Exercice 3 : Calcul binaire sur des entiers positifs Q 3.1 Sub additionne(byval nbb As Long) Dim i As Long, r As Long, somme As Long r = 0 For i = nbb To 1 Step -1 somme = Cells(1, i).value + Cells(2, i).value + r Select Case somme Case 2 r = 1 Cells(3, i).value = 0 Case 3 r = 1 Cells(3, i).value = 1 Case r = 0 Cells(3, i).value = somme End Select If r = 1 Then MsgBox "Dépassement de capacité" Sub test_add() additionne (10) Q 3.2 Sub soustrait(byval nbb As Long) Dim i As Long, r As Long, sous As Long r = 0 For i = nbb To 1 Step -1 sous = Cells(1, i).value - Cells(2, i).value - r Select Case sous Case -2 r = 1 Cells(3, i).value = 0 Case -1 r = 1 Cells(3, i).value = 1 Case r = 0 Cells(3, i).value = sous End Select If r = 1 Then MsgBox "Dépassement de capacité" Sub test_sous() soustrait (10) Exercice 4 : Conversion d un entier relatif Sub compl1() Dim i As Long

11 For i = 1 To 8 Cells(2, i).value = 1 - Cells(1, i).value Function plus1(byval li As Long) As Boolean Dim i As Long, r As Long r = 1: i = 8 Do While i > 0 And r = 1 If Cells(li, i).value = 1 Then Cells(li, i).value = 0 Cells(li, i).value = 1 r = 0 i = i - 1 Loop plus1 = r = 0 'équivalent à "if r=0, plus1 = true,, plus1 = false Function DecToBinR(ByVal n As Long) As Boolean If n >= 0 Then DecToBinR = DecToBin(n, 8) If DecToBin(-n, 8) Then compl1 DecToBinR = plus1(2) MsgBox ("dépassement de capacité") DecToBinR = False Correction TP : 4ème séance voir fiche exercice 1 : 1) Public Function Fact( ByVal n as Long) Dim f As long f= 1 Do while n > 1 f=f*1 n=n-1 Loop Fact = f End function Sub macro (n as integer ) n = Application.Inputbox ( «saisissez un entier positif») MsgBox Fact( ) end Sub correction : Public Sub CalcFact ( ) Dim x as integer Do x=inputbox(«tapez le nbre à calculer la factorielle») Loop Until x>=0 MsgBox «la factorielle «&x&» est &Fact(x)

12 2) Sub macro ( ) n = Application.InputBox(«Saisissez un entier positif») m=application.inputbox( «saisissez un entier positif») if n >= m and n >0 and m>0 then c= Fact(n)/ (Fact(n)*Fact(n-m)) Msg Box (c) : Msgbox («Impossible») End if exercice 2 1) PublicFunction somdiv (Byval x as Long) as Long Dim i As integer Dim r as integer dim c as integer c= 0 Do r= n Mod i Mod ( reste de la division ) If r =0 then c= c+1 Loop While i< n Somdiv=c Subndiv ( ) Dim n as Long n=application.inputbox ( «saisissez un entier») MsgBox somdiv ( n ) version du prof : PublicFunction somdiv (Byval x as integer) as integer Dim i As integer, s as integer s=0 for i =1 to x/2 if x Mod i=0 then s=s+i End if SomDiv= S

(************************ Instructions de base ************************)

(************************ Instructions de base ************************) (**********************************************************************) (* Corrige du TD "Graphisme" *) (**********************************************************************) (************************

More information

(************************ Instructions de base ************************) #open "graphics";; open_graph " 800x ";; (* SORTIE : - : unit = () *)

(************************ Instructions de base ************************) #open graphics;; open_graph  800x ;; (* SORTIE : - : unit = () *) (**********************************************************************) (* Corrige du TD 4 *) (**********************************************************************) (************************ Instructions

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

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

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

VHDL par Ahcène Bounceur VHDL

VHDL par Ahcène Bounceur VHDL VHDL Ahcène Bounceur 2009 Plan de travail 1. Introduction au langage 2. Prise en main 3. Machine à état 4. Implémentation sur FPGA 1 VHDL Introduction au langage Ahcène Bounceur VHDL VHIC (Very High-speed

More information

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

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

sujet1: Correction Des Epreuves D Informatique _--Pratique--_ MEDDEB Mohamed Page 1 Devoirs et examens : 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

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

Java et Mascopt. Jean-François Lalande, Michel Syska, Yann Verhoeven. Projet Mascotte, I3S-INRIA Sophia-Antipolis, France

Java et Mascopt. Jean-François Lalande, Michel Syska, Yann Verhoeven. Projet Mascotte, I3S-INRIA Sophia-Antipolis, France Java et Mascopt Jean-François Lalande, Michel Syska, Yann Verhoeven Projet Mascotte, IS-INRIA Sophia-Antipolis, France Formation Mascotte 09 janvier 00 Java Java et Mascopt - Formation Mascotte 09 janvier

More information

ILLUSTRATION DES EXCEPTIONS

ILLUSTRATION DES EXCEPTIONS ILLUSTRATION DES EXCEPTIONS Exemple 1: Capture d'une exception prédéfinie package exception1; public class PrintArgs public static void main ( String[ ] args ) System.out.println ( " Affichage des paramètres

More information

Sébastien Mathier wwwexcel-pratiquecom/en While : Loops make it possible to repeat instructions a number of times, which can save a lot of time The following code puts sequential numbers into each of the

More information

Corrigé. Leçon A Exercices : Tutoriel a. Dim strmois(1 to 6) as String

Corrigé. Leçon A Exercices : Tutoriel a. Dim strmois(1 to 6) as String Corrigé Tutoriel 10 Leçon A Exercices : 1. a. Dim strmois(1 to 6) as String b. StrMois(1) = "Janvier" StrMois(2) = "Février" StrMois(3) = "Mars" StrMois(4) = "Avril" StrMois(5) = "Mai" StrMois(6) = "Juin"

More information

C:\MasterPageWeb\HAPR\docu\HAPR_VB6_version15sept06.rtf 19/10/08. HARP_VB projet en VB6

C:\MasterPageWeb\HAPR\docu\HAPR_VB6_version15sept06.rtf 19/10/08. HARP_VB projet en VB6 HARP_VB projet en VB6 Option Explicit Dim Value As Integer Dim i As Integer Dim il As Long Dim LL, L1S, L250µS, L500µS, L1mS, L2mS, L5mS, L10mS As Single Dim offsetdepart As Long Dim police(256, 8) As

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

with Ada.Numerics.Float_Random; with Ada.Containers.Vectors; procedure CalculDeMatrices is

with Ada.Numerics.Float_Random; with Ada.Containers.Vectors; procedure CalculDeMatrices is Page 1 of 8 NOM DU CSU (principal) : calculdematrices.adb AUTEUR DU CSU : Pascal Pignard VERSION DU CSU : 1.1c DATE DE LA DERNIERE MISE A JOUR : 25 avril 2013 ROLE DU CSU : Opérations sur les matrices.

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

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

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

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

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

Aerospace Extranet registration

Aerospace Extranet registration Aerospace Extranet registration Requirements:...2 Process of registration...2 Register form...4 Account creation request email...5 Identity Confirmation page...6 Profile modification...7 Registration confirmation

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

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

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

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

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

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

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

PRO7_TEL ver1_0 FINAL.BS2

PRO7_TEL ver1_0 FINAL.BS2 '{$STAMP BS2} PRO7_TEL ver1_0 FINAL.BS2 ' Programme: TEL.BS2 Simulateur de Ligne Telephonique ' Par: Sylvain Bergeron Date: 2000-FEV ' Versions: ' 0.1 Routines de SelfCheck: 2000-Fev-04 ' 0.2 Routines

More information

Installation des interfaces et utilisation de WorldCAT-CIF pour le catalogue CD Meusburger

Installation des interfaces et utilisation de WorldCAT-CIF pour le catalogue CD Meusburger Installation des interfaces et utilisation de pour le catalogue CD Meusburger 1. Condition préalable: lors de l installation du catalogue CD Meusburger, il faut avoir mis en place DAKO. 2. Veuillez vérifier

More information

DÉVELOPPER UNE APPLICATION IOS

DÉVELOPPER UNE APPLICATION IOS DÉVELOPPER UNE APPLICATION IOS PROTOCOLES CE COURS EST EXTRAIT DU LIVRE APP DEVELOPMENT WITH SWIFT 1 PROTOCOLES Définit un plan de méthodes, de propriétés et d'autres exigences qui conviennent à une tâche

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

Classes internes, Classes locales, Classes anonymes

Classes internes, Classes locales, Classes anonymes Classes internes, Classes locales, Classes anonymes Victor Marsault Aldric Degorre CPOO 2015 Enum (1) 2 Quand les utiliser: disjonctions de cas type au sens courant (eg. type de messages d erreur, type

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

CSE443 Compilers. Dr. Carl Alphonce 343 Davis Hall

CSE443 Compilers. Dr. Carl Alphonce 343 Davis Hall CSE443 Compilers Dr. Carl Alphonce alphonce@buffalo.edu 343 Davis Hall www.cse.buffalo. edu/faculty/alphonce/sp18/cse443 piazza.com/buffalo/spring2018/cse443 BUILD A COMPILER! Assessment plan Homework

More information

Verification and Validation

Verification and Validation 2017-2018 Cycle Ingénieur 2 ème année Département Informatique Verification and Validation Part II : Components of the UML Burkhart Wolff Département Informatique Université Paris-Sud / Orsay Plan of the

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

Mouse with Bluetooth wireless technology. SPM6950. EN User manual. Register your product and get support at

Mouse with Bluetooth wireless technology.   SPM6950. EN User manual. Register your product and get support at Register your product and get support at www.philips.com/welcome Mouse with Bluetooth wireless technology SPM6950 EN User manual Philips Consumer Lifestyle AQ95-56F-1239KR 2010...... (Report No. / Numéro

More information

Oracle Dual Port QDR InfiniBand Adapter M3. Product Notes

Oracle Dual Port QDR InfiniBand Adapter M3. Product Notes Oracle Dual Port QDR InfiniBand Adapter M3 Product Notes Part No.: E40986-01 September 2013 Copyright 2013 Oracle and/or its affiliates. All rights reserved. This software and related documentation are

More information

Voir ces deux articles : [3]

Voir ces deux articles :  [3] Publié sur WindowsLinux.net (http://www.windowslinux.net) Accueil > Microsoft Security Essentials Microsoft Security Essentials [1] Téléchargements Le téléchargement de MSE (Microsoft Security Essentials)

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

Déclaration du module

Déclaration du module Déclaration du module Imports System.IO Module ModuleStagiaires Public Structure Stagiaire Private m_code As Long Private m_nom As String Private m_prenom As String Public Property code() As Long Get Return

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

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

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

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

DECLARATIONS OF CONFORMITY, 3200L, 4200L, 4600L, 5500L, ELO- KIT-ESY, ELO-KIT-ECM3

DECLARATIONS OF CONFORMITY, 3200L, 4200L, 4600L, 5500L, ELO- KIT-ESY, ELO-KIT-ECM3 DECLARATIONS OF CONFORMITY, 3200L, 4200L, 4600L, 5500L, ELO-KIT-ESY, ELO-KIT-ECM3 PROPRIETARY INFORMATION MD600031 DECLARATIONS OF CONFORMITY, 3200L, 4200L, 4600L, 5500L, ELO- KIT-ESY, ELO-KIT-ECM3 REVISION

More information

Coach Comments. Fr.8: Bienvenue Questions orales. enough. you answer each question using as much vocabulary as possible?

Coach Comments. Fr.8: Bienvenue Questions orales. enough. you answer each question using as much vocabulary as possible? Fr.8: Bienvenue Questions orales you answer each question using as much vocabulary as possible? when saying the date did you include day of the week, number and month? when you said the time did you include

More information

TP5 Sécurité IPTABLE. * :sunrpc, localhost :domain,* :ssh, localhost :smtp, localhost:953,*: Tous sont des protocoles TCP

TP5 Sécurité IPTABLE. * :sunrpc, localhost :domain,* :ssh, localhost :smtp, localhost:953,*: Tous sont des protocoles TCP TP5 Sécurité IPTABLE Routage classique Q1) Sur la machiine FIREWALL, les services actifs sont : Netstat -a * :sunrpc, localhost :domain,* :ssh, localhost :smtp, localhost:953,*:53856. Tous sont des protocoles

More information

This document is a preview generated by EVS

This document is a preview generated by EVS INTERNATIONAL STANDARD NORME INTERNATIONALE IEC 60848 Edition 3.0 2013-02 GRAFCET specification language for sequential function charts Langage de spécification GRAFCET pour diagrammes fonctionnels en

More information

C-DIAS Analog Module CAO 086 For eight ±10 V Outputs

C-DIAS Analog Module CAO 086 For eight ±10 V Outputs C-DIAS-ANALOG OUTPUT MODULE CAO 086 C-DIAS Analog Module CAO 086 For eight ±10 V Outputs This analog output module can be used to control analog controllable components (i.e.: proportional pressure vent,

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

MARQUE: STEELSERIES REFERENCE: ARCTIS 5 NOIR CODIC:

MARQUE: STEELSERIES REFERENCE: ARCTIS 5 NOIR CODIC: MARQUE: STEELSERIES REFERENCE: ARCTIS 5 NOIR CODIC: 4402260 NOTICE ARCTIS 5 PRODUCT INFORMATION GUIDE STEELSERIES ENGINE STEELSERIES ENGINE To enjoy DTS Headphone:X 7.1, GameSense Integration, and custom

More information

INSTRUCTION MANUAL INSTRUCTION MANUAL

INSTRUCTION MANUAL INSTRUCTION MANUAL PACK MATERNITY INSTRUCTION MANUAL INSTRUCTION MANUAL Specially designed for deaf and hearing impaired people. All your products sent together are already connected to each other. 2 2 Summary : 4 : 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

THE BEST VERSION FOR US

THE BEST VERSION FOR US Technical Rider RIOT by SUPERAMAS Technical managers Olivier TIRMARCHE +33614012325 olivier@superamas.com Jérôme DUPRAZ +33684106615 jerome@superamas.com Installation video interactive / 2 écrans / Fonctionnement

More information

User guide: proserv and realknx installation

User guide: proserv and realknx installation User guide: proserv and realknx installation A. A. proserv... 4 I. Presentation... 4 II. Connection... 4 III. Physical address... 4 IV. ETS database... 5 V. Application ETS... 5 a. KNX-proServ setting

More information

man pages section 6: Demos

man pages section 6: Demos man pages section 6: Demos Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 816 0221 10 May 2002 Copyright 2002 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara,

More information

Register your product and get support at www.philips.com/welcome SHB9100WT Vartotojo vadovas Turinys 1 Svarbu 4 Klausos sauga 4 4 Bendroji informacija 4 5 5 5 5 Kai garsas iš mobiliojo telefono perduodamas

More information

Internet Office 120V 600VA 300W Standby UPS, Ultra-Compact Desktop, USB

Internet Office 120V 600VA 300W Standby UPS, Ultra-Compact Desktop, USB Internet Office 120V 600VA 300W Standby UPS, Ultra-Compact Desktop, USB NUMÉRO DE MODÈLE: INTERNET600U Points principaux 600VA ultra-compact 120V standby UPS Maintains AC output during power failures 4

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

Infobel XmlAccess User Manual. Infobel XmlAccess. User Manual. Version 2.0. Page 1 of 45

Infobel XmlAccess User Manual. Infobel XmlAccess. User Manual. Version 2.0. Page 1 of 45 Infobel XmlAccess User Manual Version 2.0 Page 1 of 45 Table of Content 1. INTRODUCTION... 4 1.1. General... 4 1.2. Glossary... 4 2. INFOBEL SEARCH SERVICE... 5 2.1. Access the Infobel Search Service...

More information

Sun Management Center 3.6 Version 7 Add-On Software Release Notes

Sun Management Center 3.6 Version 7 Add-On Software Release Notes Sun Management Center 3.6 Version 7 Add-On Software Release Notes For Sun Fire, Sun Blade, Netra, and Sun Ultra Systems Sun Microsystems, Inc. www.sun.com Part No. 820-2406-10 October 2007, Revision A

More information

LEARN FRENCH BY PODCAST

LEARN FRENCH BY PODCAST LEARN FRENCH BY PODCAST AUDIO PODCASTS FOR LEARNERS OF FRENCH AS A FOREIGN LANGUAGE Lesson 5 The French alphabet Plus Publications Bramley Douglas Road Cork Ireland (t) 353-(0)21-4847444 (f) 353-(0)21-4847675

More information

LmÉPï C Á npï À ƵÀ ïì itech Analytic Solutions

LmÉPï C Á npï À ƵÀ ïì itech Analytic Solutions LmÉPï C Á npï À ƵÀ ïì itech Analytic Solutions No. 9, 1st Floor, 8th Main, 9th Cross, SBM Colony, Brindavan Nagar, Mathikere, Bangalore 560 054 Email: itechanalytcisolutions@gmail.com Website: www.itechanalytcisolutions.com

More information

Sun Ethernet Fabric Operating System. LLA Administration Guide

Sun Ethernet Fabric Operating System. LLA Administration Guide Sun Ethernet Fabric Operating System LLA Administration Guide Part No.: E41876-01 July 2013 Copyright 2013, Oracle and/or its affiliates. All rights reserved. This software and related documentation are

More information

CUSTOMIZATION OF A SAS APPLICATION Danielle GRANGE, Brigitte STENZEL CNRS-STRASBOURG, France.

CUSTOMIZATION OF A SAS APPLICATION Danielle GRANGE, Brigitte STENZEL CNRS-STRASBOURG, France. CUSTOMIZATION OF A SAS APPLICATION Danielle GRANGE, Brigitte STENZEL CNRS-STRASBOURG, France. ABSTRACT From an existing large SAS customized applications. application, we put forward a method of developing

More information

Guide Share France Groupe de Travail MQ septembre 2017

Guide Share France Groupe de Travail MQ septembre 2017 Systems Middleware Guide Share France Groupe de Travail MQ septembre 2017 Carl Farkas Pan-EMEA zwebsphere Application Integration Consultant IBM France D/2708 Paris, France Internet : farkas@fr.ibm.com

More information

Guide d'installation rapide TU2-EX

Guide d'installation rapide TU2-EX Guide d'installation rapide TU2-EX12 1.01 Table of Contents Français 1 1. Avant de commencer 1 2. Installation du matériel 2 Technical Specifications 3 Troubleshooting 4 Version 02.14.2011 1. Avant de

More information

FIRST YEAR EXAM INFORMATION SESSION November 2017

FIRST YEAR EXAM INFORMATION SESSION November 2017 FIRST YEAR EXAM INFORMATION SESSION November 2017 All information is posted on the SAO website: https://www.mcgill.ca/law-studies/coursesregistration-exams/exams/computerized-exams FIRST YEAR EXAM INFORMATION

More information

Function: function procedures and sub procedures share the same characteristics, with

Function: function procedures and sub procedures share the same characteristics, with Function: function procedures and sub procedures share the same characteristics, with one important difference- function procedures return a value (e.g., give a value back) to the caller, whereas sub procedures

More information

This document is a preview generated by EVS

This document is a preview generated by EVS CONSOLIDATED VERSION VERSION CONSOLIDÉE IEC 61937-6 Edition 2.1 2014-01 colour inside Digital audio Interface for non-linear PCM encoded audio bitstreams applying IEC 60958 Part 6: Non-linear PCM bitstreams

More information

Alphabet at School Part 4

Alphabet at School Part 4 Bonjour, je m'appelle Jojo. _ Hello, my name is Jojo. Voici Lulu. Bonjour Lulu. _ There is Lulu. Hello Lulu. Bonjour Jojo _ Hello Jojo. Il est l'heure d'aller a l'école _ It is time to go to school. N'oubliez

More information

Ref. Certificate No. KR-KTL-6008 IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME

Ref. Certificate No. KR-KTL-6008 IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME Ref. Certificate No. KR-KTL-6008 IEC SYSTEM FOR MUTUAL RECOGNITION OF TEST CERTIFICATES FOR ELECTRICAL EQUIPMENT (IECEE) CB SCHEME CB TEST CERTIFICATE SYSTEM CEI D'ACCEPTATION MUTUELLE DE CERTIFICATS D'ESSAIS

More information

2012 ECK AFRICAN SEMINAR PREREGISTRATION PROCESS

2012 ECK AFRICAN SEMINAR PREREGISTRATION PROCESS 2012 ECK AFRICAN SEMINAR PREREGISTRATION PROCESS PRESENTED BY: ECKANKAR GHANA Temple of ECK, Accra, Ghana. Okponglo East Legon, Next to Erata Hotel P. O Box AN 11411 Accra North Tel: +233 30 251 9455 Fax:

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

Changer Business Process avec Microsoft Dynamics CRM ebook

Changer Business Process avec Microsoft Dynamics CRM ebook Changer Business Process avec Microsoft Dynamics CRM 2013 ebook Microsoft Dynamics CRM 2013 Note: View your user profile Microsoft Dynamics CRM Online Fall 13 & Microsoft Dynamics CRM 2013 Want a short,

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

Sun Java System Connector for Microsoft Outlook Q4 Installation Guide

Sun Java System Connector for Microsoft Outlook Q4 Installation Guide Sun Java System Connector for Microsoft Outlook 7 2005Q4 Installation Guide Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. Part No: 819 2565 10 October 2005 Copyright 2005 Sun

More information

Le langage SQL DML (2)

Le langage SQL DML (2) Chapitre 8 8 Le langage SQL DML (2) Ce document reprend les requêtes SQL du chapitre 8 de l ouvrage Bases de données - Concepts, utilisation et développement. 8.1 INTRODUCTION 8.2 EXTRACTION DE DONNÉES

More information

# Project Tracker Status Priority Subject Updated Category Target version 559 Auto Multiple 05/09/2018 1/10

# Project Tracker Status Priority Subject Updated Category Target version 559 Auto Multiple 05/09/2018 1/10 Issues # Project Tracker Status Priority Subject Updated Category Target version 559 Auto Multiple Support New Normal automatisation de l'identification des questions 05/08/2018 11:44 557 Auto Multiple

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

ITU Workshop on Performance, QoS and QoE for Multimedia Services

ITU Workshop on Performance, QoS and QoE for Multimedia Services All Sessions Outcome ITU Workshop on Performance, QoS and QoE for Multimedia Services Dakar, Senegal, 19-20 March 2018 Programme and presentation material available at https://www.itu.int/en/itu-t/workshops-and-seminars/qos/201803/pages/programme.aspx

More information

Representative online study to evaluate the commitments proposed by Google as part of EU competition investigation AT Google Report for France

Representative online study to evaluate the commitments proposed by Google as part of EU competition investigation AT Google Report for France Representative online study to evaluate the commitments proposed by Google as part of EU competition investigation AT. 39740-Google Report for France Study conducted by: Prof. Dr. Dirk Lewandowski Hamburg

More information

CONSOLIDATED VERSION VERSION CONSOLIDÉE

CONSOLIDATED VERSION VERSION CONSOLIDÉE CONSOLIDATED VERSION VERSION CONSOLIDÉE IEC 61937-7 Edition 2.1 2016-05 colour inside Digital audio Interface for non-linear PCM encoded audio bitstreams applying to IEC 60958 Part 7: Non-linear PCM bitstreams

More information

Excel 2016 Et Vba Pour Les Nuls M Gapoche

Excel 2016 Et Vba Pour Les Nuls M Gapoche We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with excel 2016 et vba pour

More information

Amical: Livre De L'Eleve 2 & CD Audio MP3, Livret Corriges Et Transcriptions (French Edition) By Sylvie Poisson-Quinton

Amical: Livre De L'Eleve 2 & CD Audio MP3, Livret Corriges Et Transcriptions (French Edition) By Sylvie Poisson-Quinton Amical: Livre De L'Eleve 2 & CD Audio MP3, Livret Corriges Et Transcriptions (French Edition) By Sylvie Poisson-Quinton If searched for the ebook Amical: Livre de l'eleve 2 & CD Audio MP3, Livret Corriges

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

Outline. Midterm Review. Using Excel. Midterm Review: Excel Basics. Using VBA. Sample Exam Question. Midterm Review April 4, 2014

Outline. Midterm Review. Using Excel. Midterm Review: Excel Basics. Using VBA. Sample Exam Question. Midterm Review April 4, 2014 Midterm Review Larry Caretto Mechanical Engineering 209 Computer Programming for Mechanical Engineers April 4, 2017 Outline Excel spreadsheet basics Use of VBA functions and subs Declaring/using variables

More information

Sun Ethernet Fabric Operating System RMON Administration Guide

Sun Ethernet Fabric Operating System RMON Administration Guide Sun Ethernet Fabric Operating System RMON Administration Guide Part No: E24665-03 July 2015 Part No: E24665-03 Copyright 2010, 2015, Oracle and/or its affiliates. All rights reserved. This software and

More information

A computerized system to store and retrieve data on biological and biotechnological veterinary products of the American continent

A computerized system to store and retrieve data on biological and biotechnological veterinary products of the American continent Rev. sa. lech. Off. int. Epiz., 1992, 11 (3), 925 929 A computerized system to store and retrieve data on biological and biotechnological veterinary products of the American continent L.V. MELENDEZ *,

More information

Solaris 8 User Supplement. Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, CA U.S.A.

Solaris 8 User Supplement. Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, CA U.S.A. Solaris 8 User Supplement Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, CA 94303-4900 U.S.A. Part Number 806-3646 10 June 2000 Copyright 2000 Sun Microsystems, Inc. 901 San Antonio Road, Palo

More information

Description of Fastmag EDI interface with E-commerce

Description of Fastmag EDI interface with E-commerce 32 rue d Armaillé 75017 PARIS Telephone 01 55 26 08 10 Fax 01 55 26 08 01 www.fastmag.fr - contact@fastmag.fr Description of Fastmag EDI interface with E-commerce The EDI interface allows you to create

More information

Business Accounts and Cash Management Solutions DIRECT DEPOSITS. User Guide

Business Accounts and Cash Management Solutions DIRECT DEPOSITS. User Guide DIRECT DEPOSITS User Guide Table of Contents Section 1 How it Works... 3 Introduction... 4 Advantages... 5 Choice of Operating Methods... 5 Signing Clients Up for Direct Deposits... 6 Sending and Downloading

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

Graphs and Networks The (, D) problem

Graphs and Networks The (, D) problem Graphs and Networks The (, D) problem Jean-Claude Bermond DR CNRS May 12, 2011 The (, D) Problem Network Graph Nodes (users, routers, mobiles, towns, web pages) Vertices Links (fibers, frequencies, roads,

More information

Traditional Chinese Solaris Release Overview

Traditional Chinese Solaris Release Overview Traditional Chinese Solaris Release Overview Sun Microsystems, Inc. 901 N. San Antonio Road Palo Alto, CA 94303-4900 U.S.A. Part No: 806 3489 10 March 2000 Copyright 2000 Sun Microsystems, Inc. 901 N.

More information

TP 3 des architectures logicielles Séance 3 : Architecture n-tiers distribuée à base d EJB. 1 Préparation de l environnement Eclipse

TP 3 des architectures logicielles Séance 3 : Architecture n-tiers distribuée à base d EJB. 1 Préparation de l environnement Eclipse TP 3 des architectures logicielles Séance 3 : Architecture n-tiers distribuée à base d EJB 1 Préparation de l environnement Eclipse 1. Environment Used JDK 7 (Java SE 7) EJB 3.0 Eclipse JBoss Tools Core

More information