Answer:
Advantages of a circuit-switched network over a packet-switched network are:
- In Circuit-switched networks, resources needed to provide communication between the end systems for the duration of the session are usually reserved unlike in packet-switched networks where they are not reserved.
- Circuit-switched networks have faster communication, so they can be used for Voice/Video calls
- Circuit-switched networks have less errors in communication
- Circuit-switched networks are more suitable for real-time services. Packet-switched networks are simpler, more efficient, and less costly to implement. They also offer better sharing of transmission capacity than circuit-switched network
Advantages does TDM have over FDM in a circuit-switched network are;
- In TDM, all connections operate at the same frequency , but In FDM, all connections operate at different frequencies
- In TDM there is low interference between the signals that are being multiplexed as compared to FDM.
- In TDM, bandwidth is saved by allocating time slots on demand dynamically
- TDM systems are more flexible than FDM
Hi!
The 2016 Olympics took place from August 5th, 2016 - August 21st, 2016.
Subnet 102.176.0.0/12
broadcast 102.191.255.255
lowest 102.176.0.1
highest 102.191.255.254
The LinkedIn Answers is a component of LinkedIn that allows
you to get fast and accurate solutions to your questions. It provides a forum
through which you can demonstrate your expertise by offering info to your
network. You should use LinkedIn answers to ask and answer questions.
Essentially, you should use it to provide examples to your work product,
decision making skills, and on an interactive basis.
Answer:
Explanation:
#include <stdio.h>
int main(void)
{
int num, rem;
printf("Enter a number: ");
scanf("%d", &num);
printf("Roman numerals: ");
while(num != 0)
{
if (num >= 1000) // 1000 - m
{
printf("m");
num -= 1000;
}
else if (num >= 900) // 900 - cm
{
printf("cm");
num -= 900;
}
else if (num >= 500) // 500 - d
{
printf("d");
num -= 500;
}
else if (num >= 400) // 400 - cd
{
printf("cd");
num -= 400;
}
else if (num >= 100) // 100 - c
{
printf("c");
num -= 100;
}
else if (num >= 90) // 90 - xc
{
printf("xc");
num -= 90;
}
else if (num >= 50) // 50 - l
{
printf("l");
num -= 50;
}
else if (num >= 40) // 40 - xl
{
printf("xl");
num -= 40;
}
else if (num >= 10) // 10 - x
{
printf("x");
num -= 10;
}
else if (num >= 9) // 9 - ix
{
printf("ix");
num -= 9;
}
else if (num >= 5) // 5 - v
{
printf("v");
num -= 5;
}
else if (num >= 4) // 4 - iv
{
printf("iv");
num -= 4;
}
else if (num >= 1) // 1 - i
{
printf("i");
num -= 1;
}
}
return 0;
}