Answer:
last known good configuration
Explanation:
If you're having difficulties starting Windows, the Last Known Good Configuration, or LKGC for short, is a technique to get it started. It loads the drivers and registry data from the last time you began and shut down your computer successfully.
Answer:
The answer is Live Preview.
Explanation:
<em>Live Preview is a Powerpoint tool that helps the user to find out how a singular choice will change the appearance of the presentation, without committing any change. This application allows the user to edit any slide and see the changes without any risk of damaging the rest of the presentation.</em>
<em>It lets the user see how an actual change will look on the slide object before the user decides to accept or decline the change.</em>
<em>It is a powerful resource, because we know how handful it is to prepare a powerpoint presentation.</em>
Answer:
A. using a hook in his opening
B. detailing the speech’s objectives
E. letting his audience know what to expect
Explanation:
Opening his speech using a quotation is a strategy of using a narrative hook, or simply hook, by Ian. Giving a grand and enticing opening is what makes an audience to pay attention and listen to what the speaker has to say in his speech. So, first strategy used by Ian is using a hook in his opening.
Another strategy used by Ian is giving objective details of his speech. By outlining what he will be covering in his speech, Ian is letting his audience know what to expect from the speaker and his speech, and also gave details of his speech.
So, option A, B, and E are correct.
When Microsoft donated copies of Word program to colleges
and universities, the company Microsoft is using a Marketing Strategy in
promoting the product. A good promotion will help the product to be known and
by words of mouth it will basically promote the product and the users will
definitely give comments on how the product performs.
Answer:
Explanation:
#Using python to create the list
#first we create an empty list to store our numbers.
import math
data = []
x = 0
InputSum = 0
NumInput=int(input("how many number do you want to add"))
while x <=(NumInput):
Input=int(input("Enter the numbers here"))
data.append(Input)
x = x+1
InputSum = InputSum + Input #this is to add the numbers entered
print("The number you entered are ")
print(*data) #this print the numbers entered
print("The sum of the numbers is", InputSum)