Answer:
Option D. Persuasive writing style
is correct answer.
Explanation:
- Alice should adopt the persuasive writing style as she wants to convince the people to adopt eco-friendly methods of living.
- When a person write persuasively, this means he/she will present justifications and reasons for that specific opinion he/she is trying to convince the audience.
- For the correctness of their opinion, different kinds of evidences are prepared so that the fact persuade the reader.
- Persuasive writing is used widely while writing academic papers, advertisements and argumentative essays as well.
<h2>
</h2><h2>
i hope it will help you!</h2>
There is a equal amount I guess free points for me
Answer:
Option A is the correct choice answer for the above question.
Explanation:
In an MS-Powerpoint document, when a user wants to copy the selected shape and drag that shape for use in slides then he needs to--
- Select the shape
- Press the Ctrl key and
- drag that shape on the slide of the powerpoint.
Then the user gets the shape on the slide for their personal use.
The question scenario also suggests the same which is described above. hence Option A is the correct answer while the other is not because--
- Option B suggests 'ESC' which is used to escape any running program.
- Option C suggests about ALT key which is of no use for the MS-Powerpoint document.
- Option D suggests about TAB key which is used to make the space between two texts or diagram.
Answer:
import random
def simulate_observations():
#this generates an array of 7 numbers
#between 0 and 99 and returns the array
observations = random.sample(range(0, 100), 7)
return observations
#here,we call the function created above and print it
test_array = simulate_observations()
print(str(test_array))