Answer:
The correct answer for the following question is UTP cables.
Explanation:
UTP : It stands for Unshield Twisted Pair cables, used in telecommunication industry and computer as an Ethernet cables widely.
There are five types of UTP cables :
- CAT3 (mainly placed in phone lines, rarely used)
- CAT4 (available in token ring networks)
- CAT5 (two twisted pairs contained)
- CAT5e (four twisted pairs contained)
- CAT6
In this UTP cables, the copper wires are covered with metallic shielding which provides the balanced signal and minimize electronic involvement.
Answer:
Hi!
The correct answer is E.
Explanation:
void change(int ar[], int low, inthigh) {
int temp;
if(low< high) { <em>// here ask if the positions low and high of the array are the same.</em>
temp= ar[low]; <em>// first, saves the element on ar[low] in temp.</em>
ar[low]= ar[high]; <em>// second, the element on ar[high] in ar[low]. First switch.</em>
ar[high]= temp; <em>// third, saves the element on temp in ar[high]. Complete switch.</em>
change(ar,low + 1, high - 1); <em>// Recursive call, adding one position to low, and subtracting one position to high. </em><em>Important: </em><em>When low and high have the same value, the recursive call will finish.</em>
}
}
Result: Switch the lower half of elements in the array with the upper half.
The code segment makes use of conditional statements.
Conditional statements in programming are used to make decisions
The code segment in C++ is as follows
if (score > 90) {
grade = 'A';
}
else if (score >= 80 && score < =90) {
grade = 'B';
}
else {
grade = 'C';
}
The above code segments take the score, make comparison, and then determine the appropriate letter grade.
Read more about code segments at:
brainly.com/question/20475581
If this is a true or false statement then the answer is true unless you have it on automatic save