A professor who publishes world population research in a journal
Answer:
Following are the advantages and disadvantages of Satellite Based
Augmentation Systems is given below .
Explanation:
Advantages
- The previous ground mission segment to Space Segment system monitoring, satellite tracking, and regulate surface facility of the geocentric structure.
- The satellite based augmentation Systems is more accurate also this system is reliable and enhanced then the previous satellite system.
DisAdvantages
- In satellite based augmentation systems some circumstances are occur where people's life is at risk or when a type of legal or economic assurance is needed then Satellite Based Augmentation Systems is invaluable.
- The cost of making satellite based augmentation systems is expensive as compare to other system .
Code:
Here is the code. Also screenshot of the code and text file containing the code have been attached here.
This code has been written in Python 3.0
# getting input
lst = [ ]
n = 5
for i in range(0, n):
ele = int(input())
lst.append(ele)
print(lst)
# getting odd numbers and even numbers from list and compute average
odd_sum = 0
even_sum = 0
odd = 0
even = 0
for i in range(0, n):
if lst[i] % 2 == 0:
even_sum = even_sum + lst[i]
even = even + 1
elif lst[i] % 2 > 0:
odd_sum = odd_sum + lst[i]
odd = odd + 1
odd_avg = odd_sum/odd
even_avg = even_sum/even
print("there were",odd,"odd numbers in input")
print("there were",even,"odd numbers in input")
print("average of odd numbers in the list",odd_avg)
print("average of even numbers in the list",even_avg)