The kind of website which would best suit Hayne's needs is a: C) Dynamic website.
A website is the collective name that is used to describe series of interconnected webpages having a unique domain name.
Basically, a website is an HTML document which comprises codes, tags, images, audios, and videos that are integrated to make them responsive and interactive with clients (end users).
In Computer and Technology, there are four (4) main types of website and these include:
A dynamic website is a type of website which is designed to contain information that automatically changes based on the client, time zone, time of the day, language, services, and other factors.
In this scenario, the kind of website which would best suit Hayne's needs is a dynamic website because his services, tips or contact information may change.
Read more: brainly.com/question/21694571
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:
True vitamins and minerals dissolves in water
Answer:
wertweabcd
Explanation:
The LPAD() function left-pads a string with another string, to a certain length.
LPAD(string, length, lpad_string)
Parameter Description
string: Required. The original string. If the length of the original string is larger than the length parameter, this function removes the overfloating characters from string
length: Required. The length of the string after it has been left-padded
lpad_string: Required. The string to left-pad to string.
In example;
SELECT LPAD("SQL Brainly", 20, "ABC");
Output : ABCABCABSQL Brainly