Answer:
Michael's team require an scheme called blueprint in the presentation because blueprints are a definitive description of the final product or system.
Explanation:
The reason behind this answer is that this is a presentation to present a project to a certain public. The public has to be convinced to carry on the project. However, Michael's team can only provide a scheme or in this case a "blueprint" which is a very detailed description of the final product or system. They could also use model but models are not descriptions.
What are the choices?
Message Boarding is the asynchronous electronic that is know as a forum.
Answer:
The location of A on the grid is (-200, 100).
Explanation:
Because A is left of the origin 200 units, the x-coordinate will be negative 200. Also, A is above the origin 100 units, so the y-coordinate will be positive 100. Therefore, the answer is C, or (-200, 100).
Answer:
- def show_students(message, sList):
- print(message)
- print(sList)
-
- print("Our students are currently in alphabetical order")
- sList.sort()
- output = ""
- for student in sList:
- output += "-" + student
- print(output)
-
- print("Our students are currently in reverse alphabetical order")
- sList.sort(reverse=True)
- output = ""
- for student in sList:
- output += "-" + student
- print(output)
-
- show_students("Welcome to new semester!", ["Aaron","Bernice", "Cody"])
Explanation:
Firstly we declare a function that will take two inputs, message and student list (Line 1).
In the function, we first print the message and the original input student list (Line 2 - 3). Next, we use sort method to sort the input list and then output the sorted items from the list using a for loop (Line 5-10).
Next, we sort the list again by setting reverse = True and this will sort the list in descending order (Line 13). Again we use the similar way mentioned above to output the sorted items (in descending order) using a for loop (Line 14 -17)
We test the function using a sample student list (Line 18) and we shall get the output:
Welcome to new semester!
['Aaron', 'Bernice', 'Cody']
Our students are currently in alphabetical order
-Aaron-Bernice-Cody
Our students are currently in reverse alphabetical order
-Cody-Bernice-Aaron
Answer:
I think H1
Explanation:
because h1 can make the letters begger