SlideShare a Scribd company logo
1 of 65
Download to read offline
Coding and representation
of information
Dr. Taha Zerrouki
t.zerrouki@univ-bouira.dz
MI, semester 1
University of Bouira
•Program
• Number systems
•
‫التعداد‬ ‫أنظمة‬ ‫في‬ ‫الحساب‬
•
Representation of positive and negative
numbers
•
‫والسالبة‬ ‫الموجبة‬ ‫األعداد‬ ‫تمثيل‬
‫المعلومات‬ ‫ترميز‬
‫وتمثيلها‬
‫ج‬
5
‫الموجبة‬ ‫األعداد‬ ‫مثيل‬
Number representation
‫األعداد‬ ‫تمثيل‬
Binary ‫الثنائي‬ ‫النظام‬
Bit/ byte(byte)
‫بت‬
‫بايت‬
=
8
‫بت‬
Octet = 8 bits
Binary ‫ثنائي‬
Decimal ‫عشري‬
Values in Decimal ‫العشرية‬ ‫النظام‬ ‫في‬ ‫القيم‬
Byte representation ‫البايت‬ ‫تمثيل‬
Number of bits ‫البتات‬ ‫أرقام‬
‫األعداد‬
●
‫الرياضيات‬ ‫في‬
●
‫محدودة‬ ‫غير‬ ‫األعداد‬
●
]-∞; +∞[
●
‫حاسوب‬ ‫حاسبة‬ ‫اآللة‬
) / (
Calculator
What is the maximum number that can be
represented on an 8-digit calculator?
‫ذات‬ ‫حاسبة‬ ‫على‬ ‫كتابته‬ ‫يمكن‬ ‫عدد‬ ‫أكبر‬ ‫هو‬ ‫ما‬
8 ‫أرقام؟‬
‫مجال‬
Interval
On an 8-digit calculator we can represent the
interval from [0, to 9999 9999]
‫المجال‬ ‫تمثيل‬ ‫يمكن‬
[0, to 99 999 999]
‫مجال‬ ‫سعة‬
Size of an interval

What is the interval that can be
represented on a calculator with N decimal
digits

‫ذات‬ ‫حاسبة‬ ‫على‬ ‫تمثيله‬ ‫يمكن‬ ‫الذي‬ ‫المجال‬ ‫ما‬
‫ن‬
‫ا؟‬‫ًي‬‫عشر‬ ‫ا‬‫رقًم‬
N
Size of an interval
99 = 102
-1

999 = 103
-1

[ 0, 1010
-1]

[ 0, 10n
-1]
99
999
9 999 999 999
Base 10
Size of an interval
(77)8 = 82
-1

(777)8 = 83
-1

[ 0, 810
-1]

[ 0, 8n
-1]
77
777
7 777 777 777
Base 8
Size of an interval
[ 0, Bn
-1]
Base B
N
Size of an interval
(11)2 = 22
-1

(111)2 = 23
-1

[ 0, 28
-1]

[ 0, 2n
-1]
11
111
1111 1111
Base 2
Size of an interval Base 2
N bits
The basic unit is the byte
N bits => [ 0, 2n
-1]
Size of an interval
[0; 28
-1]
1111 1111
Base 2
[0; 127]
[0; 210
-1]
11 1111 1111
[0; 1023]
Exercise
What is the maximum number that can be
represented by
‫بـ‬ ‫تمثيله‬ ‫يمكن‬ ‫عدد‬ ‫أكبر‬ ‫ما‬
16 bit
24 bit
32 bit
Size of an interval Base 2
[0; 216
-1]
1111 1111 1111 1111
[0; 65,535]
[0; 224
-1]
1111 1111 1111 1111 1111 1111
[0; 16,777,215]
Size of an interval Base 2
[0; 232
-1]
1111 1111 1111 1111 1111 1111 1111 1111
[0; 4,294,967,295]
Solution
16 bits => [0; 65,535]
24 bits => [0; 16,777,215]
32 bits => [0; 4,294,967,295]
Question?

What does the result of

9999 9999 * 9

On a simple 8 digit calculator?

‫ضرب‬ ‫نتيجة‬ ‫ما‬

9999
9999
*
9

‫ذات‬ ‫بسيطة‬ ‫حاسبة‬ ‫على‬
8
‫أرقام‬
Overflow ‫طفح‬
8-bit addition
1000 0000
+0100 0000
-----------------
1100 0000
8-bit addition
Overflow
‫طفح‬
1000 0000
+1000 0000
-----------------
1 0000 0000
Overflow
Coding
‫اصطالح‬ ‫ترميز‬
‫المعلومات‬ ‫ترميز‬
‫وتمثيلها‬
‫ج‬
5
‫السالبة‬ ‫األعداد‬ ‫تمثيل‬
Negative numbers
‫السالبة‬ ‫األعداد‬
Negative numbers
Negative numbers ●
‫السالبة‬ ‫األعداد‬
–
‫بإشارة‬ ‫قيمة‬
–
‫الواحد‬ ‫إلى‬ ‫متمم‬
–
‫إلى‬ ‫متتم‬
2
Signed value
1’s complement
2’s Complement
Negative numbers/signed value
+4
-4
Sign bit: 0 => +
1 => -
‫واإلشارة‬ ‫بالقيمة‬ ‫تمثيل‬
0 1 0 0
1 1 0 0
Exercise
Represent the following numbers
on 5 bits in signed value
‫على‬ ‫اآلتية‬ ‫األعداد‬ ‫مثل‬
5
‫بتات‬
‫واإلشارة‬ ‫بالقيمة‬
3
,
2
,
1
,
0
- ,
1
- ,
2
- ,
3
Exercise
5-bit signed value
3: 00011
2: 00010
1: 00001
0: 00000
-1 : 10001
-2 : 10010
-3 : 10011
Exercise
●
What does the following number
represent?
●
on 5 bits in signed value
●
‫على‬ ‫العدد‬ ‫هذا‬ ‫يمثل‬ ‫ماذا‬
5
‫بتات‬
●
‫اإلشارة‬ ‫ذات‬ ‫بالقيمة‬
●
10000
Solution
The 5-bit number in signed value
Sign bit -0
1 0 0 0 0
Note
This representation is also said
Absolute value
‫المطلقة‬ ‫القيمة‬ ‫تمثيل‬ ‫أيضا‬ ‫تسمى‬ ‫الطريقة‬ ‫هذه‬
Arithmetic in SV
SV on 4 bits -1 + 2 = -3
1 0 0 1 -1
0 0 1 0 + 2
1 0 1 1 -3
Disadvantages ‫عيوب‬

Two representations for zero

+0, -0

‫للصفر‬ ‫تمثيالن‬

Calculation problem

‫الحساب‬ ‫في‬ ‫مشاكل‬
Negative numbers
Negative numbers ●
‫السالبة‬ ‫األعداد‬
–
‫بإشارة‬ ‫قيمة‬
–
‫الواحد‬ ‫إلى‬ ‫متمم‬
–
‫إلى‬ ‫متتم‬
2
Signed value
1’s complement
2’s Complement
‫إلى‬ ‫المتمم‬
Complement to 1
+
4
-
4
Sign bit: 0 => +
1 => -
Reverse bits
‫بت‬ ‫كل‬ ‫نقلب‬
0 1 0 0
1 0 1 1
Exercise
Represent the following numbers
on 5 bits in 1's complement
‫على‬ ‫واحد‬ ‫إلى‬ ‫بالمتمم‬ ‫األعداد‬ ‫مثل‬
5
‫بتات‬
3
,
2
,
1
,
0
- ,
1
- ,
2
- ,
3
Exercise
3:00011
2:00010
1:00001
0:00000
-1: 1 1110
-2: 1 1101
-3: 1 1100
Exercise
●
What does the following number
represent?
●
on 5 bits in C1
●
‫الممثالن‬ ‫العددان‬ ‫هذان‬ ‫يمثل‬ ‫ماذا‬
●
‫إلى‬ ‫بالمتتم‬
1
‫على‬
5
‫بتات‬
●
11111
●
00000
●
Solution
The next 5-bit number
in complement to 1
Sign bit -0
1 1 1 1 1
Arithmetic in C1
‫واحد‬ ‫إلى‬ ‫المتمم‬ ‫في‬ ‫الحساب‬
C1 on 4 bits -1 + 2 = 0
1
1 1
1 1 0 -1
1 0 + 2
1 0 0 0 0 -3
Disadvantages

Two representations for zero

+0, -0

‫للصفر‬ ‫تمثيالن‬

Calculation problem

‫الحساب‬ ‫في‬ ‫مشاكل‬
Exercise

Calculate in 1's complement over 5 bits

‫على‬ ‫واحد‬ ‫إلى‬ ‫المتمم‬ ‫في‬ ‫احسب‬
5
‫بتات‬

(-2) +4 =?

how to correct the result

‫النتيجة‬ ‫نصحح‬ ‫كيف‬
Exercise
●
●
1
1 1
1 1 0 1 -2
1 0 0 + 4
1 0 0 0 0 1 1
Exercise


1
1 1
1 1 0 1 -2
1 0 0 + 4
0 0 0 0 1 1
1 +
0 0 0 1 0
Negative numbers
Negative numbers ●
‫السالبة‬ ‫األعداد‬
–
‫بإشارة‬ ‫قيمة‬
–
‫الواحد‬ ‫إلى‬ ‫متمم‬
–
‫إلى‬ ‫متتم‬
2
Signed value
1’s complement
2’s Complement
Complement to 2 ‫إلى‬ ‫المتمم‬
+
5
-
5
Sign bit: 0 => +
1 => -
Reverse bits and add 1
‫إضافة‬ ‫ثم‬ ‫البتات‬ ‫قلب‬
1
0 1 0 1
1 0 1 0
1 0 1 1
Exercise
Represent the following numbers
on 5 bits in 2's complement
‫إلى‬ ‫المتمم‬ ‫في‬ ‫مثل‬
2
‫على‬
5
‫بتات‬
3
,
2
,
1
,
0
- ,
1
- ,
2
- ,
3
Exercise
3: 00011
2: 00010
1: 00001
0: 00000
-1: 11111
-2: 11110
-3: 11101
Exercise
●
What does the following number
represent ?
●
on 5 bits in C2
●
‫إلى‬ ‫المتمم‬ ‫في‬ ‫ـة‬
‫ل‬‫ممث‬ ‫ـداد‬
‫ع‬‫األ‬ ‫ـل‬
‫ث‬‫تم‬ ‫ماذا‬
2
●
‫على‬
5
‫بتات‬
11111
00000
Solution
1 1 1 1 1
Solution
The following 5-bit number
in 2's complement
11111-1 = 11110 (reversed)
- 00001
1 1 1 1 1
Arithmetic in C2
●
●
1
1 1
1 1 1 0 -2
1 0 0 + 4
1 0 0 0 1 0 2
exercise
Calculate in C2 on 6 bits
11110 - 1010
exercise
Calculate in C2 on 6 bits
11110 - 1010
Intervals

An 8-bit interval can represent

Unsigned value [0; 255]

Signed value [-127; 127]

1's complement [-127, 127]

2's complement [-128; 127]
Intervals

n-bit interval can represent

Unsigned value [0; 2 n
-1]

Signed value [-(2 n-1
-1); 2 n-1
-1]

1's complement [-(2 n-1
-1); 2 n-1
-1]

2's complement [-2 n-1
; 2 n-1
-1]
Exercise

Give the intervals in Signed Value and C2
for

16 bit
Exercise

Give the intervals in Signed Value and C2
for

16 bits = [-(2 15
-1); 2 15
-1]

SV, C1 = [-32,767; 32,767]

C2 = [-32,768; 32,767]
Overflow

More Related Content

Similar to Coding Number Systems

data representation
 data representation data representation
data representationHaroon_007
 
CS304PC:Computer Organization and Architecture Unit- III PDF notes .pdf
CS304PC:Computer Organization and Architecture Unit- III PDF notes .pdfCS304PC:Computer Organization and Architecture Unit- III PDF notes .pdf
CS304PC:Computer Organization and Architecture Unit- III PDF notes .pdfAsst.prof M.Gokilavani
 
Neumerical Methods.pptx
Neumerical Methods.pptxNeumerical Methods.pptx
Neumerical Methods.pptxPayelDalal
 
Chapter 02 Data Types
Chapter 02   Data TypesChapter 02   Data Types
Chapter 02 Data TypesNathan Yeung
 
Data Reprersentation
Data Reprersentation  Data Reprersentation
Data Reprersentation Kamal Acharya
 
2s complement arithmetic
2s complement arithmetic2s complement arithmetic
2s complement arithmeticSanjay Saluth
 
Digital fundamendals r001a
Digital fundamendals r001aDigital fundamendals r001a
Digital fundamendals r001aarunachalamr16
 
Finite word length effects
Finite word length effectsFinite word length effects
Finite word length effectsPeriyanayagiS
 
Binary Codes and Number System
Binary Codes and Number SystemBinary Codes and Number System
Binary Codes and Number SystemDebarati Das
 
Representation of Integers
Representation of IntegersRepresentation of Integers
Representation of IntegersSusantha Herath
 
Unsigned and Signed fixed point Addition and subtraction
Unsigned and Signed  fixed point Addition and subtractionUnsigned and Signed  fixed point Addition and subtraction
Unsigned and Signed fixed point Addition and subtractionciyamala kushbu
 
Computer archi&mp
Computer archi&mpComputer archi&mp
Computer archi&mpMSc CST
 
Chapter 2_Number system (EEEg4302).pdf
Chapter 2_Number system (EEEg4302).pdfChapter 2_Number system (EEEg4302).pdf
Chapter 2_Number system (EEEg4302).pdfTamiratDejene1
 
Chapter_1_Digital_Systems_and_Binary_Numbers2.ppt
Chapter_1_Digital_Systems_and_Binary_Numbers2.pptChapter_1_Digital_Systems_and_Binary_Numbers2.ppt
Chapter_1_Digital_Systems_and_Binary_Numbers2.pptDavid Louie Bedia
 

Similar to Coding Number Systems (20)

data representation
 data representation data representation
data representation
 
Alu1
Alu1Alu1
Alu1
 
datareprersentation 1.pptx
datareprersentation 1.pptxdatareprersentation 1.pptx
datareprersentation 1.pptx
 
CS304PC:Computer Organization and Architecture Unit- III PDF notes .pdf
CS304PC:Computer Organization and Architecture Unit- III PDF notes .pdfCS304PC:Computer Organization and Architecture Unit- III PDF notes .pdf
CS304PC:Computer Organization and Architecture Unit- III PDF notes .pdf
 
Neumerical Methods.pptx
Neumerical Methods.pptxNeumerical Methods.pptx
Neumerical Methods.pptx
 
Chapter 02 Data Types
Chapter 02   Data TypesChapter 02   Data Types
Chapter 02 Data Types
 
Data Reprersentation
Data Reprersentation  Data Reprersentation
Data Reprersentation
 
2s complement arithmetic
2s complement arithmetic2s complement arithmetic
2s complement arithmetic
 
Digital fundamendals r001a
Digital fundamendals r001aDigital fundamendals r001a
Digital fundamendals r001a
 
Number Systems
Number  SystemsNumber  Systems
Number Systems
 
Finite word length effects
Finite word length effectsFinite word length effects
Finite word length effects
 
Binary Codes and Number System
Binary Codes and Number SystemBinary Codes and Number System
Binary Codes and Number System
 
Representation of Integers
Representation of IntegersRepresentation of Integers
Representation of Integers
 
Unit 2 Arithmetic
Unit 2 ArithmeticUnit 2 Arithmetic
Unit 2 Arithmetic
 
Chapter1b
Chapter1bChapter1b
Chapter1b
 
Process.org
Process.orgProcess.org
Process.org
 
Unsigned and Signed fixed point Addition and subtraction
Unsigned and Signed  fixed point Addition and subtractionUnsigned and Signed  fixed point Addition and subtraction
Unsigned and Signed fixed point Addition and subtraction
 
Computer archi&mp
Computer archi&mpComputer archi&mp
Computer archi&mp
 
Chapter 2_Number system (EEEg4302).pdf
Chapter 2_Number system (EEEg4302).pdfChapter 2_Number system (EEEg4302).pdf
Chapter 2_Number system (EEEg4302).pdf
 
Chapter_1_Digital_Systems_and_Binary_Numbers2.ppt
Chapter_1_Digital_Systems_and_Binary_Numbers2.pptChapter_1_Digital_Systems_and_Binary_Numbers2.ppt
Chapter_1_Digital_Systems_and_Binary_Numbers2.ppt
 

More from linuxscout

ترويج منتجات البحث
ترويج منتجات البحثترويج منتجات البحث
ترويج منتجات البحثlinuxscout
 
crsdtla-tools-corpus-lexicon.pdf
crsdtla-tools-corpus-lexicon.pdfcrsdtla-tools-corpus-lexicon.pdf
crsdtla-tools-corpus-lexicon.pdflinuxscout
 
دور المصادر المفتوحة في أبحاث اللسانيات الحاسوبية العربية
دور المصادر المفتوحة في أبحاث اللسانيات الحاسوبية العربيةدور المصادر المفتوحة في أبحاث اللسانيات الحاسوبية العربية
دور المصادر المفتوحة في أبحاث اللسانيات الحاسوبية العربيةlinuxscout
 
منطيق : تطوير برنامج مفتوح المصدر لقراءة النصوص العربية آليا للمكفوفين
منطيق : تطوير برنامج مفتوح المصدر لقراءة النصوص العربية آليا للمكفوفينمنطيق : تطوير برنامج مفتوح المصدر لقراءة النصوص العربية آليا للمكفوفين
منطيق : تطوير برنامج مفتوح المصدر لقراءة النصوص العربية آليا للمكفوفينlinuxscout
 
تشكيلة: مدونة النصوص العربية المشكولة ودورها في تطوير برامج التشكيل الآلي
تشكيلة: مدونة النصوص العربية المشكولة ودورها في تطوير برامج التشكيل  الآليتشكيلة: مدونة النصوص العربية المشكولة ودورها في تطوير برامج التشكيل  الآلي
تشكيلة: مدونة النصوص العربية المشكولة ودورها في تطوير برامج التشكيل الآليlinuxscout
 
استغلال الشبكات الاجتماعية في الترويج للعمل التطوعي
استغلال الشبكات الاجتماعية في الترويج للعمل التطوعياستغلال الشبكات الاجتماعية في الترويج للعمل التطوعي
استغلال الشبكات الاجتماعية في الترويج للعمل التطوعيlinuxscout
 
التطبيقات اللسانية الحاسوبية للغة العربية: البدائل مفتوحة المصدر
التطبيقات اللسانية الحاسوبية للغة العربية: البدائل مفتوحة المصدرالتطبيقات اللسانية الحاسوبية للغة العربية: البدائل مفتوحة المصدر
التطبيقات اللسانية الحاسوبية للغة العربية: البدائل مفتوحة المصدرlinuxscout
 
Info1 cours 4-alphanum-v4
Info1  cours 4-alphanum-v4Info1  cours 4-alphanum-v4
Info1 cours 4-alphanum-v4linuxscout
 
Info1 cours 4- bcd-gray v3
Info1  cours 4- bcd-gray v3Info1  cours 4- bcd-gray v3
Info1 cours 4- bcd-gray v3linuxscout
 
Info1 cours 3-vf-mi-v1
Info1  cours 3-vf-mi-v1Info1  cours 3-vf-mi-v1
Info1 cours 3-vf-mi-v1linuxscout
 
Info1 cours 3-codage-m iv5
Info1  cours 3-codage-m iv5Info1  cours 3-codage-m iv5
Info1 cours 3-codage-m iv5linuxscout
 
Info1 cours 3-codage-mi-sys num
Info1  cours 3-codage-mi-sys numInfo1  cours 3-codage-mi-sys num
Info1 cours 3-codage-mi-sys numlinuxscout
 
Codage cours1--mi
Codage cours1--miCodage cours1--mi
Codage cours1--milinuxscout
 
Codage cours 2-software-mi-
Codage  cours 2-software-mi-Codage  cours 2-software-mi-
Codage cours 2-software-mi-linuxscout
 
Codage cours 1-intro-mi1-
Codage  cours 1-intro-mi1-Codage  cours 1-intro-mi1-
Codage cours 1-intro-mi1-linuxscout
 
Algèbre de boole ionction-logique-p2-1
Algèbre de boole ionction-logique-p2-1Algèbre de boole ionction-logique-p2-1
Algèbre de boole ionction-logique-p2-1linuxscout
 
Alg ebre de boole ionction-logique-p2-1
Alg ebre de boole ionction-logique-p2-1Alg ebre de boole ionction-logique-p2-1
Alg ebre de boole ionction-logique-p2-1linuxscout
 
Alg ebre de boole ionction-logique-p1
Alg ebre de boole ionction-logique-p1Alg ebre de boole ionction-logique-p1
Alg ebre de boole ionction-logique-p1linuxscout
 
Algebre de boole intro -v3
Algebre de boole intro -v3Algebre de boole intro -v3
Algebre de boole intro -v3linuxscout
 
Structure machine : Les registres
Structure machine : Les registresStructure machine : Les registres
Structure machine : Les registreslinuxscout
 

More from linuxscout (20)

ترويج منتجات البحث
ترويج منتجات البحثترويج منتجات البحث
ترويج منتجات البحث
 
crsdtla-tools-corpus-lexicon.pdf
crsdtla-tools-corpus-lexicon.pdfcrsdtla-tools-corpus-lexicon.pdf
crsdtla-tools-corpus-lexicon.pdf
 
دور المصادر المفتوحة في أبحاث اللسانيات الحاسوبية العربية
دور المصادر المفتوحة في أبحاث اللسانيات الحاسوبية العربيةدور المصادر المفتوحة في أبحاث اللسانيات الحاسوبية العربية
دور المصادر المفتوحة في أبحاث اللسانيات الحاسوبية العربية
 
منطيق : تطوير برنامج مفتوح المصدر لقراءة النصوص العربية آليا للمكفوفين
منطيق : تطوير برنامج مفتوح المصدر لقراءة النصوص العربية آليا للمكفوفينمنطيق : تطوير برنامج مفتوح المصدر لقراءة النصوص العربية آليا للمكفوفين
منطيق : تطوير برنامج مفتوح المصدر لقراءة النصوص العربية آليا للمكفوفين
 
تشكيلة: مدونة النصوص العربية المشكولة ودورها في تطوير برامج التشكيل الآلي
تشكيلة: مدونة النصوص العربية المشكولة ودورها في تطوير برامج التشكيل  الآليتشكيلة: مدونة النصوص العربية المشكولة ودورها في تطوير برامج التشكيل  الآلي
تشكيلة: مدونة النصوص العربية المشكولة ودورها في تطوير برامج التشكيل الآلي
 
استغلال الشبكات الاجتماعية في الترويج للعمل التطوعي
استغلال الشبكات الاجتماعية في الترويج للعمل التطوعياستغلال الشبكات الاجتماعية في الترويج للعمل التطوعي
استغلال الشبكات الاجتماعية في الترويج للعمل التطوعي
 
التطبيقات اللسانية الحاسوبية للغة العربية: البدائل مفتوحة المصدر
التطبيقات اللسانية الحاسوبية للغة العربية: البدائل مفتوحة المصدرالتطبيقات اللسانية الحاسوبية للغة العربية: البدائل مفتوحة المصدر
التطبيقات اللسانية الحاسوبية للغة العربية: البدائل مفتوحة المصدر
 
Info1 cours 4-alphanum-v4
Info1  cours 4-alphanum-v4Info1  cours 4-alphanum-v4
Info1 cours 4-alphanum-v4
 
Info1 cours 4- bcd-gray v3
Info1  cours 4- bcd-gray v3Info1  cours 4- bcd-gray v3
Info1 cours 4- bcd-gray v3
 
Info1 cours 3-vf-mi-v1
Info1  cours 3-vf-mi-v1Info1  cours 3-vf-mi-v1
Info1 cours 3-vf-mi-v1
 
Info1 cours 3-codage-m iv5
Info1  cours 3-codage-m iv5Info1  cours 3-codage-m iv5
Info1 cours 3-codage-m iv5
 
Info1 cours 3-codage-mi-sys num
Info1  cours 3-codage-mi-sys numInfo1  cours 3-codage-mi-sys num
Info1 cours 3-codage-mi-sys num
 
Codage cours1--mi
Codage cours1--miCodage cours1--mi
Codage cours1--mi
 
Codage cours 2-software-mi-
Codage  cours 2-software-mi-Codage  cours 2-software-mi-
Codage cours 2-software-mi-
 
Codage cours 1-intro-mi1-
Codage  cours 1-intro-mi1-Codage  cours 1-intro-mi1-
Codage cours 1-intro-mi1-
 
Algèbre de boole ionction-logique-p2-1
Algèbre de boole ionction-logique-p2-1Algèbre de boole ionction-logique-p2-1
Algèbre de boole ionction-logique-p2-1
 
Alg ebre de boole ionction-logique-p2-1
Alg ebre de boole ionction-logique-p2-1Alg ebre de boole ionction-logique-p2-1
Alg ebre de boole ionction-logique-p2-1
 
Alg ebre de boole ionction-logique-p1
Alg ebre de boole ionction-logique-p1Alg ebre de boole ionction-logique-p1
Alg ebre de boole ionction-logique-p1
 
Algebre de boole intro -v3
Algebre de boole intro -v3Algebre de boole intro -v3
Algebre de boole intro -v3
 
Structure machine : Les registres
Structure machine : Les registresStructure machine : Les registres
Structure machine : Les registres
 

Recently uploaded

Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitolTechU
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
MICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxMICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxabhijeetpadhi001
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 

Recently uploaded (20)

Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptx
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
MICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxMICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)
 

Coding Number Systems