Answer:
Advantages Disadvantages
It is easy to explore and find your way around the system using a WIMP/ GUI interface They need significantly more memory (RAM) to run than other interface types
You do not have to learn complicated commands They use more processing power than other types of interface
Explanation:
The Excel tool you are speaking of is "the solver".
Answer:
print("hello world")
Explanation:
a hello world program is simply a program that prints out hello world.
for this you would need to remember to have the same number of brackets on each side and to write print. Also remember when printing to include speech marks.
Answer:
def filter_strings(data_list):
string_list = []
for s in data_list:
if type(s) == str and len(s) > 5:
string_list.append(s)
return string_list
Explanation:
Create a function called filter_strings that takes data_list as a parameter
Initialize a new list to hold the strings that are longer than 5 characters
Initialize a for loop that iterates through the data_list
Check the elements if they are string - use type function, and if their length is greater than 5 - use len function. If an element satisfies the both conditions, put it to the string_list
When the loop is done, return the string_list
We need to see the word to know what it looks like to answer your question.