Answer:
Explanation:
The following code is written in Python. It uses the imports the turtle class in order to be able to draw a blue square with 100pixels per side and then a red circle with a diameter of 100 pixels that fits perfectly inside the square.
import turtle
t = turtle.Turtle()
#Make Square
t.fillcolor('blue')
t.begin_fill()
t.back(50)
for i in range(4):
t.forward(100)
t.left(90)
t.end_fill()
#Make Circle
t.forward(50)
t.fillcolor('red')
t.begin_fill()
t.circle(50)
t.end_fill()
First questions answer is : K
……
Second question :
To solve these questions you take 8 digits and look for them in the table ~
01001000 H
01000101 E
01001100 L
01001100 L
01001111 O
Answer : HELLO
I believe the answer is D. <span>use the Help feature of Outlook
In general, f1 is the shortcut to access help feature in almost all computer program.
Other than using this method, Donna could also use 'tell me what to do' phrase in the query box in order to access the feature.</span>
Answer:
c
Explanation:
i guess bcs i didnt learn this actually