Question

In: Computer Science

Enter the first usable host on the network 12.48.105.97 255.255.252.0. Please show work.

Enter the first usable host on the network 12.48.105.97 255.255.252.0.

Please show work.

Solutions

Expert Solution

12.48.104.1

Explanation:
-------------
IP Address: 12.48.105.97
----------------------------------------
Let's first convert this into binary format
12.48.105.97
Let's convert all octets to binary separately
Converting 12 to binary
Divide 12 successively by 2 until the quotient is 0
   > 12/2 = 6, remainder is 0
   > 6/2 = 3, remainder is 0
   > 3/2 = 1, remainder is 1
   > 1/2 = 0, remainder is 1
Read remainders from the bottom to top as 1100
So, 12 of decimal is 1100 in binary
12 in binary is 00001100

Converting 48 to binary
Divide 48 successively by 2 until the quotient is 0
   > 48/2 = 24, remainder is 0
   > 24/2 = 12, remainder is 0
   > 12/2 = 6, remainder is 0
   > 6/2 = 3, remainder is 0
   > 3/2 = 1, remainder is 1
   > 1/2 = 0, remainder is 1
Read remainders from the bottom to top as 110000
So, 48 of decimal is 110000 in binary
48 in binary is 00110000

Converting 105 to binary
Divide 105 successively by 2 until the quotient is 0
   > 105/2 = 52, remainder is 1
   > 52/2 = 26, remainder is 0
   > 26/2 = 13, remainder is 0
   > 13/2 = 6, remainder is 1
   > 6/2 = 3, remainder is 0
   > 3/2 = 1, remainder is 1
   > 1/2 = 0, remainder is 1
Read remainders from the bottom to top as 1101001
So, 105 of decimal is 1101001 in binary
105 in binary is 01101001

Converting 97 to binary
Divide 97 successively by 2 until the quotient is 0
   > 97/2 = 48, remainder is 1
   > 48/2 = 24, remainder is 0
   > 24/2 = 12, remainder is 0
   > 12/2 = 6, remainder is 0
   > 6/2 = 3, remainder is 0
   > 3/2 = 1, remainder is 1
   > 1/2 = 0, remainder is 1
Read remainders from the bottom to top as 1100001
So, 97 of decimal is 1100001 in binary
97 in binary is 01100001

===================================================================================
||    12.48.105.97 in binary notation is 00001100.00110000.01101001.01100001    ||
===================================================================================

Subnet address: 255.255.252.0
----------------------------------------
Let's convert this into binary format
255.255.252.0
Let's convert all octets to binary separately
Converting 255 to binary
Divide 255 successively by 2 until the quotient is 0
   > 255/2 = 127, remainder is 1
   > 127/2 = 63, remainder is 1
   > 63/2 = 31, remainder is 1
   > 31/2 = 15, remainder is 1
   > 15/2 = 7, remainder is 1
   > 7/2 = 3, remainder is 1
   > 3/2 = 1, remainder is 1
   > 1/2 = 0, remainder is 1
Read remainders from the bottom to top as 11111111
So, 255 of decimal is 11111111 in binary
255 in binary is 11111111

Converting 255 to binary
Divide 255 successively by 2 until the quotient is 0
   > 255/2 = 127, remainder is 1
   > 127/2 = 63, remainder is 1
   > 63/2 = 31, remainder is 1
   > 31/2 = 15, remainder is 1
   > 15/2 = 7, remainder is 1
   > 7/2 = 3, remainder is 1
   > 3/2 = 1, remainder is 1
   > 1/2 = 0, remainder is 1
Read remainders from the bottom to top as 11111111
So, 255 of decimal is 11111111 in binary
255 in binary is 11111111

Converting 252 to binary
Divide 252 successively by 2 until the quotient is 0
   > 252/2 = 126, remainder is 0
   > 126/2 = 63, remainder is 0
   > 63/2 = 31, remainder is 1
   > 31/2 = 15, remainder is 1
   > 15/2 = 7, remainder is 1
   > 7/2 = 3, remainder is 1
   > 3/2 = 1, remainder is 1
   > 1/2 = 0, remainder is 1
Read remainders from the bottom to top as 11111100
So, 252 of decimal is 11111100 in binary
252 in binary is 11111100

Converting 0 to binary
Divide 0 successively by 2 until the quotient is 0
Read remainders from the bottom to top as 
So, 0 of decimal is  in binary
0 in binary is 00000000

====================================================================================
||    255.255.252.0 in binary notation is 11111111.11111111.11111100.00000000    ||
====================================================================================

Remove all dots to form 11111111111111111111110000000000
Remove all 0's from the right side to form 1111111111111111111111
Number of 1's in this is 22
so, Subnet mask is /22

For Calculating network ID, keep first 22 bits of 00001100.00110000.01101001.01100001 and set all remaining bits to 0.
so, network ID in binary is 00001100.00110000.01101000.00000000
00001100.00110000.01101000.00000000:
----------------------------------------
00001100.00110000.01101000.00000000
Let's convert all octets to decimal separately
Converting 00001100 to decimal
Converting 00001100 to decimal
00001100
=> 0x2^7+0x2^6+0x2^5+0x2^4+1x2^3+1x2^2+0x2^1+0x2^0
=> 0x128+0x64+0x32+0x16+1x8+1x4+0x2+0x1
=> 0+0+0+0+8+4+0+0
=> 12
00001100 in decimal is 12

Converting 00110000 to decimal
Converting 00110000 to decimal
00110000
=> 0x2^7+0x2^6+1x2^5+1x2^4+0x2^3+0x2^2+0x2^1+0x2^0
=> 0x128+0x64+1x32+1x16+0x8+0x4+0x2+0x1
=> 0+0+32+16+0+0+0+0
=> 48
00110000 in decimal is 48

Converting 01101000 to decimal
Converting 01101000 to decimal
01101000
=> 0x2^7+1x2^6+1x2^5+0x2^4+1x2^3+0x2^2+0x2^1+0x2^0
=> 0x128+1x64+1x32+0x16+1x8+0x4+0x2+0x1
=> 0+64+32+0+8+0+0+0
=> 104
01101000 in decimal is 104

Converting 00000000 to decimal
Converting 00000000 to decimal
00000000
=> 0x2^7+0x2^6+0x2^5+0x2^4+0x2^3+0x2^2+0x2^1+0x2^0
=> 0x128+0x64+0x32+0x16+0x8+0x4+0x2+0x1
=> 0+0+0+0+0+0+0+0
=> 0
00000000 in decimal is 0

===================================================================================
||    00001100.00110000.01101000.00000000 in decimal notation is 12.48.104.0    ||
===================================================================================
==========================================
||    So, Network ID is 12.48.104.0    ||
==========================================

For Calculating first valid address in subnet, add 1 to the network address.
Network Address is 12.48.104.0
=============================================================
||    So, first valid address in subnet is 12.48.104.1    ||
=============================================================

Related Solutions

In this assignment, you need to determine the network ID, first usable host, last usable host,...
In this assignment, you need to determine the network ID, first usable host, last usable host, range of valid addresses, and broadcast address of a network. Must be written on paper Which subnet (network ID) does host 192.24.54.215 255.255.255.240 belong to? What is the last valid host on the subnetwork 192.168.243.32 255.255.255.248? What is the first valid host on the subnetwork that the node 192.31.253.75/28 belongs to? What is the first valid host on the subnetwork that the node 192.24.91.245...
Enter the network address of the subnet to which the host 222.242.88.128/28 belongs. Please show work.
Enter the network address of the subnet to which the host 222.242.88.128/28 belongs. Please show work.
Apply IP Configurations to the network. You may use this network ID 192.168.200.0. Show your work....
Apply IP Configurations to the network. You may use this network ID 192.168.200.0. Show your work. Network 1: 240 Host Network 2: 75 Hosts Network 3: 48 Hosts Network 4: 10 Hosts Connect to the Internet Connect to a DMZ For each network, find the following Network ID Subnet Mask Default Gateway Broadcast Range of IP Addresses for each network
Please show all work and label everything correctly. 1: Consider the sum of the first n...
Please show all work and label everything correctly. 1: Consider the sum of the first n positive integers that leave a remainder of 4 when divided by 6. FInd and prove a formula for this sum.
Answer the following questions. Show all work leading to your answer. On a network with an...
Answer the following questions. Show all work leading to your answer. On a network with an IP address of 140.133.28.72 and a subnet mask of 255.248.0.0, what is the network ID? You have decided to create 254 subnets on your Class B network. What subnet mask will you use to accomplish this? What is the maximum number of hosts you can assign to any single subnet? Your workstation's IP address is 10.35.88.12, and your supervisor's workstation's IP address is 10.35.91.4....
Show that ?̅ is an unbiased estimator for ?. ( please show all work completely)
Show that ?̅ is an unbiased estimator for ?. ( please show all work completely)
Describe three ways that animal viruses enter into a host cell.
Describe three ways that animal viruses enter into a host cell.
First, show all work for determining the mass of the planar lamina region in the first...
First, show all work for determining the mass of the planar lamina region in the first quadrant bounded by the circle ? 2 + ? 2 = 4 and the lines ? = 0 and ? = ? √3 with a density of ?(?, ?) = ? 2 . (Hint: You may want to use a double angle formula if using polar coordinates) Second, set up the double integrals for finding the moments My and Mx. Finally, use Wolfram Alpha...
IP Address: 37.124.67.99 Subnet Mask: 255.240.0.0 find Network address, Broadcast address, first valid host address, last...
IP Address: 37.124.67.99 Subnet Mask: 255.240.0.0 find Network address, Broadcast address, first valid host address, last valid host address and number of valid hosts in the network. show very clear steps for all the calculations.
Please explain in detail and show work where applicable. Please show any formulas or calculations and...
Please explain in detail and show work where applicable. Please show any formulas or calculations and explain them. - perhaps you would Soft Peg the small coutry to a basket of Germany and France's currencies? - please explain? Practice # 10 You have been hired as a consultant to the central bank for a small country that, for many years, has suffered from repeated currency crises and rampant inflation. The country depends heavily on both the German and French financial...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT