Chapter 11 : Computer Data communication

Example 11.7 Page No : 379

In [1]:
# Calculations
B = 800.*64;   #Mb/s

# Results
print 'Bandwidth =  %i Mb/s  or  %i MB/s'%(B,B/8);
Bandwidth =  51200 Mb/s  or  6400 MB/s

Example 11.8 Page No : 379

In [2]:
# Calculations
B = 400*64;   #Mb/s

# Results
print 'Memory bus bandwidth  =  %i Mb/s  or  %i MB/s'%(B,B/8);
Memory bus bandwidth  =  25600 Mb/s  or  3200 MB/s

Example 11.9 Page No : 379

In [3]:
# Calculations
B = 128.*400;   #Mb/s

# Results
print 'Memory bus bandwidth  =  %i Mb/s  or  %i MB/s'%(B,B/8);
Memory bus bandwidth  =  51200 Mb/s  or  6400 MB/s