SlideShare ist ein Scribd-Unternehmen logo
1 von 51
MBA admission in India 
By: 
Admission.edhole.com
Binary numbers and arithmetic 
Admission.edhole.com
addition 
Admission.edhole.com
Addition (decimal) 
1 
+ 
4 
5 
5 
+ 
14 
19 
15 
+ 
5 
10 
16 
+ 
5 
11 
1 1 
+ 
12 
99 
111 
Admission.edhole.com
Addition (binary) 
0 
+ 
0 
0 
1 
+ 
0 
1 
0 
+ 
1 
1 
11 
+ 
1 
10 
Admission.edhole.com
Addition (binary) 
1 1 1 1 
+ 
01101 
01011 
11000 
Admission.edhole.com
Addition (binary) 
0 
+ 
0 
1 
+ 
0 
So can w0e count in binary? 
1 
0 
+ 
1 
1 
11 
+ 
1 
10 
Admission.edhole.com
Counting in binary (4 bits) 
0 
0000 
1 
0001 
2 
… 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
Admission.edhole.com
multiplication 
Admission.edhole.com
Multiplication (decimal) 
13 
11 
13 
130 
143 
+ 
´ 
Admission.edhole.com
Multiplication (binary) 
1101 
1011 
1101 
´ 
11010 
1101000 
+ 
10001111 
Admission.edhole.com
Multiplication (binary) 
1101 
1011 
1101 
´ 
11010 
1101000 
+ 
10001111 
It’s interesting to note 
that binary multiplication 
is a sequence of shifts 
and adds of the first 
term (depending on the 
bits in the second term. 
110100 is missing here 
because the 
corresponding bit in the 
second terms is 0. 
Admission.edhole.com
Representing signed (positive and 
negative) numbers
Representing numbers (ints) 
Fixed, finite number of bits. 
bits bytes C/C++ Intel 
Sun 
8 1 char [s]byte byte 
16 2 short [s]word half 
32 4 int or long [s]dword word 
64 8 long long [s]qword xword
Representing numbers (ints) 
Fixed, finite number of bits. 
bits Intel signed unsigned 
8 [s]byte -27..+27-1 0..+28-1 
16 [s]word -215..+215-1 0..+216-1 
32 [s]dword -231..+231-1 0..+232-1 
64 [s]qword -263..+263-1 0..+264-1 
In general, for k bits, the unsigned range is [0..+2k-1] and the signed 
range is [-2k-1..+2k-1-1].
Methods for representing signed ints. 
1. signed magnitude 
2. 1’s complement (diminished radix complement) 
3. 2’s complement (radix complement) 
4. excess bD-1
Signed magnitude 
Ex. 4-bit signed magnitude 
1 bit for sign 
3 bits for magnitude 
+ N - N 
0 0000 1000 
1 0001 1001 
2 0010 1010 
3 0011 1011 
4 0100 1100 
5 0101 1101 
6 0110 1110 
7 0111 1111
Signed magnitude 
Ex. 4-bit signed magnitude 
1 bit for sign 
3 bits for magnitude 
+ N - N 
0 0000 1000 
1 0001 1001 
2 0010 1010 
3 0011 1011 
4 0100 1100 
5 0101 1101 
6 0110 1110 
7 0111 1111
1’s complement 
(diminished radix complement) 
Let x be a non-negative number. 
Then –x is represented by bD-1+(-x) where 
b = base 
D = (total) # of bits (including the sign bit) 
Ex. Let b=2 and D=4. 
Then -1 is represented by 24-1-1 = 1410 or 11102.
1’s complement 
(diminished radix complement) 
Let x be a non-negative number. 
Then –x is represented by bD-1+(-x) where 
b = base & D = (total) # of bits (including the sign bit) 
Ex. What is the 9’s complement of 1238910? 
Given b=10 and D=5. Then the 9’s complement of 12389 
= 105 – 1 – 12389 
= 100000 – 1 – 12389 
= 99999 – 12389 
= 87610
1’s complement 
(diminished radix complement) 
Let x be a non-negative number. 
Then –x is represented by bD-1+(-x) where 
b = base 
D = (total) # of bits (including the sign bit) 
Shortcut for base 2? 
All combinations used, but 2 zeros! 
+ N - N 
0 0000 1111 
1 0001 1110 
2 0010 1101 
3 0011 1100 
4 0100 1011 
5 0101 1010 
6 0110 1001 
7 0111 1000
2’s complement 
(radix complement) 
Let x be a non-negative number. 
Then –x is represented by bD+(-x). 
Ex. Let b=2 and D=4. Then -1 is represented by 24-1 = 15 or 
11112. 
Ex. Let b=2 and D=4. Then -5 is represented by 24 – 5 = 11 
or 10112. 
Ex. Let b=10 and D=5. Then the 10’s complement of 12389 
= 105 – 12389 = 100000 – 12389 = 87611.
2’s complement 
(radix complement) 
Let x be a non-negative number. 
Then –x is represented by bD+(-x). 
Ex. Let b=2 and D=4. Then -1 is 
represented by 24-1 = 15 or 11112. 
Ex. Let b=2 and D=4. Then -5 is 
represented by 24 – 5 = 11 or 10112. 
Shortcut for base 2? 
+ N - N 
0 0000 0000 
1 0001 1111 
2 0010 1110 
3 0011 1101 
4 0100 1100 
5 0101 1011 
6 0110 1010 
7 0111 1001
2’s complement 
(radix complement) 
Shortcut for base 2? 
Yes! Flip the bits and add 1. 
+ N - N 
0 0000 0000 
1 0001 1111 
2 0010 1110 
3 0011 1101 
4 0100 1100 
5 0101 1011 
6 0110 1010 
7 0111 1001
2’s complement 
(radix complement) 
Are all combinations of 4 bits used? 
No. (Now we only have one zero.) 
1000 is missing! 
What is 1000? 
Is it positive or negative? 
Does -8 + 1 = -7 work in 2’s complement? 
+ N - N 
0 0000 0000 
1 0001 1111 
2 0010 1110 
3 0011 1101 
4 0100 1100 
5 0101 1011 
6 0110 1010 
7 0111 1001
excess bD-1 (biased representation) 
For pos, neg, and 0, x is represented by 
bD-1 + x 
Ex. Let b=2 and D=4. Then the excess 8 (24-1) 
representation for 0 is 8+0 = 8 or 10002. 
Ex. Let b=2 and D=4. Then excess 8 for -1 is 8 – 1 = 7 or 
01112.
excess bD-1 
For pos, neg, and 0, x is represented by 
bD-1 + x. 
Ex. Let b=2 and D=4. Then the excess 8 
(24-1) representation for 0 is 8+0 = 8 or 
10002. 
Ex. Let b=2 and D=4. Then excess 8 for -1 
is 8 – 1 = 7 or 01112. 
+ N - N 
0 1000 1000 
1 1001 0111 
2 1010 0110 
3 1011 0101 
4 1100 0100 
5 1101 0011 
6 1110 0010 
7 1111 0001
2’s complement vs. excess bD-1 
In 2’s, positives start with 0; in excess, 
positives start with 1. 
Both have one zero (positive). 
Remaining bits are the same. 
+ N - N 
0 1000 1000 
1 1001 0111 
2 1010 0110 
3 1011 0101 
4 1100 0100 
5 1101 0011 
6 1110 0010 
7 1111 0001
Summary of methods for 
representing signed ints. 
signedMag sComp sComp excess 
1 2 8 
N + n - n - n - n - n + 
n 
0 0000 1000 1111 0000 1000 1000 
1 0001 1001 1110 1111 0111 1001 
2 0010 1010 1101 1110 0110 1010 
3 0011 1011 1100 1101 0101 1011 
4 0100 1100 1011 1100 0100 1100 
5 0101 1101 1010 1011 0011 1101 
6 0110 1110 1001 1010 0010 1110 
7 0111 1111 1000 1001 0001 1111 
1000=-8| 0000 unused
Binary arithmetic 
Signed magnitude 
1’s complement 
2’s complement 
Excess K (biased)
Binary Arithmetic 
Signed magnitude
Addition w/ signed magnitude 
algorithm 
For A - B, change the sign of B and perform addition of A + (-B) (as 
in the next step) 
For A + B: 
if (Asign==Bsign) then { R = |A| + |B|; Rsign = Asign; } 
else if (|A|>|B|) then { R = |A| - |B|; Rsign = Asign; } 
else if (|A|==|B|) then { R = 0; Rsign = 0; } 
else { R = |B| - |A|; Rsign = Bsign; } 
Complicated?
Binary Arithmetic 
2’s complement
Representing numbers (ints) using 
2’s complement 
Fixed, finite number of bits. 
bits Intel signed 
8 sbyte -27..+27-1 
16 sword -215..+215-1 
32 sdword -231..+231-1 
64 sqword -263..+263-1 
In general, for k bits, the signed range is [-2k-1..+2k-1-1]. 
So where does the extra negative value come from?
Representing numbers (ints) 
Fixed, finite number of bits. 
bits Intel signed 
8 sbyte -27..+27-1 
16 sword -215..+215-1 
32 sdword -231..+231-1 
64 sqword -263..+263-1 
+ n - n 
0 0000 0000 
1 0001 1111 
2 0010 1110 
3 0011 1101 
4 0100 1100 
5 0101 1011 
6 0110 1010 
In general, for k bits, the signed range is 
[-2k-1..+2k-1-1]. 
So where does the extra negative value come 
from? 8 1000 
7 0111 1001
Addition of 2’s complement binary 
numbers 
Consider 8-bit 2’s complement binary numbers. 
Then the msb (bit 7) is the sign bit. If this bit is 0, then this is a 
positive number; if this bit is 1, then this is a negative number. 
Addition of 2 positive numbers. 
Ex. 40 + 58 = 98 
1 1 1 
00101000 
00111010 
01100010 
+
Addition of 2’s complement binary 
numbers 
Consider 8-bit 2’s complement binary 
numbers. 
Addition of a negative to a positive. 
What are the values of these 2 terms? 
-88 and 122 
-88 + 122 = 34 
1 1 1 1 
+ 
10101000 
01111010 
1 00100010
So how can we perform subtraction?
Addition of 2’s complement binary 
numbers 
Consider 8-bit 2’s complement binary numbers. 
Subtraction is nothing but addition of the 2’s complement. 
Ex. 58 – 40 = 58 + (-40) = 18 
1 1 1 1 
+ 
00111010 
11011000 
1 00010010 
discard carry
Carry vs. overflow
Addition of 2’s complement binary 
numbers 
Carry vs. overflow when adding A + B 
If A and B are of opposite sign, then overflow cannot occur. 
If A and B are of the same sign but the result is of the opposite 
sign, then overflow has occurred (and the answer is therefore 
incorrect). 
Overflow occurs iff the carry into the sign bit differs from the carry out 
of the sign bit.
Addition of 2’s complement binary 
numbers 
class test { 
public static void main ( String args[] ) 
{ 
byte A = 127; 
byte B = 127; 
byte result = (byte)(A + B); 
System.out.println( "A + B = " 
+ result ); 
} 
} 
#include <stdio.h> 
int main ( int argc, char* argv[] ) 
{ 
char A = 127; 
char B = 127; 
char result = (char)(A + B); 
printf( "A + B = %d n", result ); 
return 0; 
} Result = -2 in both 
Java (left) and C++ 
(right). Why?
Addition of 2’s complement binary 
numbers 
class test { 
public static void main ( String args[] ) 
{ 
byte A = 127; 
byte B = 127; 
byte result = (byte)(A + B); 
System.out.println( "A + B = " 
+ result ); 
} 
} 
Result = -2 in both Java and C++. 
Why? 
What’s 127 as a 2’s complement 
binary number? 
01111111 
+ 
01111111 
11111110 
What is 111111102? 
Flip the bits: 00000001. 
Then add 1: 00000010. 
This is -2.
Binary Arithmetic 
1’s complement
Addition with 1’s complement 
Note: 1’s complement has two 0’s! 
1’s complement addition is tricky (end-around- 
carry). 
+ N - N 
0 0000 1111 
1 0001 1110 
2 0010 1101 
3 0011 1100 
4 0100 1011 
5 0101 1010 
6 0110 1001 
7 0111 1000
8-bit 1’s complement addition 
Ex. Let X = A816 and Y = 8616. 
Calculate Y - X using 1’s complement.
8-bit 1’s complement addition 
Ex. Let X = A816 and Y = 8616. 
Calculate Y - X using 1’s complement. 
Y = 1000 01102 = -12110 
X = 1010 10002 = -8710 
~X = 0101 01112 
1000 0110 
+ 
0101 0111 
(Note: C=0 out of msb.) 1101 1101 
Y - X = -121 + 87 = -34 (base 10)
8-bit 1’s complement addition 
Ex. Let X = A816 and Y = 8616. 
Calculate X - Y using 1’s complement.
8-bit 1’s complement addition 
Ex. Let X = A816 and Y = 8616. 
Calculate X - Y using 1’s complement. 
X = 1010 10002 = -8710 
Y = 1000 01102 = -12110 
~Y = 0111 10012 
(Note: C=1 out of msb.) 
1010 1000 
0111 1001 
+ 
1 0010 0001 
1 
+ 
end around 
carry 
0010 0010 
X - Y = -87 + 121 = 34 (base 10)
Binary Arithmetic 
Excess K (biased)
Binary arithmetic and Excess K 
(biased) 
Method: Simply add and then flip the sign bit. 
-1 0111 
+5 1101 
-- ---- 
+4 0100 -> flip sign -> 1100 
+1 1001 
-5 0011 
-- ---- 
-4 1100 -> flip sign -> 0100 
+1 1001 
+5 1101 
-- ---- 
+6 0110 -> flip sign -> 1110 
-1 0111 
-5 0011 
-- ---- 
-6 1010 -> toggle sign -> 0010 
+ N - N 
0 1000 1000 
1 1001 0111 
2 1010 0110 
3 1011 0101 
4 1100 0100 
5 1101 0011 
6 1110 0010 
7 1111 0001 
(Not used for integer arithmetic but employed 
in IEEE 754 floating point standard.)

Weitere ähnliche Inhalte

Was ist angesagt?

Introduction to digital electornics
Introduction to digital electornicsIntroduction to digital electornics
Introduction to digital electornics
harman kaur
 
01.number systems
01.number systems01.number systems
01.number systems
rasha3
 
Cmp104 lec 2 number system
Cmp104 lec 2 number systemCmp104 lec 2 number system
Cmp104 lec 2 number system
kapil078
 
Number system....
Number system....Number system....
Number system....
mshoaib15
 

Was ist angesagt? (20)

Number Systems
Number SystemsNumber Systems
Number Systems
 
Logic Design 2009
Logic Design 2009Logic Design 2009
Logic Design 2009
 
PPT ON NUMBER SYSTEM
PPT ON NUMBER SYSTEMPPT ON NUMBER SYSTEM
PPT ON NUMBER SYSTEM
 
Introduction to digital electornics
Introduction to digital electornicsIntroduction to digital electornics
Introduction to digital electornics
 
digital logic design number system
digital logic design number systemdigital logic design number system
digital logic design number system
 
01.number systems
01.number systems01.number systems
01.number systems
 
W 9 numbering system
W 9 numbering systemW 9 numbering system
W 9 numbering system
 
06 floating point
06 floating point06 floating point
06 floating point
 
Cmp104 lec 2 number system
Cmp104 lec 2 number systemCmp104 lec 2 number system
Cmp104 lec 2 number system
 
Module 4
Module 4Module 4
Module 4
 
Digital Electronics and Computer Language
Digital Electronics and Computer Language Digital Electronics and Computer Language
Digital Electronics and Computer Language
 
Number system computer fundamental
 Number  system computer fundamental  Number  system computer fundamental
Number system computer fundamental
 
Number System
Number SystemNumber System
Number System
 
Representation Of Numbers and Characters
Representation Of Numbers and CharactersRepresentation Of Numbers and Characters
Representation Of Numbers and Characters
 
data representation
 data representation data representation
data representation
 
Number system....
Number system....Number system....
Number system....
 
Logic Design
Logic DesignLogic Design
Logic Design
 
Number System Conversion | BCA
Number System Conversion | BCANumber System Conversion | BCA
Number System Conversion | BCA
 
Number Systems
Number SystemsNumber Systems
Number Systems
 
Basic of number system
Basic of number systemBasic of number system
Basic of number system
 

Ähnlich wie Mba admission in india

ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
ssuser52a19e
 
Review on Number Systems: Decimal, Binary, and Hexadecimal
Review on Number Systems: Decimal, Binary, and HexadecimalReview on Number Systems: Decimal, Binary, and Hexadecimal
Review on Number Systems: Decimal, Binary, and Hexadecimal
UtkirjonUbaydullaev1
 
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptxchapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
Surendra Loya
 

Ähnlich wie Mba admission in india (20)

ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
binary-numbers.ppt
binary-numbers.pptbinary-numbers.ppt
binary-numbers.ppt
 
Review on Number Systems: Decimal, Binary, and Hexadecimal
Review on Number Systems: Decimal, Binary, and HexadecimalReview on Number Systems: Decimal, Binary, and Hexadecimal
Review on Number Systems: Decimal, Binary, and Hexadecimal
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
ch3a-binary-numbers.ppt
ch3a-binary-numbers.pptch3a-binary-numbers.ppt
ch3a-binary-numbers.ppt
 
Number system
Number systemNumber system
Number system
 
Chapter 1 digital systems and binary numbers
Chapter 1 digital systems and binary numbersChapter 1 digital systems and binary numbers
Chapter 1 digital systems and binary numbers
 
Digital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdfDigital_Electronics_Basics.pdf
Digital_Electronics_Basics.pdf
 
unit-i-number-systems.pdf
unit-i-number-systems.pdfunit-i-number-systems.pdf
unit-i-number-systems.pdf
 
Number system
Number systemNumber system
Number system
 
Number system and codes
Number system and codesNumber system and codes
Number system and codes
 
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptxchapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
chapter1digitalsystemsandbinarynumbers-151021072016-lva1-app6891.pptx
 
Video lectures
Video lecturesVideo lectures
Video lectures
 
Mba ebooks
Mba ebooksMba ebooks
Mba ebooks
 
Comp Arithmetic Basic.ppt
Comp Arithmetic Basic.pptComp Arithmetic Basic.ppt
Comp Arithmetic Basic.ppt
 
2's complement
2's complement2's complement
2's complement
 
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
 
digital-electronics.pptx
digital-electronics.pptxdigital-electronics.pptx
digital-electronics.pptx
 

Mehr von Edhole.com

Mehr von Edhole.com (20)

Ca in patna
Ca in patnaCa in patna
Ca in patna
 
Chartered accountant in dwarka
Chartered accountant in dwarkaChartered accountant in dwarka
Chartered accountant in dwarka
 
Ca in dwarka
Ca in dwarkaCa in dwarka
Ca in dwarka
 
Ca firm in dwarka
Ca firm in dwarkaCa firm in dwarka
Ca firm in dwarka
 
Website development company surat
Website development company suratWebsite development company surat
Website development company surat
 
Website designing company in surat
Website designing company in suratWebsite designing company in surat
Website designing company in surat
 
Website dsigning company in india
Website dsigning company in indiaWebsite dsigning company in india
Website dsigning company in india
 
Website designing company in delhi
Website designing company in delhiWebsite designing company in delhi
Website designing company in delhi
 
Ca in patna
Ca in patnaCa in patna
Ca in patna
 
Chartered accountant in dwarka
Chartered accountant in dwarkaChartered accountant in dwarka
Chartered accountant in dwarka
 
Ca firm in dwarka
Ca firm in dwarkaCa firm in dwarka
Ca firm in dwarka
 
Ca in dwarka
Ca in dwarkaCa in dwarka
Ca in dwarka
 
Website development company surat
Website development company suratWebsite development company surat
Website development company surat
 
Website designing company in surat
Website designing company in suratWebsite designing company in surat
Website designing company in surat
 
Website designing company in india
Website designing company in indiaWebsite designing company in india
Website designing company in india
 
Website designing company in delhi
Website designing company in delhiWebsite designing company in delhi
Website designing company in delhi
 
Website designing company in mumbai
Website designing company in mumbaiWebsite designing company in mumbai
Website designing company in mumbai
 
Website development company surat
Website development company suratWebsite development company surat
Website development company surat
 
Website desinging company in surat
Website desinging company in suratWebsite desinging company in surat
Website desinging company in surat
 
Website designing company in india
Website designing company in indiaWebsite designing company in india
Website designing company in india
 

Kürzlich hochgeladen

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Kürzlich hochgeladen (20)

General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 

Mba admission in india

  • 1. MBA admission in India By: Admission.edhole.com
  • 2. Binary numbers and arithmetic Admission.edhole.com
  • 4. Addition (decimal) 1 + 4 5 5 + 14 19 15 + 5 10 16 + 5 11 1 1 + 12 99 111 Admission.edhole.com
  • 5. Addition (binary) 0 + 0 0 1 + 0 1 0 + 1 1 11 + 1 10 Admission.edhole.com
  • 6. Addition (binary) 1 1 1 1 + 01101 01011 11000 Admission.edhole.com
  • 7. Addition (binary) 0 + 0 1 + 0 So can w0e count in binary? 1 0 + 1 1 11 + 1 10 Admission.edhole.com
  • 8. Counting in binary (4 bits) 0 0000 1 0001 2 … 3 4 5 6 7 8 9 10 11 12 13 14 15 Admission.edhole.com
  • 10. Multiplication (decimal) 13 11 13 130 143 + ´ Admission.edhole.com
  • 11. Multiplication (binary) 1101 1011 1101 ´ 11010 1101000 + 10001111 Admission.edhole.com
  • 12. Multiplication (binary) 1101 1011 1101 ´ 11010 1101000 + 10001111 It’s interesting to note that binary multiplication is a sequence of shifts and adds of the first term (depending on the bits in the second term. 110100 is missing here because the corresponding bit in the second terms is 0. Admission.edhole.com
  • 13. Representing signed (positive and negative) numbers
  • 14. Representing numbers (ints) Fixed, finite number of bits. bits bytes C/C++ Intel Sun 8 1 char [s]byte byte 16 2 short [s]word half 32 4 int or long [s]dword word 64 8 long long [s]qword xword
  • 15. Representing numbers (ints) Fixed, finite number of bits. bits Intel signed unsigned 8 [s]byte -27..+27-1 0..+28-1 16 [s]word -215..+215-1 0..+216-1 32 [s]dword -231..+231-1 0..+232-1 64 [s]qword -263..+263-1 0..+264-1 In general, for k bits, the unsigned range is [0..+2k-1] and the signed range is [-2k-1..+2k-1-1].
  • 16. Methods for representing signed ints. 1. signed magnitude 2. 1’s complement (diminished radix complement) 3. 2’s complement (radix complement) 4. excess bD-1
  • 17. Signed magnitude Ex. 4-bit signed magnitude 1 bit for sign 3 bits for magnitude + N - N 0 0000 1000 1 0001 1001 2 0010 1010 3 0011 1011 4 0100 1100 5 0101 1101 6 0110 1110 7 0111 1111
  • 18. Signed magnitude Ex. 4-bit signed magnitude 1 bit for sign 3 bits for magnitude + N - N 0 0000 1000 1 0001 1001 2 0010 1010 3 0011 1011 4 0100 1100 5 0101 1101 6 0110 1110 7 0111 1111
  • 19. 1’s complement (diminished radix complement) Let x be a non-negative number. Then –x is represented by bD-1+(-x) where b = base D = (total) # of bits (including the sign bit) Ex. Let b=2 and D=4. Then -1 is represented by 24-1-1 = 1410 or 11102.
  • 20. 1’s complement (diminished radix complement) Let x be a non-negative number. Then –x is represented by bD-1+(-x) where b = base & D = (total) # of bits (including the sign bit) Ex. What is the 9’s complement of 1238910? Given b=10 and D=5. Then the 9’s complement of 12389 = 105 – 1 – 12389 = 100000 – 1 – 12389 = 99999 – 12389 = 87610
  • 21. 1’s complement (diminished radix complement) Let x be a non-negative number. Then –x is represented by bD-1+(-x) where b = base D = (total) # of bits (including the sign bit) Shortcut for base 2? All combinations used, but 2 zeros! + N - N 0 0000 1111 1 0001 1110 2 0010 1101 3 0011 1100 4 0100 1011 5 0101 1010 6 0110 1001 7 0111 1000
  • 22. 2’s complement (radix complement) Let x be a non-negative number. Then –x is represented by bD+(-x). Ex. Let b=2 and D=4. Then -1 is represented by 24-1 = 15 or 11112. Ex. Let b=2 and D=4. Then -5 is represented by 24 – 5 = 11 or 10112. Ex. Let b=10 and D=5. Then the 10’s complement of 12389 = 105 – 12389 = 100000 – 12389 = 87611.
  • 23. 2’s complement (radix complement) Let x be a non-negative number. Then –x is represented by bD+(-x). Ex. Let b=2 and D=4. Then -1 is represented by 24-1 = 15 or 11112. Ex. Let b=2 and D=4. Then -5 is represented by 24 – 5 = 11 or 10112. Shortcut for base 2? + N - N 0 0000 0000 1 0001 1111 2 0010 1110 3 0011 1101 4 0100 1100 5 0101 1011 6 0110 1010 7 0111 1001
  • 24. 2’s complement (radix complement) Shortcut for base 2? Yes! Flip the bits and add 1. + N - N 0 0000 0000 1 0001 1111 2 0010 1110 3 0011 1101 4 0100 1100 5 0101 1011 6 0110 1010 7 0111 1001
  • 25. 2’s complement (radix complement) Are all combinations of 4 bits used? No. (Now we only have one zero.) 1000 is missing! What is 1000? Is it positive or negative? Does -8 + 1 = -7 work in 2’s complement? + N - N 0 0000 0000 1 0001 1111 2 0010 1110 3 0011 1101 4 0100 1100 5 0101 1011 6 0110 1010 7 0111 1001
  • 26. excess bD-1 (biased representation) For pos, neg, and 0, x is represented by bD-1 + x Ex. Let b=2 and D=4. Then the excess 8 (24-1) representation for 0 is 8+0 = 8 or 10002. Ex. Let b=2 and D=4. Then excess 8 for -1 is 8 – 1 = 7 or 01112.
  • 27. excess bD-1 For pos, neg, and 0, x is represented by bD-1 + x. Ex. Let b=2 and D=4. Then the excess 8 (24-1) representation for 0 is 8+0 = 8 or 10002. Ex. Let b=2 and D=4. Then excess 8 for -1 is 8 – 1 = 7 or 01112. + N - N 0 1000 1000 1 1001 0111 2 1010 0110 3 1011 0101 4 1100 0100 5 1101 0011 6 1110 0010 7 1111 0001
  • 28. 2’s complement vs. excess bD-1 In 2’s, positives start with 0; in excess, positives start with 1. Both have one zero (positive). Remaining bits are the same. + N - N 0 1000 1000 1 1001 0111 2 1010 0110 3 1011 0101 4 1100 0100 5 1101 0011 6 1110 0010 7 1111 0001
  • 29. Summary of methods for representing signed ints. signedMag sComp sComp excess 1 2 8 N + n - n - n - n - n + n 0 0000 1000 1111 0000 1000 1000 1 0001 1001 1110 1111 0111 1001 2 0010 1010 1101 1110 0110 1010 3 0011 1011 1100 1101 0101 1011 4 0100 1100 1011 1100 0100 1100 5 0101 1101 1010 1011 0011 1101 6 0110 1110 1001 1010 0010 1110 7 0111 1111 1000 1001 0001 1111 1000=-8| 0000 unused
  • 30. Binary arithmetic Signed magnitude 1’s complement 2’s complement Excess K (biased)
  • 32. Addition w/ signed magnitude algorithm For A - B, change the sign of B and perform addition of A + (-B) (as in the next step) For A + B: if (Asign==Bsign) then { R = |A| + |B|; Rsign = Asign; } else if (|A|>|B|) then { R = |A| - |B|; Rsign = Asign; } else if (|A|==|B|) then { R = 0; Rsign = 0; } else { R = |B| - |A|; Rsign = Bsign; } Complicated?
  • 34. Representing numbers (ints) using 2’s complement Fixed, finite number of bits. bits Intel signed 8 sbyte -27..+27-1 16 sword -215..+215-1 32 sdword -231..+231-1 64 sqword -263..+263-1 In general, for k bits, the signed range is [-2k-1..+2k-1-1]. So where does the extra negative value come from?
  • 35. Representing numbers (ints) Fixed, finite number of bits. bits Intel signed 8 sbyte -27..+27-1 16 sword -215..+215-1 32 sdword -231..+231-1 64 sqword -263..+263-1 + n - n 0 0000 0000 1 0001 1111 2 0010 1110 3 0011 1101 4 0100 1100 5 0101 1011 6 0110 1010 In general, for k bits, the signed range is [-2k-1..+2k-1-1]. So where does the extra negative value come from? 8 1000 7 0111 1001
  • 36. Addition of 2’s complement binary numbers Consider 8-bit 2’s complement binary numbers. Then the msb (bit 7) is the sign bit. If this bit is 0, then this is a positive number; if this bit is 1, then this is a negative number. Addition of 2 positive numbers. Ex. 40 + 58 = 98 1 1 1 00101000 00111010 01100010 +
  • 37. Addition of 2’s complement binary numbers Consider 8-bit 2’s complement binary numbers. Addition of a negative to a positive. What are the values of these 2 terms? -88 and 122 -88 + 122 = 34 1 1 1 1 + 10101000 01111010 1 00100010
  • 38. So how can we perform subtraction?
  • 39. Addition of 2’s complement binary numbers Consider 8-bit 2’s complement binary numbers. Subtraction is nothing but addition of the 2’s complement. Ex. 58 – 40 = 58 + (-40) = 18 1 1 1 1 + 00111010 11011000 1 00010010 discard carry
  • 41. Addition of 2’s complement binary numbers Carry vs. overflow when adding A + B If A and B are of opposite sign, then overflow cannot occur. If A and B are of the same sign but the result is of the opposite sign, then overflow has occurred (and the answer is therefore incorrect). Overflow occurs iff the carry into the sign bit differs from the carry out of the sign bit.
  • 42. Addition of 2’s complement binary numbers class test { public static void main ( String args[] ) { byte A = 127; byte B = 127; byte result = (byte)(A + B); System.out.println( "A + B = " + result ); } } #include <stdio.h> int main ( int argc, char* argv[] ) { char A = 127; char B = 127; char result = (char)(A + B); printf( "A + B = %d n", result ); return 0; } Result = -2 in both Java (left) and C++ (right). Why?
  • 43. Addition of 2’s complement binary numbers class test { public static void main ( String args[] ) { byte A = 127; byte B = 127; byte result = (byte)(A + B); System.out.println( "A + B = " + result ); } } Result = -2 in both Java and C++. Why? What’s 127 as a 2’s complement binary number? 01111111 + 01111111 11111110 What is 111111102? Flip the bits: 00000001. Then add 1: 00000010. This is -2.
  • 45. Addition with 1’s complement Note: 1’s complement has two 0’s! 1’s complement addition is tricky (end-around- carry). + N - N 0 0000 1111 1 0001 1110 2 0010 1101 3 0011 1100 4 0100 1011 5 0101 1010 6 0110 1001 7 0111 1000
  • 46. 8-bit 1’s complement addition Ex. Let X = A816 and Y = 8616. Calculate Y - X using 1’s complement.
  • 47. 8-bit 1’s complement addition Ex. Let X = A816 and Y = 8616. Calculate Y - X using 1’s complement. Y = 1000 01102 = -12110 X = 1010 10002 = -8710 ~X = 0101 01112 1000 0110 + 0101 0111 (Note: C=0 out of msb.) 1101 1101 Y - X = -121 + 87 = -34 (base 10)
  • 48. 8-bit 1’s complement addition Ex. Let X = A816 and Y = 8616. Calculate X - Y using 1’s complement.
  • 49. 8-bit 1’s complement addition Ex. Let X = A816 and Y = 8616. Calculate X - Y using 1’s complement. X = 1010 10002 = -8710 Y = 1000 01102 = -12110 ~Y = 0111 10012 (Note: C=1 out of msb.) 1010 1000 0111 1001 + 1 0010 0001 1 + end around carry 0010 0010 X - Y = -87 + 121 = 34 (base 10)
  • 51. Binary arithmetic and Excess K (biased) Method: Simply add and then flip the sign bit. -1 0111 +5 1101 -- ---- +4 0100 -> flip sign -> 1100 +1 1001 -5 0011 -- ---- -4 1100 -> flip sign -> 0100 +1 1001 +5 1101 -- ---- +6 0110 -> flip sign -> 1110 -1 0111 -5 0011 -- ---- -6 1010 -> toggle sign -> 0010 + N - N 0 1000 1000 1 1001 0111 2 1010 0110 3 1011 0101 4 1100 0100 5 1101 0011 6 1110 0010 7 1111 0001 (Not used for integer arithmetic but employed in IEEE 754 floating point standard.)