Answer:
b) Commonly used to transmit network signals over great distances.
Explanation:
The transmission of information or data by using microwave radio waves is known as microwave transmission. Microwave transmitter is commonly used to transmit network signals over great distances. It is an electronic device that transmits and receives radio frequency signals ranging from 1GHz to 100GHz.
The microwave transmitter has a wide range of applications and these includes, radio stations, television stations, mobile phones, radio astronomy, radar,
Answer:
diameter is 14 mm
Explanation:
given data
power = 15 kW
rotation N = 1750 rpm
factor of safety = 3
to find out
minimum diameter
solution
we will apply here power formula to find T that is
power = 2π×N×T / 60 .................1
put here value
15 ×
= 2π×1750×T / 60
so
T = 81.84 Nm
and
torsion = T / Z ..........2
here Z is section modulus i.e = πd³/ 16
so from equation 2
torsion = 81.84 / πd³/ 16
so torsion = 416.75 / / d³ .................3
so from shear stress theory
torsion = σy / factor of safety
so here σy = 530 for 1020 steel
so
torsion = σy / factor of safety
416.75 / d³ = 530 ×
/ 3
so d = 0.0133 m
so diameter is 14 mm
The answer would be 23 because the engines in a horse is a amount of 9 engines in 69 cars
The C++ code that would draw all the iterations in the selection sort process on the array is given below:
<h3>C++ Code</h3>
#include <stdio.h>
#include <stdlib.h>
int main() {
int i, temp1, temp2;
int string2[16] = { 0, 4, 2, 5, 1, 5, 6, 2, 6, 89, 21, 32, 31, 5, 32, 12 };
_Bool check = 1;
while (check) {
temp1 = string2[i];
temp2 = string2[i + 1];
if (temp1 < temp2) {
string2[i + 1] = temp1;
string2[i] = temp2;
i = 0;
} else {
i++;
if (i = 15) {
check = !check;
}
}
}
return 0;
}
Read more about C++ programming here:
brainly.com/question/20339175
#SPJ1