Answer:
The code is given below in Python with appropriate comments
Explanation:
# convert list to set
male_names = set(['Oliver','Declan','Henry'])
# get remove and add name from user
remove_name = input("Enter remove name: ")
add_name = input("Enter add name: ")
# remove name from set
male_names.remove(remove_name)
# add new name ij set
male_names.add(add_name)
# sort the set
a = sorted(male_names)
# print the set
print(a)
The gain of the directional antenna is calculated based on the comparison
with an hypothetical isotropic antenna.
- a) The gain in dBi of the isotropic antenna is approximately <u>11.76 dBi</u>
- b) The power received by the isotropic antenna is approximately <u>0.61 mW</u>
Reasons:
a) The number of times the power of the directional antenna is stronger than the isotropic antenna, G = 15 times
The gain in dBi is given as follows;

Which gives;



The power gain of the isotropic antenna, G(dBi) ≈ <u>11.76 dBi</u>
b) When the gain of the directional antenna is 2.15 dBi and it received 1 mW of power, we have;
The number of times stronger the directional antenna is, is found as follows;

The 2.15 dBi directional antenna receives the signal approximately 1.64 times stronger than the isotropic antenna, therefore;
Learn more here:
brainly.com/question/17587029