Answer:C
Explanation: Because of the high interest rates it will take longer for her pay it off
Answer:
Answer is provided in the explanation section
Explanation:
Given data:
Bandwidth of link = 10* 106 bps
Length of packet = 12* 103 bits
Distance of link = 40 * 103m
Transmission Speed = 3 * 108 meters per second
Formulas:
Transmission Delay = data size / bandwidth = (L /B) second
Propagation Delay = distance/transmission speed = d/s
Solution:
Transmission Delay = (12* 103 bits) / (10* 106 bps) = 0.0012 s = 1.2 millisecond
Propagation Delay = (40 * 103 meters)/ (3 * 108mps) = 0.000133 = 0.13 millisecond
Answer:
The solution code is written in Python:
- keysList = [32, 105, 101, 35]
- itemsList = [10, 20, 30, 40]
-
- output = ""
-
- for i in range(len(keysList)):
- if(keysList[i] > 50):
- output += str(itemsList[i]) + " "
-
- print(output)
Explanation:
Firstly, let us use the two sample list, keysList and itemsList in our program (Line 1-2). Then create a output variable to hold the output string (Line 4).
Next, we create a for-loop and use it to traverse through the elements in the keysList. If any keysList element is bigger than 50 then we use the same index i to get the corresponding item from itemsList and join that value to the output string (Line 7-8).
Lastly, we print the output (Line 10).
Primary storage is usually termed as the viotile storage unit directly accessible as the main device to the CPU. So the main form of primary storage is RAM. It is the main storage unit where you keep your long term memory for your computer