Answer:
1. Answering questions
2. Logging in everyday
Explanation:
By answering questions, you will earn points. By logging in everyday, I think they give you points as well. Good luck, and hope this helped! :-)
creates storyboards based on clients’ needs- Animator
assesses proposals for airplane designs to determine if they meet standards- Aeronautical engineer
uses special equipment and techniques to capture images- Commercial Photographer
creates software code, graphics, and multimedia elements for websites- Webpage designer
Answer:
```
file = open("trips.txt","r")
file = file.split("\n")
trip_date = []
fuel_used = []
miles_traveled = []
for i in file:
trip_date.append(i.split(", ")[0])
for i in file:
fuel_used.append(i.split(", ")[1])
for i in file:
miles_traveled.append(i.split(", ")[2])
```
This should put the data in their own lists (i didn't test it) but im not going to solve everything for you. The rest is for you to tinker with. You shouldn't throw your question at us and expect an answer. This is the most that I will give you.
Explanation:
The
nmap.org website
Nmap is an open source utility for security auditing and network
discovery. Many network admins also use it for networks inventory and
monitoring host or service uptime. It uses raw IP packets in novel ways to
determine what hosts are available on the network.