Answer:
a) Time to live field
b) Destination
c) Yes, they have two ip addresses.
d) 128 bits
e) 32 hexadecimal digits
Explanation:
a) the time to live field (TTL) indicates how long a packet can survive in a network and whether the packet should be discarded. The TTL is filled to limit the number of packets passing through N routers.
b) When a large datagram is fragmented into multiple smaller datagrams, they are reassembled at the destination into a single large datagram before beung passed to the next layer.
c) Yes, each router has a unique IP address that can be used to identify it. Each router has two IP addresses, each assigned to the wide area network interface and the local area network interface.
d) IPv6 addresses are represented by eight our characters hexadecimal numbers. Each hexadecimal number have 16 bits making a total of 128 bits (8 × 16)   
e) IPv6 address has 32 hexadecimal digits with 4 bits/hex digit
 
        
             
        
        
        
Answer:
Boolean
Explanation:
Boolean is one of the primitive data types that will only hold either true or false value. This data type is commonly used in a variable that will track a status with only two possible outcomes. 
For example, the<em> ParticipantPD</em> field is to track the payment status (paid or unpaid) of a participant. So, declare the<em> ParticipantPD</em> field as boolean data type will meet its purpose.
                boolean ParticipantPD = true;
                or
                boolean ParticipantPD = false;
 
        
             
        
        
        
There is not really a key benifit, but it does help with little things.
        
             
        
        
        
Answer:
Change the theme colors in Word
1. Select Design > Colors.
2. Point to a color to preview how it will look in your document.
3. Select a color scheme.
Explanation:
 
        
             
        
        
        
The algorithm is as follows:
1. Start
2. bottles = 0
3. While bottles != 500
 3.1 Create bottle
 3.2 bottle = bottle + 1
4. Switch off machine
5. Stop
Explanation:
This begins the algorithm
1. Start
This initializes bottles to 0
2. bottles = 0
The loop is repeated until 500 bottles is created
3. While bottles != 500
This creates a new bottle
 3.1 Create bottle
This increments the number of bottles by 1
 3.2 bottle = bottle + 1
This switches of the machine after all bottles are created
4. Switch off machine
End algorithm
5. Stop
THANKS