Answer: The system analyst is one of the most important members in any organisation. These system analyst has to analyse different data of the organisation which would help to bring out the different any new business policy changes or any kind of improvement.
Explanation:
An example to know this better would be the system analyst of a telecom company. Here the role of the system analyst would be bring out the design and implementation of new telecom information system and also should be aware of previous data of the organization. The system analyst would also be responsible to bring out the new business policies based on latest telecom standards and ensure the systems conforms to the latest standards.
 
        
             
        
        
        
Answer:
Currency
Explanation:
Since sales are in money, and currency shows money, Currency is our answer
 
        
                    
             
        
        
        
Answer:
microsoft windows, macOS, and linux
Explanation:
if you need help let me know
 
        
                    
             
        
        
        
import random
def random_number_file_writer(nums):
    f = open("random.txt", "w")
    i = 0
    while i < nums:
        f.write(str(random.randint(1,500))+"\n")
        i += 1
    f.close()
def random_number_file_reader():
    f = open("random.txt", "r")
    total = 0
    count = 0
    for x in f.readlines():
        total += int(x)
        count += 1
    print("The total of the numbers is "+str(total))
    print("The number of random numbers read from the file is "+str(count))
def main():
    random_number_file_writer(int(input("How many random numbers do you want to generate? ")))
    random_number_file_reader()
main()
I hope this helps!
 
        
             
        
        
        
Answer:
true
Explanation:
An intranet is a computer network for sharing information, collaboration tools, operational systems, and other computing services within an organization, usually to the exclusion of access by outsiders. ... Intranets can also be used to facilitate working in groups or via teleconferences.