SlideShare a Scribd company logo
1 of 31
Number System
DIGITAL ELECTRONICS
Ms.P.Sivalakshmi .M.E.,
Assistant Professor/ECE
R.M.K College of Engineering & Technology
DEPARTMENT OF ELECTRONICS AND COMMUNICATION
ENGINEERING
CONTENTS
• NumberSystem
• RepresentationofNumbersofdifferentRadix
• ConversionofNumbersfromoneRadixtoanotherRadix
• ComplementofNumber
• BinaryArithmetic
WHAT IS NUMBER SYSTEM ?
Asystemfor representingnumberof certaintype.
Example:
• Thereareseveralsystemsfor representingthecounting
numbers.
• Theseincludetheusualbase“10”or decimalsystem
1,2,3…..10,11,12,..99,100,…
HOW THE COMPUTER GETS THE
ANSWER
A computer understands information
composed of only zeros and ones.
The decimal number system is
convenient for the programmer.
The computer uses binary digits for its
operation.
8
+1
=9
NUMBER SYSTEM CHART
System Base Symbols
Used by
humans?
Used in
computers?
Decimal 10 0,1,…9 Yes No
Binary 2 0, 1 No Yes
Octal 8 0,1,…7 No No
Hexa-
decimal
16 0,1,…9,
A,B,…F
No No
DECIMAL NUMBER SYSTEM
0,1,2,3,4,5,6,7,8,9.DIGITS
10BASE
7
9*101
8*100
5*102
4*103
4598
BINARY NUMBER SYSTEM
DIGITS
2BASE
0,1
0*22
1*21
1*20
1*23
1011
HEXADECIMAL NUMBER SYSTEM
DIGITS
16BASE
• 0,1,2,3,4,5,6,7,
• 8,9,A,B,C,D,E,F
5*161
D*160
A*1621*163
1A5D
OCTAL NUMBER SYSTEM
DIGITS
8BASE
0,1,2,3,4,5,6,7,8
7*81
3*80
2*82
5*83
5273
CONVERSION AMONG
BASES
Hexadecimal
Decimal Octal
Binary
• Groupinto3'sstartingatleastsignificantsymbol.
• write1octaldigit for eachgroup .
Example:
Convert (1010101)2 to()8
001 010 10
1
1 2 5
Answer= 1258
BINARY TO OCTAL
ifthe numberofbits
isnotevenlydivisible
by3,thenadd0'sat
the mostsignificant
end.
Answer= (010101111)2
OCTAL TO BINARY
Example: Convert(257)8
2 57
010
101
111
BINARY TO HEXADECIMAL
• Group into 4's starting at leastsignificant symbol write 1 hexdigit for
eachgroup.
E.g Convert(1010111011)2to ()16
10 1011 1011
B2 B
Answer= (2BB)16
if the number of
bits is not evenly
divisible by 4,
then add 0's at
the most
significant end.
HEXADECIMAL TO BINARY
• For each of the Hexa digit write its binary equivalent.
E.g: Convert(25A0)16to ()2
25A0
0010
0101 1010
0000
Answer= (0010010110100000)2
use 4 bits
to
represent
Steps
 Convertoctalnumbertoitsbinary equivalent.
 Convertbinarynumbertoitshexadecimalequivalent.
E.g.: Convert (635.27)8 to()16
6 3 5 . 2 7
110 011 101 . 010 111000 00
1 9 D . 5 C
OCTAL TO HEXADECIMAL
Steps
1.Convert hexadecimal numberto itsbinaryequivalent.
2.Convertbinarynumberto itsoctalequivalent
E.g.Convert(A3B.7)16
HEXADECIMAL TO OCTAL
A 3 B . 7
1010 0011 1011 . 0111 00
5 0 7 3 . 3 4
ANY BASE TO DECIMAL
 Convertingfromanybasetodecimalisdonebymultiplying each
digit byits weightand summing.
Binaryto Decimal
1011.112 = (1x23 ) + (0x22 )+ (1x21) + (1x20). (1x2-1)+ (1x2-2)
= 8 + 0 + 2 + 1 . 0.5 + 0.25
= 11.7510
DECIMAL TO ANY BASE
Decimal To any
Base
Integer Part
Successive
Division Method
Fractional Part
Successive
Multiplication
Method
Steps inSuccessiveDivisionMethod
1. Dividetheintegerpartofdecimalnumberbydesired basenumber,storequotient(Q)and
remainder(R).
2. Consider quotient asanewdecimal number and repeat Step1untilquotientbecomes 0.
3. Listthe remainders in thereverse order.
Steps in SuccessiveMultiplication Method
1. Multiplythefractionalpartofdecimal numberby desiredbasenumber.
2. Recordtheintegerpartof productascarryand fractionalpartasnewfractional part.
3. RepeatSteps1and2untilfractionalpartofproduct becomes0oruntilyouhavemanydigits
asnecessaryforyourapplication.
4. Readcarriesdownwards togetdesiredbasenumber.
E.G.:(125)10 TO( )2
Answer: (1111101)2
Decimal To Binary
1’S COMPLEMENT
The 1’s complement of a binary number is the number that
resultswhenwechangeall1’sto zerosandthezeros to ones.
1 1 0 1 0 0 1 0
NOT OPEARATION
0 0 1 0 1 1 0 1
2’S COMPLEMENT
The2’scomplementthebinarynumberthatresultswhen add1to the
1’scomplement.It’sgivenas,
2’s complement = 1’s complement + 1
Example: Express35in 8-bit 2’scomplementform.
35in 8-bit form is 00100011
0 0 1 0 0 0 1 1
1 1 0 1 1 1 0 0
+ 1
1 1 0 1 1 1 0 1
9’S COMPLEMENT
The nines'complementof adecimaldigit isthenumber thatmustbeaddedto
ittoproduce9.Thecomplementof 3is6,thecomplementof 7is 2.
Example:Obtain 9’scomplementof 7493
Solution:
9 9 99
- 749 3
2506 9’s complement
10’S COMPLEMENT
The10’scomplementof thegivennumberisobtainedby adding 1to
the9’scomplement.Itisgivenas,
10’s complement = 9’s complement + 1
Example:Obtain10’scomplementof 7493
Solution:
9999 2506
- 749 3 + 1
2506 2507 10’s complement
BINARY ADDITION
EXAMPLE
1
+ 0
1
1
0
1
0
0
1 0 0 1 0
Carry
• Thesubtractionconsistsof four
possibleelementaryoperations.
BINARY SUBTRACTION
• Incaseof secondoperationtheminuend
bit issmaller thanthesubtrahendbit,
hence1isborrowed.
0-0=0
0-1=1(borrow 1)
1-0=1
1-1=0
0
- 0
1
1
0
1
1
0
1 1 1 1
11 Borrow
EXAMPLE
BINARY MULTIPLICATION &
DIVISION
*
e.g.: Multiply 110 by 10
1 1
1
0
0
0 0 0
+ 1 1 0
1 1 0 0
e.g.: Divide110 by 10 1 1
10 1 1 0
1 0
0 1 0
1 0
0 0
REFERENCES
“Digital Electronics” By A.Anandkumar
Number system

More Related Content

What's hot

Number System & Data Representation
Number System & Data RepresentationNumber System & Data Representation
Number System & Data RepresentationPhillip Glenn Libay
 
BOOTH ALGO, DIVISION(RESTORING _ NON RESTORING) etc etc
BOOTH ALGO, DIVISION(RESTORING _ NON RESTORING) etc etcBOOTH ALGO, DIVISION(RESTORING _ NON RESTORING) etc etc
BOOTH ALGO, DIVISION(RESTORING _ NON RESTORING) etc etcAbhishek Rajpoot
 
Lecture-2(2): Number System & Conversion
Lecture-2(2): Number System & ConversionLecture-2(2): Number System & Conversion
Lecture-2(2): Number System & ConversionMubashir Ali
 
Data representation moris mano ch 03
Data representation   moris mano ch  03Data representation   moris mano ch  03
Data representation moris mano ch 03thearticlenow
 
Lesson 1 basic theory of information
Lesson 1   basic theory of informationLesson 1   basic theory of information
Lesson 1 basic theory of informationRoma Kimberly Erolin
 
Number system and codes
Number system and codesNumber system and codes
Number system and codesAbhiraj Bohra
 
2.1 data represent on cpu
2.1 data represent on cpu2.1 data represent on cpu
2.1 data represent on cpuWan Afirah
 
Understand data representation on CPU 1
Understand data representation on CPU 1Understand data representation on CPU 1
Understand data representation on CPU 1Brenda Debra
 

What's hot (19)

Number System & Data Representation
Number System & Data RepresentationNumber System & Data Representation
Number System & Data Representation
 
09 arithmetic
09 arithmetic09 arithmetic
09 arithmetic
 
BOOTH ALGO, DIVISION(RESTORING _ NON RESTORING) etc etc
BOOTH ALGO, DIVISION(RESTORING _ NON RESTORING) etc etcBOOTH ALGO, DIVISION(RESTORING _ NON RESTORING) etc etc
BOOTH ALGO, DIVISION(RESTORING _ NON RESTORING) etc etc
 
Chapter 1: Binary System
 Chapter 1: Binary System Chapter 1: Binary System
Chapter 1: Binary System
 
Lecture-2(2): Number System & Conversion
Lecture-2(2): Number System & ConversionLecture-2(2): Number System & Conversion
Lecture-2(2): Number System & Conversion
 
Numbersystemsppt 181023140730
Numbersystemsppt 181023140730Numbersystemsppt 181023140730
Numbersystemsppt 181023140730
 
Data representation moris mano ch 03
Data representation   moris mano ch  03Data representation   moris mano ch  03
Data representation moris mano ch 03
 
Lesson 1 basic theory of information
Lesson 1   basic theory of informationLesson 1   basic theory of information
Lesson 1 basic theory of information
 
Objective Questions Digital Electronics
Objective Questions Digital ElectronicsObjective Questions Digital Electronics
Objective Questions Digital Electronics
 
Number system and codes
Number system and codesNumber system and codes
Number system and codes
 
Final modified ppts
Final modified pptsFinal modified ppts
Final modified ppts
 
arithmetic
arithmeticarithmetic
arithmetic
 
Basic of number system
Basic of number systemBasic of number system
Basic of number system
 
2.1 data represent on cpu
2.1 data represent on cpu2.1 data represent on cpu
2.1 data represent on cpu
 
Understand data representation on CPU 1
Understand data representation on CPU 1Understand data representation on CPU 1
Understand data representation on CPU 1
 
5a data representation
5a   data representation5a   data representation
5a data representation
 
JPC#8 Foundation of Computer Science
JPC#8 Foundation of Computer ScienceJPC#8 Foundation of Computer Science
JPC#8 Foundation of Computer Science
 
Data representation
Data representationData representation
Data representation
 
Number system
Number systemNumber system
Number system
 

Similar to Number system

Module 1 number systems and code1
Module 1  number systems and code1Module 1  number systems and code1
Module 1 number systems and code1Deepak John
 
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...Arti Parab Academics
 
Logic Circuits Design - "Chapter 1: Digital Systems and Information"
Logic Circuits Design - "Chapter 1: Digital Systems and Information"Logic Circuits Design - "Chapter 1: Digital Systems and Information"
Logic Circuits Design - "Chapter 1: Digital Systems and Information"Ra'Fat Al-Msie'deen
 
Chapter 1 digital design.pptx
Chapter 1 digital design.pptxChapter 1 digital design.pptx
Chapter 1 digital design.pptxAliaaTarek5
 
Digital Electronics Notes
Digital Electronics Notes Digital Electronics Notes
Digital Electronics Notes Srikrishna Thota
 
1.Digital Electronics overview & Number Systems.pptx
1.Digital Electronics overview & Number Systems.pptx1.Digital Electronics overview & Number Systems.pptx
1.Digital Electronics overview & Number Systems.pptxLibanMohamed26
 
Ee 202 chapter 1 number and code system
Ee 202 chapter 1 number and code system Ee 202 chapter 1 number and code system
Ee 202 chapter 1 number and code system CT Sabariah Salihin
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxMamataAnilgod
 
Number system with conversions www.eakanchha.com
Number system with conversions www.eakanchha.comNumber system with conversions www.eakanchha.com
Number system with conversions www.eakanchha.comAkanchha Agrawal
 
data representation
 data representation data representation
data representationHaroon_007
 
Introduction to computers
Introduction to computersIntroduction to computers
Introduction to computersNishant Munjal
 
Number system and their conversion
Number system and their conversionNumber system and their conversion
Number system and their conversionRam Pratap Singh
 

Similar to Number system (20)

Module 1 number systems and code1
Module 1  number systems and code1Module 1  number systems and code1
Module 1 number systems and code1
 
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
FYBSC IT Digital Electronics Unit I Chapter I Number System and Binary Arithm...
 
Logic Circuits Design - "Chapter 1: Digital Systems and Information"
Logic Circuits Design - "Chapter 1: Digital Systems and Information"Logic Circuits Design - "Chapter 1: Digital Systems and Information"
Logic Circuits Design - "Chapter 1: Digital Systems and Information"
 
Chapter 1 digital design.pptx
Chapter 1 digital design.pptxChapter 1 digital design.pptx
Chapter 1 digital design.pptx
 
Digital Electronics Notes
Digital Electronics Notes Digital Electronics Notes
Digital Electronics Notes
 
Number system
Number system  Number system
Number system
 
1.Digital Electronics overview & Number Systems.pptx
1.Digital Electronics overview & Number Systems.pptx1.Digital Electronics overview & Number Systems.pptx
1.Digital Electronics overview & Number Systems.pptx
 
DCF QNA edited
DCF QNA editedDCF QNA edited
DCF QNA edited
 
Ee 202 chapter 1 number and code system
Ee 202 chapter 1 number and code system Ee 202 chapter 1 number and code system
Ee 202 chapter 1 number and code system
 
Intro to assembly language
Intro to assembly languageIntro to assembly language
Intro to assembly language
 
DLD-Introduction.pptx
DLD-Introduction.pptxDLD-Introduction.pptx
DLD-Introduction.pptx
 
DATA REPRESENTATION.pptx
DATA REPRESENTATION.pptxDATA REPRESENTATION.pptx
DATA REPRESENTATION.pptx
 
Number system with conversions www.eakanchha.com
Number system with conversions www.eakanchha.comNumber system with conversions www.eakanchha.com
Number system with conversions www.eakanchha.com
 
data representation
 data representation data representation
data representation
 
Introduction to computers
Introduction to computersIntroduction to computers
Introduction to computers
 
Unit-1.pptx
Unit-1.pptxUnit-1.pptx
Unit-1.pptx
 
Digital Electronics Notes.pdf
Digital Electronics Notes.pdfDigital Electronics Notes.pdf
Digital Electronics Notes.pdf
 
1. basic theories of information
1. basic theories of information1. basic theories of information
1. basic theories of information
 
NUMBER SYSTEM.pptx
NUMBER SYSTEM.pptxNUMBER SYSTEM.pptx
NUMBER SYSTEM.pptx
 
Number system and their conversion
Number system and their conversionNumber system and their conversion
Number system and their conversion
 

More from SIVALAKSHMIPANNEERSE

MEDICAL ELECTRONICS_EC8073_Unit 1 session 2
MEDICAL ELECTRONICS_EC8073_Unit 1 session 2MEDICAL ELECTRONICS_EC8073_Unit 1 session 2
MEDICAL ELECTRONICS_EC8073_Unit 1 session 2SIVALAKSHMIPANNEERSE
 
MEDICAL ELECTRONICS_EC8073_Unit 1 session 9
MEDICAL ELECTRONICS_EC8073_Unit 1 session 9MEDICAL ELECTRONICS_EC8073_Unit 1 session 9
MEDICAL ELECTRONICS_EC8073_Unit 1 session 9SIVALAKSHMIPANNEERSE
 
MEDICAL ELECTRONICS_EC8073_Unit 1 session 1
MEDICAL ELECTRONICS_EC8073_Unit 1  session 1MEDICAL ELECTRONICS_EC8073_Unit 1  session 1
MEDICAL ELECTRONICS_EC8073_Unit 1 session 1SIVALAKSHMIPANNEERSE
 
MEDICAL ELECTRONICS_EC8073_Unit 1session 5
MEDICAL ELECTRONICS_EC8073_Unit 1session 5MEDICAL ELECTRONICS_EC8073_Unit 1session 5
MEDICAL ELECTRONICS_EC8073_Unit 1session 5SIVALAKSHMIPANNEERSE
 
MEDICAL ELECTRONICS_EC8073_Unit 1 session 4
MEDICAL ELECTRONICS_EC8073_Unit 1 session 4MEDICAL ELECTRONICS_EC8073_Unit 1 session 4
MEDICAL ELECTRONICS_EC8073_Unit 1 session 4SIVALAKSHMIPANNEERSE
 
MEDICAL ELECTRONICS_EC8073_Unit 1 session 3
MEDICAL ELECTRONICS_EC8073_Unit 1 session 3MEDICAL ELECTRONICS_EC8073_Unit 1 session 3
MEDICAL ELECTRONICS_EC8073_Unit 1 session 3SIVALAKSHMIPANNEERSE
 
MEDICAL ELECTRONICS_EC8073_Unit 1session 8
MEDICAL ELECTRONICS_EC8073_Unit 1session 8MEDICAL ELECTRONICS_EC8073_Unit 1session 8
MEDICAL ELECTRONICS_EC8073_Unit 1session 8SIVALAKSHMIPANNEERSE
 
MEDICAL ELECTRONICS_EC8073_Unit 1 session 6
MEDICAL ELECTRONICS_EC8073_Unit 1 session 6MEDICAL ELECTRONICS_EC8073_Unit 1 session 6
MEDICAL ELECTRONICS_EC8073_Unit 1 session 6SIVALAKSHMIPANNEERSE
 
MEDICAL ELECTRONICS_EC8073_Unit 1 session 7
MEDICAL ELECTRONICS_EC8073_Unit 1 session 7MEDICAL ELECTRONICS_EC8073_Unit 1 session 7
MEDICAL ELECTRONICS_EC8073_Unit 1 session 7SIVALAKSHMIPANNEERSE
 

More from SIVALAKSHMIPANNEERSE (20)

MEDICAL ELECTRONICS_EC8073_Unit 1 session 2
MEDICAL ELECTRONICS_EC8073_Unit 1 session 2MEDICAL ELECTRONICS_EC8073_Unit 1 session 2
MEDICAL ELECTRONICS_EC8073_Unit 1 session 2
 
MEDICAL ELECTRONICS_EC8073_Unit 1 session 9
MEDICAL ELECTRONICS_EC8073_Unit 1 session 9MEDICAL ELECTRONICS_EC8073_Unit 1 session 9
MEDICAL ELECTRONICS_EC8073_Unit 1 session 9
 
MEDICAL ELECTRONICS_EC8073_Unit 1 session 1
MEDICAL ELECTRONICS_EC8073_Unit 1  session 1MEDICAL ELECTRONICS_EC8073_Unit 1  session 1
MEDICAL ELECTRONICS_EC8073_Unit 1 session 1
 
MEDICAL ELECTRONICS_EC8073_Unit 1session 5
MEDICAL ELECTRONICS_EC8073_Unit 1session 5MEDICAL ELECTRONICS_EC8073_Unit 1session 5
MEDICAL ELECTRONICS_EC8073_Unit 1session 5
 
MEDICAL ELECTRONICS_EC8073_Unit 1 session 4
MEDICAL ELECTRONICS_EC8073_Unit 1 session 4MEDICAL ELECTRONICS_EC8073_Unit 1 session 4
MEDICAL ELECTRONICS_EC8073_Unit 1 session 4
 
MEDICAL ELECTRONICS_EC8073_Unit 1 session 3
MEDICAL ELECTRONICS_EC8073_Unit 1 session 3MEDICAL ELECTRONICS_EC8073_Unit 1 session 3
MEDICAL ELECTRONICS_EC8073_Unit 1 session 3
 
MEDICAL ELECTRONICS_EC8073_Unit 1session 8
MEDICAL ELECTRONICS_EC8073_Unit 1session 8MEDICAL ELECTRONICS_EC8073_Unit 1session 8
MEDICAL ELECTRONICS_EC8073_Unit 1session 8
 
MEDICAL ELECTRONICS_EC8073_Unit 1 session 6
MEDICAL ELECTRONICS_EC8073_Unit 1 session 6MEDICAL ELECTRONICS_EC8073_Unit 1 session 6
MEDICAL ELECTRONICS_EC8073_Unit 1 session 6
 
MEDICAL ELECTRONICS_EC8073_Unit 1 session 7
MEDICAL ELECTRONICS_EC8073_Unit 1 session 7MEDICAL ELECTRONICS_EC8073_Unit 1 session 7
MEDICAL ELECTRONICS_EC8073_Unit 1 session 7
 
Session 4
Session 4Session 4
Session 4
 
Session 3
Session 3Session 3
Session 3
 
Session 2
Session 2Session 2
Session 2
 
Session 1
Session 1Session 1
Session 1
 
Bjt session 7
Bjt session 7Bjt session 7
Bjt session 7
 
Bjt session 6
Bjt session 6Bjt session 6
Bjt session 6
 
Bjt session 5
Bjt session 5Bjt session 5
Bjt session 5
 
Bjt session 4
Bjt session 4Bjt session 4
Bjt session 4
 
Bjt session 3
Bjt session 3Bjt session 3
Bjt session 3
 
Introduction to bjt npn &pnp
Introduction to bjt npn &pnpIntroduction to bjt npn &pnp
Introduction to bjt npn &pnp
 
Introduction to bjt npn &pnp
Introduction to bjt npn &pnpIntroduction to bjt npn &pnp
Introduction to bjt npn &pnp
 

Recently uploaded

Moment Distribution Method For Btech Civil
Moment Distribution Method For Btech CivilMoment Distribution Method For Btech Civil
Moment Distribution Method For Btech CivilVinayVitekari
 
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptxOrlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptxMuhammadAsimMuhammad6
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueBhangaleSonal
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VDineshKumar4165
 
Computer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to ComputersComputer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to ComputersMairaAshraf6
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network DevicesChandrakantDivate1
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdfKamal Acharya
 
Online food ordering system project report.pdf
Online food ordering system project report.pdfOnline food ordering system project report.pdf
Online food ordering system project report.pdfKamal Acharya
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXssuser89054b
 
PE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and propertiesPE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and propertiessarkmank1
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapRishantSharmaFr
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationBhangaleSonal
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdfKamal Acharya
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdfKamal Acharya
 
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLEGEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLEselvakumar948
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesMayuraD1
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Arindam Chakraborty, Ph.D., P.E. (CA, TX)
 
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...Amil baba
 
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARHAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARKOUSTAV SARKAR
 

Recently uploaded (20)

Moment Distribution Method For Btech Civil
Moment Distribution Method For Btech CivilMoment Distribution Method For Btech Civil
Moment Distribution Method For Btech Civil
 
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptxOrlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
Computer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to ComputersComputer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to Computers
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network Devices
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdf
 
Online food ordering system project report.pdf
Online food ordering system project report.pdfOnline food ordering system project report.pdf
Online food ordering system project report.pdf
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
PE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and propertiesPE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and properties
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equation
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLEGEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakes
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
 
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARHAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
 

Number system