Answer:
It's a compact way of doing an if-else statement.
General Format is
<<em>condition</em>> ? <if condition is true> : <else>;
Example:
I could rewrite:
if(a==1) temp = 1;
else temp = 999;
as
temp = (a==1) ? 1 : 999;
Answer:
could you shorten it a little?
Explanation:
Answer:
chronological
Explanation:
if your list is in chronological order that means it will be in the exact specific order in which you need it to be
Answer:
The theoretical maximum capacity in bps for this link is 114.3 Gbps
Explanation:
The maximum capacity in bits per second can be calculated by Shannon's channel capacity formula:
<u>C = B*log₂(1 + SNR)</u>
Where B = bandwidth of the channel in Hz
SNR = Signal to Noise Ratio
We need to use SNR in linear scale not in dB scale so,
SNR = 10log₁₀ (20)
SNR = 13.01
Bandwidth = 60GHz - 30GHz = 30GHz
C = B*log₂(1 + SNR)
= (30*10⁹)*log₂ (1 + 13.01)
= 1.143*10¹¹ bps
C = 114.3 Gbps