Solution :
- Loopback plug --- confirm interface functionality
It is a connector that is used to diagnose the transmission problems.
- Protocol Analyzer --- Analyze network traffic
It is used to capture and analyze the signals as well as data traffic.
- Throughput tester - Measure link speed
- Time Domain Reflectometer (TDR) - Determining the location of cable fault
It is used in determining the characteristics of the electrical lines by observing the reflected waveforms
- Locating a specific cable - Toner probe
Medieval music was in the time<span>of the middle ages. Renaissance music is the time for art and culture.
</span>
Medieval music refers to music written during the Middle Ages, around the time of 500AD - 1400. Little written music of this period survives, as making scores of music proved expensive, but most music of this time was monothonic or homorhythmic plainchant. Music from this period was generally modal and the begginings of counterpoint were seen in the form of organum. Renaissance music refers to the period from around 1400-1600, although there is some discrepancy in defining the begining of this period. Counterpoint became much more elaborate and it was over the duration of this period that composers began to leave the old modal music system in favour of tonality. Notable composers of this period <span>are Orlando Gibbons, John Bull, Thomas Tallis and William Byrd. </span>
Answer:
The prototype for the function is written below:-
void printArray(int [],int);
Explanation:
The prototype of the function is written above.Since the function does not return a value so it has to be of type void.Then following is the name of the function.Following that the arguments in the parenthesis.We need not to provide the name of the arguments we just have to define it's type.So for the array we have to just write int [] and for integer variable just int.
Answer:
The size on the drive before the transfer is 45 megabytes
Explanation:
Before transfer, t which is the time in seconds is 0. Therefore given the formula: S = 5t + 45,
substituting t into the formula gives;
S = 5(0) + 45
S = 0 + 45
S = 45
Answer:
Written in Python
import random
#randnum = str(random.randint(999, 9999))
tryagain = "Yes"
while tryagain == "Yes":
randnum = "1234"
trys = 1
guess = input("Guess: ")
count = 0
while not count == 4:
for i in range(0,4):
if randnum[i] == guess[i]:
count = count + 1
if not count == 4:
print("You match "+str(count))
guess = input("Guess: ")
trys = trys + 1
else:
print("Congratulations, you match at "+str(trys))
trys = 1
tryagain = input("Start? (Yes/No): ")
Explanation:
I've added the full source code as an attachment where I used comments as explanation