Wrong password ?Maybe it’s have to be the same
Answer:
The correct answer to this question is given below in the explanation section.
Explanation:
The correct answer is Home.
Indentation is useful to make the document easier to read. To increase the indentation of the paragraph, you press the increase indentation in the <u>Home</u> tab.
you can increase/ decrease indentation in Home tab under the Paragraph groups of command.
Othe options are not correct because:
View tab has settings related to how the document looks like. Insert tab has settings related to the insertion of image, shape, pages, tables, illustration, and links, etc into a document. The review tab allows you to review the document with different available settings.
The best answer to this question would be
encapsulation
Payload data is part of a packet that is within a TCP or a
UDP. It is the actual or essential data that is being carried within a packet.
For instance, a layer 2 Frame has a payload of a layer 3 packet and a layer
packet has a payload of layer 4 Segment. This simply can be called
encapsulation. Each layer in the examples mentioned builds a PDU by adding a
header containing control information to the PDU.
1: Henry Ford
2: Hot-air
3: Steam
4: the Wright Brothers
5: It may be B. I don't know for certain.
6: B?
Sorry I don't know the rest of these. :/
import random
to_guess = random.randint(1, 1000)
count = 0
guess = 0
while guess != to_guess:
guess = int(input("Guess a number between 1 and 1000? "))
while guess < 1 or guess > 1000:
guess = int(input("Whoops, guess a number between 1 and 1000? "))
count += 1
if guess > to_guess:
print("Your guess is too high! Try a lower number.")
elif guess < to_guess:
print("Your guess is too low!. Try a higher number.")
print("You got it! The number is " + str(to_guess)+" and you got it in " + str(count) + " guesses!")
I hope this helps!