SlideShare a Scribd company logo
Devoirsetexamenssur:www.kiteb.net
Devoirsetexamenssur:www.kiteb.net
Devoirsetexamenssur:www.kiteb.net
Devoirsetexamenssur:www.kiteb.net
Corrigés Bac pratique Informatique
Section Sciences de l'informatique
23 mai 2013(8h)
Jeudi 23 mai 2013 à 8h
program aires_23_05_2013_8h;
uses wincrt;
const
a=0;
b=3;
type
tenreg= record
rect:real;
trap:real;
nb:integer;
end;
tf=file of tenreg;
var
f:tf;
v:tenreg;
 eps:real;
   rep:integer;
{**************************************************************}
function fct (x:real):real;
begin
    fct:=sqr(x);
end;  
 {*************************************************************}
  procedure  epsilon (var eps:real);
  begin
      repeat
           write(' taper une valeur pour epsilon:');readln(eps);
      until (eps>=0.0001) and (eps<=0.1);
  end;
  
  {*************************************************************}
 function rectangle ( n:integer):real;
 var
   x, h,S:real;
    i:integer;
 begin
       S:=0;
       h:=(b­a)/n;
       x:=(a+h/2);
       for i:=1 to n do
       begin
          S:=S+fct(x);
1/9
Correction proposée par
Mr Mejdi Bechikh & Mme Hajer NEFZAOUI
Devoirsetexamenssur:www.kiteb.net
          x:=x+h;
       end;
       rectangle:=s*h;
 end;
    {*************************************************************}
 function trapeze ( n:integer):real;
 var
   x, h,S:real;
    i:integer;
 begin
       
       h:=(b+a)/n;
       s:=(fct(a)+fct(a+h))/2;
       x:=a;
       for i:=1 to n­1 do
       begin
         x:=x+h;
          S:=S+(fct(x)+fct(x+h))/2;
     
       end;
       trapeze:=s*h;
 end;
 {******************************************************}
 procedure trait (var f:tf; eps:real; var rep:integer);
 var
     n:integer;
     v:tenreg;
     Dif1,dif2,A1,A2:real;
 begin
     reset(f);
           n:=1;
     repeat
     n:=n+1;
     A1:=rectangle(n);
     A2:=trapeze(n);
     v.nb:=n;
     V.rect:=A1;
     v.trap:=A2;
     write(f,v);
     dif1:=abs(rectangle(n)­rectangle(n­1));
     dif2:=abs(trapeze(n)­trapeze(n­1));
     writeln('n=',n, A1:9:5, A2:9:5);readln;
     until (dif1<=eps)or(dif2<=eps);
    {if (dif1<dif2) then rep:=1
    else  if (dif2<dif1) then rep:=2
    else rep:=3;}
     if (dif1<eps) then rep:=1;
     if (dif2<eps) then rep:=2;
    
    writeln('la methode est ',rep);
     close(f);
2/9
Devoirsetexamenssur:www.kiteb.net
 end;
  {******************************************************}
 procedure afficher (var f:tf; rep:integer);
 var
 v:tenreg;  mes:string;
 begin
 writeln('***N****','*Rectangle*','*trapeze*');
 reset(f);
 while not(eof(f))do
 begin
     read(f,v);
     writeln(v.nb,v.rect:9:5,v.trap:9:5);
 end;
 if rep=1 then mes:='Med des rectangles'
 else if rep=2 then mes:='Med des trapèzes'
 else mes:='Exéquo';
    writeln('la methode qui converge la première est :',mes);
 end;
 BEGIN
 assign(f,'c:calcul.dat');
 rewrite(f);
 repeat
 epsilon(eps);
 writeln(rectangle(5));
 trait(f,eps,rep);
 afficher(f,rep);
  until keypressed;
 END.
3/9
Devoirsetexamenssur:www.kiteb.net
Corrigés Bac pratique Informatique
Section Sciences de l'informatique
23 mai 2013(10h)
Jeudi 23 mai 2013 à 10h
program seance2_23_05_2013_10h;
uses wincrt;
var
f,fc:text;
n:integer;
procedure saisie (var n: integer);
begin
    repeat
          write(' taper n:'); readln(n);
    until (n<=50);
end;
function verif (ch:string):boolean;
var
i:integer;
begin
      i:=0;
repeat
       i:=i+1;
until (not(upcase(ch[i]) in ['A'..'Z',' ']))or(i=length(ch));
verif:=(upcase(ch[i]) in ['A'..'Z',' '])and(ch[1]<>' 
')and(ch[length(ch)]<>' ')and(pos('  ',ch)=0);
end;
procedure saisie_ph( var ph:string);
begin
 repeat
      write('Taper une phrase :');readln(ph);
 until (verif(ph)); 
end;
function crypter (mot:string; p:integer):string;
 var
 motc:string;
 c:char;
 i:integer;
 begin
    motc:='';
    for i:=1 to length(mot) do
    begin
         if (mot[i] in ['A'..'Z']) then
4/9
Correction proposée par
Mr Mejdi Bechikh & Mme Hajer NEFZAOUI
Devoirsetexamenssur:www.kiteb.net
         begin
         if   chr(ord(mot[i])+p)<'Z' then
                                      c:=chr(ord(mot[i])+p)
         else
              c:=chr( (ord(mot[i])+p­90) mod 26 +64);
         end  ;
         
         if (mot[i] in ['a'..'z']) then
         begin
         if   chr(ord(mot[i])+p)<'z' then
                                      c:=chr(ord(mot[i])+p)
         else
              c:=chr( (ord(mot[i])+p­122) mod 26 +97);
         end;
        motc:=motc+c;
    end;
    
     crypter:=motc;
      end;
      function crypter_ph( ph:string):string;
      var
      ch1,phc:string;
      i,p:integer;
      
        begin
            phc:='';
            p:=0;
         
            ph:=ph+' ';
            while(ph<>'')do
            begin
              p:=p+1;
              ch1:=crypter(copy(ph,1,pos(' ',ph)­1),p);
              phc:=phc+ch1+' ';
              delete(ph,1,pos(' ',ph));
            end;
              delete(phc,length(ph),1);
            crypter_ph:=phc;
        end;
     procedure traitement (var f,fc:text; n:integer);              
     var
     i:integer;
     phc,ph:string;
     begin
               append(f); append(fc);
               for i:=1 to n do
               begin
                 saisie_ph(ph);
                 phc:=crypter_ph(ph);
5/9
Devoirsetexamenssur:www.kiteb.net
                 write(f,ph);
                 write(fc,phc);
                 writeln(ph);
                 writeln(phc);
               end;
      close(f);close(fc);
     end;
      
BEGIN
assign(f,'c:phrases.txt'); rewrite(f);
assign(fc,'c:ph_crypt.txt'); rewrite(fc);
saisie(n);
traitement(f,fc,n);
       
END.
6/9
Devoirsetexamenssur:www.kiteb.net
Corrigés Bac pratique Informatique
Section Sciences de l'informatique
23 mai 2013(14h)
Jeudi 23 mai 2013 à 14h
program seance3_23_05_2013_14h;
uses wincrt;
type
mat= array[1..24,1..24]of integer;
 tenreg=record
 nl,ICD,ICF:integer;
 end;
tab= array [1..24] of tenreg;
 VAR
 L,C ,k:integer;
 M:mat;
 T:tab;
 F:text;
 procedure remplir (var L,c:integer ; var M:mat);
 var
 i,j:integer;
 begin
     repeat
           write(' taper L:');readln(l);
             write(' taper c:');readln(c);
     until (l in [3..24]) and (c in [3..24]);
     for i:=1 to  l do
     begin
         for j:=1 to c do
         Repeat
              write('M[',i,',',j,']='); readln(M[i,j]);
         Until (m[i,j]<>0);
     end;
 end;
 procedure Somme (m:mat; lig,col,c:integer; var Fin:integer);
 var
     i,j,s:integer;
 begin
       Fin:=0; S:=0; i:=lig; j:=col;
       repeat
             s:=s+m[lig,j];
             j:=j+1;
       until (S=0) or (j >c);
       if (s=0) then fin:=j­1;
    end;
7/9
Correction proposée par
Mr Mejdi Bechikh & Mme Hajer NEFZAOUI
Devoirsetexamenssur:www.kiteb.net
 procedure traitement (var t:tab; m:mat; l,c:integer; var k:integer );
    var
       s,f,i,j:integer;
     begin
         k:=0;
         for i:=1 to l do
         begin
         for j:=1 to c do
         begin
              somme(m,i,j,c,f);
              if (f<>0) then
                        begin
                        k:=k+1;
                            T[k].Nl:=i;
                            T[k].ICD:=j;
                            T[k].ICF:=f;
                            { writeln(i,'#',j,'#',f);}
                        end;
          end;
         end;
              end;
         function maximum ( t:tab; k:integer ):integer;
              var
               i,max:integer;
               begin
                   max:=(T[1].ICF­T[1].ICD+1);
                   for i:=2 to k do
                   begin
                       if (T[i].ICF­T[i].ICD+1) > max then
                                           max:=T[i].ICF­T[i].ICD+1;
                   end;
                 maximum:=max;
               end;
         procedure Stockage (var F:text ; t:tab ; k:integer);
         var
             max,i:integer;
            chm,ligne1, ch,ch1,ch2,ch3:string;
         begin
         append(f);
         max:=maximum(t,k);
         STR(max,chm); 
    ligne1:=' Le nombre d''elements de la plus longue séquence ='+chm;
         writeln(f,ligne1);
8/9
Devoirsetexamenssur:www.kiteb.net
         writeln(ligne1);
                for i:=1 to k do
                begin
                   if (T[i].ICF­T[i].ICD+1) = max then
                                            begin
                                                Str(T[i].nl,ch1);
                                                Str(T[i].ICD,ch2);
                                                Str(T[i].ICF,ch3);
                                                
ch:=ch1+'#'+ch2+'#'+ch3;
                                                writeln(f,ch);
                                                writeln(ch);
                                            end;
                end;
           Close(f);
         end;
 
 BEGIN
 assign(f,'C:long_Seq.txt');
 rewrite(f);
     remplir (l,c,m);
     traitement (t,m,l,c,k);
     stockage (f,t,k);
 END.
9/9
Devoirsetexamenssur:www.kiteb.net

More Related Content

What's hot

Résumé Algorithme et Programmation
Résumé Algorithme et ProgrammationRésumé Algorithme et Programmation
Résumé Algorithme et Programmation
borhen boukthir
 
Projet de programmation la conversion entre les bases
Projet de programmation   la conversion entre les bases Projet de programmation   la conversion entre les bases
Projet de programmation la conversion entre les bases Tunisie collège
 
Exercices pascal fenni_2018
Exercices pascal fenni_2018Exercices pascal fenni_2018
Exercices pascal fenni_2018
salah fenni
 
Cours php bac info
Cours php bac infoCours php bac info
Cours php bac info
borhen boukthir
 
Série sous programmes (bac scientifique)
Série sous programmes (bac scientifique)Série sous programmes (bac scientifique)
Série sous programmes (bac scientifique)
Hichem Kemali
 
bac info : série récursivité
bac info : série récursivitébac info : série récursivité
bac info : série récursivité
Ămîʼndǿ TrànCè
 
Cours+sql++ +base+de+données+-+bac+informatique+(2009-2010)++elève++khmiri+zied
Cours+sql++ +base+de+données+-+bac+informatique+(2009-2010)++elève++khmiri+ziedCours+sql++ +base+de+données+-+bac+informatique+(2009-2010)++elève++khmiri+zied
Cours+sql++ +base+de+données+-+bac+informatique+(2009-2010)++elève++khmiri+zied
Wajdi Ben Helal
 
Mes devoirs 4 si
Mes devoirs 4 siMes devoirs 4 si
Mes devoirs 4 si
mohamed_SAYARI
 
Resume javascript
Resume javascriptResume javascript
Resume javascript
Jesseraniba
 
Devoirs Algorithme + correction pour 4 si
Devoirs Algorithme + correction pour 4 siDevoirs Algorithme + correction pour 4 si
Devoirs Algorithme + correction pour 4 siNarûtö Bàl'Sèm
 
Les algorithmes recurrents
Les algorithmes recurrentsLes algorithmes recurrents
Les algorithmes recurrentsmohamed_SAYARI
 
Serie recurrents & arithmetiques
Serie recurrents & arithmetiquesSerie recurrents & arithmetiques
Serie recurrents & arithmetiquesmohamed_SAYARI
 
Travaux Dirigés : Algorithmique et Structure de Données
Travaux Dirigés : Algorithmique et Structure de DonnéesTravaux Dirigés : Algorithmique et Structure de Données
Travaux Dirigés : Algorithmique et Structure de Données
Anass41
 
Exercices algo
Exercices algoExercices algo
Exercices algo
NAWEL_DERBEL
 
Serie tri revision_3si
Serie tri revision_3siSerie tri revision_3si
Serie tri revision_3siRiadh Harizi
 

What's hot (20)

Recursiviteeeeeeeeee
RecursiviteeeeeeeeeeRecursiviteeeeeeeeee
Recursiviteeeeeeeeee
 
Serie2
Serie2Serie2
Serie2
 
Résumé Algorithme et Programmation
Résumé Algorithme et ProgrammationRésumé Algorithme et Programmation
Résumé Algorithme et Programmation
 
Algorithmes de tri
Algorithmes de triAlgorithmes de tri
Algorithmes de tri
 
Résumé javascript
Résumé javascriptRésumé javascript
Résumé javascript
 
Projet de programmation la conversion entre les bases
Projet de programmation   la conversion entre les bases Projet de programmation   la conversion entre les bases
Projet de programmation la conversion entre les bases
 
Exercices pascal fenni_2018
Exercices pascal fenni_2018Exercices pascal fenni_2018
Exercices pascal fenni_2018
 
Cours php bac info
Cours php bac infoCours php bac info
Cours php bac info
 
Série sous programmes (bac scientifique)
Série sous programmes (bac scientifique)Série sous programmes (bac scientifique)
Série sous programmes (bac scientifique)
 
bac info : série récursivité
bac info : série récursivitébac info : série récursivité
bac info : série récursivité
 
Cours+sql++ +base+de+données+-+bac+informatique+(2009-2010)++elève++khmiri+zied
Cours+sql++ +base+de+données+-+bac+informatique+(2009-2010)++elève++khmiri+ziedCours+sql++ +base+de+données+-+bac+informatique+(2009-2010)++elève++khmiri+zied
Cours+sql++ +base+de+données+-+bac+informatique+(2009-2010)++elève++khmiri+zied
 
Mes devoirs 4 si
Mes devoirs 4 siMes devoirs 4 si
Mes devoirs 4 si
 
Serie
SerieSerie
Serie
 
Resume javascript
Resume javascriptResume javascript
Resume javascript
 
Devoirs Algorithme + correction pour 4 si
Devoirs Algorithme + correction pour 4 siDevoirs Algorithme + correction pour 4 si
Devoirs Algorithme + correction pour 4 si
 
Les algorithmes recurrents
Les algorithmes recurrentsLes algorithmes recurrents
Les algorithmes recurrents
 
Serie recurrents & arithmetiques
Serie recurrents & arithmetiquesSerie recurrents & arithmetiques
Serie recurrents & arithmetiques
 
Travaux Dirigés : Algorithmique et Structure de Données
Travaux Dirigés : Algorithmique et Structure de DonnéesTravaux Dirigés : Algorithmique et Structure de Données
Travaux Dirigés : Algorithmique et Structure de Données
 
Exercices algo
Exercices algoExercices algo
Exercices algo
 
Serie tri revision_3si
Serie tri revision_3siSerie tri revision_3si
Serie tri revision_3si
 

Viewers also liked

Sujet bac info 2012 g1, g2 et g3 avec correction
Sujet bac info 2012 g1, g2 et g3 avec correctionSujet bac info 2012 g1, g2 et g3 avec correction
Sujet bac info 2012 g1, g2 et g3 avec correction
borhen boukthir
 
Exercices pascal tous les chapitres
Exercices pascal tous les chapitresExercices pascal tous les chapitres
Exercices pascal tous les chapitres
borhen boukthir
 
Cours tic complet
Cours tic completCours tic complet
Cours tic complet
sofixiito
 
LISTE DES DOMAINES DE FORMATION (2013)
LISTE DES DOMAINES DE FORMATION (2013) LISTE DES DOMAINES DE FORMATION (2013)
LISTE DES DOMAINES DE FORMATION (2013)
ImmigrantQuebec
 
Corrigé qcm initiation informatique sgbd - réseau - internet - architectu...
Corrigé qcm   initiation informatique   sgbd - réseau - internet - architectu...Corrigé qcm   initiation informatique   sgbd - réseau - internet - architectu...
Corrigé qcm initiation informatique sgbd - réseau - internet - architectu...
Sofien Zarrouki
 
Algorithmique et programmation en Pascal (résumé)
Algorithmique et programmation en Pascal (résumé)Algorithmique et programmation en Pascal (résumé)
Algorithmique et programmation en Pascal (résumé)
salah fenni
 
éNoncés+corrections bac2010
éNoncés+corrections bac2010éNoncés+corrections bac2010
éNoncés+corrections bac2010Morom Bil Morom
 
éNoncés+corrections bac2008
éNoncés+corrections bac2008éNoncés+corrections bac2008
éNoncés+corrections bac2008Morom Bil Morom
 
Cours complet Base de donne Bac
Cours complet Base de donne Bac Cours complet Base de donne Bac
Cours complet Base de donne Bac
Amri Ossama
 
Bac info 2000-2015 (Tunisie)
Bac info 2000-2015 (Tunisie)Bac info 2000-2015 (Tunisie)
Bac info 2000-2015 (Tunisie)
salah fenni
 
Exercices en turbo pascal sur les nombres
Exercices en turbo pascal sur les nombresExercices en turbo pascal sur les nombres
Exercices en turbo pascal sur les nombres
salah fenni
 

Viewers also liked (15)

Sujet bac info 2012 g1, g2 et g3 avec correction
Sujet bac info 2012 g1, g2 et g3 avec correctionSujet bac info 2012 g1, g2 et g3 avec correction
Sujet bac info 2012 g1, g2 et g3 avec correction
 
Exercices pascal tous les chapitres
Exercices pascal tous les chapitresExercices pascal tous les chapitres
Exercices pascal tous les chapitres
 
Résumer arithmétique
Résumer arithmétiqueRésumer arithmétique
Résumer arithmétique
 
DCT1 4SI
DCT1  4SIDCT1  4SI
DCT1 4SI
 
Cours tic complet
Cours tic completCours tic complet
Cours tic complet
 
LISTE DES DOMAINES DE FORMATION (2013)
LISTE DES DOMAINES DE FORMATION (2013) LISTE DES DOMAINES DE FORMATION (2013)
LISTE DES DOMAINES DE FORMATION (2013)
 
Resumer sur les tris
Resumer sur les trisResumer sur les tris
Resumer sur les tris
 
Corrigé qcm initiation informatique sgbd - réseau - internet - architectu...
Corrigé qcm   initiation informatique   sgbd - réseau - internet - architectu...Corrigé qcm   initiation informatique   sgbd - réseau - internet - architectu...
Corrigé qcm initiation informatique sgbd - réseau - internet - architectu...
 
Algorithmique et programmation en Pascal (résumé)
Algorithmique et programmation en Pascal (résumé)Algorithmique et programmation en Pascal (résumé)
Algorithmique et programmation en Pascal (résumé)
 
Correction
CorrectionCorrection
Correction
 
éNoncés+corrections bac2010
éNoncés+corrections bac2010éNoncés+corrections bac2010
éNoncés+corrections bac2010
 
éNoncés+corrections bac2008
éNoncés+corrections bac2008éNoncés+corrections bac2008
éNoncés+corrections bac2008
 
Cours complet Base de donne Bac
Cours complet Base de donne Bac Cours complet Base de donne Bac
Cours complet Base de donne Bac
 
Bac info 2000-2015 (Tunisie)
Bac info 2000-2015 (Tunisie)Bac info 2000-2015 (Tunisie)
Bac info 2000-2015 (Tunisie)
 
Exercices en turbo pascal sur les nombres
Exercices en turbo pascal sur les nombresExercices en turbo pascal sur les nombres
Exercices en turbo pascal sur les nombres
 

Similar to Sujet bac info 2013 g1, g2 et g3 avec correction

g++ -o simpleVector.exe simpleVector.cpp #include stdio.h #i.pdf
g++ -o simpleVector.exe simpleVector.cpp #include stdio.h #i.pdfg++ -o simpleVector.exe simpleVector.cpp #include stdio.h #i.pdf
g++ -o simpleVector.exe simpleVector.cpp #include stdio.h #i.pdf
arakalamkah11
 
C++11 & C++14
C++11 & C++14C++11 & C++14
C++11 & C++14
CyberPlusIndia
 
please help me with this and explain in details also in the first qu.pdf
please help me with this and explain in details also in the first qu.pdfplease help me with this and explain in details also in the first qu.pdf
please help me with this and explain in details also in the first qu.pdf
newfaransportsfitnes
 
C++ L05-Functions
C++ L05-FunctionsC++ L05-Functions
C++ L05-Functions
Mohammad Shaker
 
C++_notes.pdf
C++_notes.pdfC++_notes.pdf
C++_notes.pdf
HimanshuSharma997566
 
Computer
ComputerComputer
Computer
Gaurav Kumar
 
Евгений Крутько, Многопоточные вычисления, современный подход.
Евгений Крутько, Многопоточные вычисления, современный подход.Евгений Крутько, Многопоточные вычисления, современный подход.
Евгений Крутько, Многопоточные вычисления, современный подход.
Platonov Sergey
 
Lab Assignment 4 CSE330 Spring 2014 Skeleton Code for ex.docx
 Lab Assignment 4 CSE330 Spring 2014  Skeleton Code for ex.docx Lab Assignment 4 CSE330 Spring 2014  Skeleton Code for ex.docx
Lab Assignment 4 CSE330 Spring 2014 Skeleton Code for ex.docx
MARRY7
 
PyParis - weather and climate data
PyParis - weather and climate dataPyParis - weather and climate data
PyParis - weather and climate data
Margriet Groenendijk
 
Quiz using C++
Quiz using C++Quiz using C++
Quiz using C++
Sushil Mishra
 
GPU Programming on CPU - Using C++AMP
GPU Programming on CPU - Using C++AMPGPU Programming on CPU - Using C++AMP
GPU Programming on CPU - Using C++AMPMiller Lee
 
Q1 Consider the below omp_trap1.c implantation, modify the code so t.pdf
Q1 Consider the below omp_trap1.c implantation, modify the code so t.pdfQ1 Consider the below omp_trap1.c implantation, modify the code so t.pdf
Q1 Consider the below omp_trap1.c implantation, modify the code so t.pdf
abdulrahamanbags
 
OOP.pptx
OOP.pptxOOP.pptx
OOP.pptx
SanketAde1
 
C# Assignmet Help
C# Assignmet HelpC# Assignmet Help
C# Assignmet Help
Programming Homework Help
 
Notes for C++ Programming / Object Oriented C++ Programming for MCA, BCA and ...
Notes for C++ Programming / Object Oriented C++ Programming for MCA, BCA and ...Notes for C++ Programming / Object Oriented C++ Programming for MCA, BCA and ...
Notes for C++ Programming / Object Oriented C++ Programming for MCA, BCA and ...
ssuserd6b1fd
 
Introduction to cpp (c++)
Introduction to cpp (c++)Introduction to cpp (c++)
Introduction to cpp (c++)
Arun Umrao
 
eBPF Perf Tools 2019
eBPF Perf Tools 2019eBPF Perf Tools 2019
eBPF Perf Tools 2019
Brendan Gregg
 
ONLY EDIT CapacityOptimizer.java, Simulator.java, and TriangularD.pdf
ONLY EDIT  CapacityOptimizer.java, Simulator.java, and TriangularD.pdfONLY EDIT  CapacityOptimizer.java, Simulator.java, and TriangularD.pdf
ONLY EDIT CapacityOptimizer.java, Simulator.java, and TriangularD.pdf
vinodagrawal6699
 
4Developers 2018: Beyond c++17 (Mateusz Pusz)
4Developers 2018: Beyond c++17 (Mateusz Pusz)4Developers 2018: Beyond c++17 (Mateusz Pusz)
4Developers 2018: Beyond c++17 (Mateusz Pusz)
PROIDEA
 

Similar to Sujet bac info 2013 g1, g2 et g3 avec correction (20)

g++ -o simpleVector.exe simpleVector.cpp #include stdio.h #i.pdf
g++ -o simpleVector.exe simpleVector.cpp #include stdio.h #i.pdfg++ -o simpleVector.exe simpleVector.cpp #include stdio.h #i.pdf
g++ -o simpleVector.exe simpleVector.cpp #include stdio.h #i.pdf
 
C++11 & C++14
C++11 & C++14C++11 & C++14
C++11 & C++14
 
Algo>Queues
Algo>QueuesAlgo>Queues
Algo>Queues
 
please help me with this and explain in details also in the first qu.pdf
please help me with this and explain in details also in the first qu.pdfplease help me with this and explain in details also in the first qu.pdf
please help me with this and explain in details also in the first qu.pdf
 
C++ L05-Functions
C++ L05-FunctionsC++ L05-Functions
C++ L05-Functions
 
C++_notes.pdf
C++_notes.pdfC++_notes.pdf
C++_notes.pdf
 
Computer
ComputerComputer
Computer
 
Евгений Крутько, Многопоточные вычисления, современный подход.
Евгений Крутько, Многопоточные вычисления, современный подход.Евгений Крутько, Многопоточные вычисления, современный подход.
Евгений Крутько, Многопоточные вычисления, современный подход.
 
Lab Assignment 4 CSE330 Spring 2014 Skeleton Code for ex.docx
 Lab Assignment 4 CSE330 Spring 2014  Skeleton Code for ex.docx Lab Assignment 4 CSE330 Spring 2014  Skeleton Code for ex.docx
Lab Assignment 4 CSE330 Spring 2014 Skeleton Code for ex.docx
 
PyParis - weather and climate data
PyParis - weather and climate dataPyParis - weather and climate data
PyParis - weather and climate data
 
Quiz using C++
Quiz using C++Quiz using C++
Quiz using C++
 
GPU Programming on CPU - Using C++AMP
GPU Programming on CPU - Using C++AMPGPU Programming on CPU - Using C++AMP
GPU Programming on CPU - Using C++AMP
 
Q1 Consider the below omp_trap1.c implantation, modify the code so t.pdf
Q1 Consider the below omp_trap1.c implantation, modify the code so t.pdfQ1 Consider the below omp_trap1.c implantation, modify the code so t.pdf
Q1 Consider the below omp_trap1.c implantation, modify the code so t.pdf
 
OOP.pptx
OOP.pptxOOP.pptx
OOP.pptx
 
C# Assignmet Help
C# Assignmet HelpC# Assignmet Help
C# Assignmet Help
 
Notes for C++ Programming / Object Oriented C++ Programming for MCA, BCA and ...
Notes for C++ Programming / Object Oriented C++ Programming for MCA, BCA and ...Notes for C++ Programming / Object Oriented C++ Programming for MCA, BCA and ...
Notes for C++ Programming / Object Oriented C++ Programming for MCA, BCA and ...
 
Introduction to cpp (c++)
Introduction to cpp (c++)Introduction to cpp (c++)
Introduction to cpp (c++)
 
eBPF Perf Tools 2019
eBPF Perf Tools 2019eBPF Perf Tools 2019
eBPF Perf Tools 2019
 
ONLY EDIT CapacityOptimizer.java, Simulator.java, and TriangularD.pdf
ONLY EDIT  CapacityOptimizer.java, Simulator.java, and TriangularD.pdfONLY EDIT  CapacityOptimizer.java, Simulator.java, and TriangularD.pdf
ONLY EDIT CapacityOptimizer.java, Simulator.java, and TriangularD.pdf
 
4Developers 2018: Beyond c++17 (Mateusz Pusz)
4Developers 2018: Beyond c++17 (Mateusz Pusz)4Developers 2018: Beyond c++17 (Mateusz Pusz)
4Developers 2018: Beyond c++17 (Mateusz Pusz)
 

Recently uploaded

How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
BhavyaRajput3
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
Nguyen Thanh Tu Collection
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Atul Kumar Singh
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
GeoBlogs
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
Tamralipta Mahavidyalaya
 

Recently uploaded (20)

How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 

Sujet bac info 2013 g1, g2 et g3 avec correction