I believe programmer would be your answer! If there is a multiple choice, please tell me in the comments of this answer!
        
                    
             
        
        
        
Answer:
3. Paying for my daughter to attend college and building a life outside of struggle. These goals must be accomplished by me finishing school, going onto college and maybe even starting my own business. I must set an appropriate example for my daughter to learn from someone who she believes in. Starting a family business to pass down to generations will be an excellent way to start financially planning now ahead of time.
4. Living in a family of mines, common financial resource is either government assisted or public security.An expense that I cannot escape now is the caring for of my daughter which will vary as she get older. Lastly a debt would be the over spending of credit cards with no money to pay it back as the interest rates climb.
Explanation:
 
        
             
        
        
        
Technical skills is when you are advanced or know lots in Electronics. You are able to diagnose problems and fix them. They help in the computer field so much because they help fix everything if no one had these skills we wouldn’t be able to even use brainly
        
             
        
        
        
Answer:
Explanation:
Click the File tab.
Click Print, or press the control p keyboard command.
On the Print screen, select the printer and other settings.
Click Print.
 
        
             
        
        
        
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!