Answer:
you can look it up if you want to just look up modern technological machine and u will get it.
Answer:
a. Anycast Addresses
b. Broadcast domain
c. Classless Interdomain Routing (CIDR)
d. Extended Unique Identifier (EUI-64) interface ID
e. Intra-Site Automatic Tunnel Addressing Protocol (ISATAP)
f. IP prefix
g. Loopback Address
h. Metric
i. Multicasting
j. Teredo
Explanation:
a. <u>Anycast Addresses</u>: An address type used in IPv6 to allow a one-to-many relationship between source and destination.
b. <u>Broadcast domain</u>: The bounds of a network that defines which devices must receive a packet that's broadcast by any other device.
c. <u>Classless Interdomain Routing (CIDR)</u>: A method of IP addressing in which the network and host IDs are determined by a prefix number that specifies how many bits of the IP address are network bits.
d. <u>Extended Unique Identifier (EUI-64) interface ID</u>: An auto configure IPv6 host address that uses the MAC address of the host plus an additional 16 bits.
e. <u>Intra-Site Automatic Tunnel Addressing Protocol (ISATAP)</u>: An automatic tunneling protocol used to transmit IPv6 packets between dual IP layer hosts across an IPv4 network.
f. <u>IP prefix</u>: A value used to express how many bits of an IP address are network ID bits.
g. <u>Loopback Address</u>: An address that always refers to the local computer. The loop address is primarily 127.0.01.
h. <u>Metric</u>: A value assigned to the gateway based on the speed of the interface used to access the gateway.
i. <u>Multicasting</u>: A network communication in which a packet is addressed so that more than one destination can receive it
j. <u>Teredo</u>: An automatic IPv6-over-IPv4 tunneling protocol that solves the problem of 6to4's requirement of a public IPv4 address and the inability to traverse NAT routers.
Answer:
Following are the statement is given below
Int total=0; // variable declaration
int k=1;
// variable declaration
while(k<=50) // iterating the loop
{
total=total+k*k; // calculating sum of the squares
k++; // increment the value of k
}
Explanation:
Following are the description of the above statement
- Declared a variable total and k of int type.
- Initialized total to 0 and k to 1.
- iterating the while loop up to the value 50.
- In this while calculating the calculating sum of the squares in the total variable.
- increment the value of k by 1. This loop is executed until 50.