<h3><u>CSMA/CD Protocol:
</u></h3>
Carrier sensing can transmit the data at anytime only the condition is before sending the data sense carrier if the carrier is free then send the data.
But the problem is the standing at one end of channel, we can’t send the entire carrier. Because of this 2 stations can transmit the data (use the channel) at the same time resulting in collisions.
There are no acknowledgement to detect collisions, It's stations responsibility to detect whether its data is falling into collisions or not.
<u>Example:
</u>
, at time t = 10.00 AM, A starts, 10:59:59 AM B starts at time 11:00 AM collision starts.
12:00 AM A will see collisions
Pocket Size to detect the collision.
CSMA/CD is widely used in Ethernet.
<u>Efficiency of CSMA/CD:</u>
- In the previous example we have seen that in worst case time require to detect a collision.
- There could be many collisions may happen before a successful completion of transmission of a packet.
We are given number of collisions (contentions slots)=4.
Distance = 1km = 1000m
Answer:
Option D
A mineral’s color reflects the wavelengths of light that are absorbed by the mineral.
Explanation:
Color is one of the physical properties of minerals. Many minerals have a wide range of colors but there are some minerals with one consistent color and such minerals are referred as monochromatic minerals for example azurite. Normally, the streak color tends to be less variable than the color of the whole mineral and impurities or minor chemical components in a mineral react and often control the display color of resultant mineral. Option D is incorrect since mineral's color don't reflect wavelengths of light absorbed by such minerals.
The number of hectares of each crop he should plant are; 250 hectares of Corn, 500 hectares of Wheat and 450 hectares of soybeans
<h3>How to solve algebra word problem?</h3>
He grows corn, wheat and soya beans on the farm of 1200 hectares. Thus;
C + W + S = 12 ----(1)
It costs $45 per hectare to grow corn, $60 to grow wheat, and $50 to grow soybeans. Thus;
45C + 60W + 50S = 63750 -----(2)
He will grow twice as many hectares of wheat as corn. Thus;
W = 2C ------(3)
Put 2C for W in eq 1 and eq 2 to get;
C + 2C + S = 1200
3C + S = 1200 -----(4)
45C + 60(2C) + 50S = 63750
45C + 120C + 50S = 63750
165C + 50S = 63750 ------(5)
Solving eq 4 and 5 simultaneosly gives;
C = 250 and W = 500
Thus; S = 1200 - 3(250)
S = 450
Read more about algebra word problems at; brainly.com/question/13818690
Answer:
Coiled tubing is often used to carry out operations similar to wire lining.
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<