Answer:
frames
Explanation:
The data-link layer is the second layer from the bottom of the OSI Model. The data-link layer's principal role is to identify errors and merge data bits into frames.
Answer:
C & E
Explanation:
Metric are parameters used in a dynamic routing protocol to determine a network path. Dynamic routing protocols are protocols configured to a router to enable dynamic learning of network paths in interconnected networks.
There are various types of dynamic routing protocols, they are, RIP, EIGRP, OSPF, IS-IS, BGP etc.
The EIGRP uses various metrics to determine network paths, they are bandwidth, delay, load, Reliability etc.
The reliability and load metrics values are dynamically updated over a period of time, while the bandwidth and delay are static values, but the MTU is not a metric used in EIGRP.
Answer:
The meaning of the term plot is the plan, scheme, or main story of a literary or dramatic work, as a play, novel, or short story.
Explanation:
Here you go,
class Program
{
static void Main(string[] args)
{
int n,i,j;
Console.Write("Enter size: ");
n = Convert.ToInt32(Console.ReadLine());
for (i = 1; i <= n; i++)
{
for (j = 1; j <= i; j++)
{
System.Console.Write("*");
}
System.Console.Write("\n");
}
Console.ReadLine();
}
}