Answer:
Because 2 people are already answering it.
Explanation:
What is net pay?
What is net pay?
Answer:
Net pay is an employee’s earnings after all deductions are taken out. Obligatory deductions such as the FICA mandated Social Security tax and Medicare are withheld automatically from an employee’s earnings. Other deductions come in the form of benefits, which may be optional. Health, dental and vision insurance, life insurance, or a retirement fund may be offered through an employer. These costs will come in the form of a deduction from the employee’s gross pay, or salary.
I am coding a turtle race in python I have to Use a single call to forward for each turtle, using a random number as the distance to move
import turtle,random
s = turtle.getscreen()
t1 = turtle.Turtle()
t2 = turtle.Turtle()
t3 = turtle.Turtle()
t2.penup()
t2.goto(1,100)
t3.penup()
t3.goto(1,200)
while True:
t1.forward(random.randint(1,10))
t2.forward(random.randint(1,10))
t3.forward(random.randint(1,10))
if t1.xcor() >= 180:
print("Turtle 1 won the race!")
quit()
elif t2.xcor()>= 180:
print("Turtle 2 won the race!")
quit()
elif t3.xcor() >= 180:
print("Turtle 3 won the race")
quit()
I hope this helps!
Answer:
if you mean to set a speed. Im not sure. however, move turtle.forward(random number) i can do
import turtle
import random
random_int = random.randint(20, 1000)
win = turtle.Screen()
turtle_1 = turtle.Turtle()
turtle_1.forward(random_int)
win.mainloop()
The binary number represented by the voltage graph below is
Answer:
4
Explanation:
Answer: 11010100
here ya go :)
Select all that apply.
What features must be completed from the Master Page screen?
Inserting headers or footers
Inserting a watermark
changing the template
Inserting a table
Answer:
Inserting headers or footers Inserting a watermarkExplanation:
A Master Page is a page which can be used with the majority of the documents of your paper as a reference. Master pages may have visuals elements, such as headlines, footers, column headings, etc that occur on all publishing pages.
What are the letter that go under each note?
Answer:
A, B, C, D, E, F, G pls mark me brainliest see explanation below
Explanation:
those are the letters if you search up letters for music you can find them way easier than me explaining and you will also learn faster. please mark me brainliest
Answer:
a b c d e f g
Explanation:
The internet's data gathways rely on what kind of hardware devies to route data to its destination?
Answer:
router
Explanation:
2. List at least three signal words the professor uses in the video. How did he use the signal
words?
Answer:
cherry
van
red
George
gold
Create a program that draws a rectangle whenever you click the mouse. The rectangle should have a width of 30 and a height of 50 and be centered at the place where the user clicks. Remember, the position of a rectangle is the top left corner. To place the rectangle at the center of the click, you will need to adjust the position.
Answer:
RECT_HEIGHT = 50
RECT_WIDTH = 30
rect = Rectangle(50,30)
# random.choice returns a random value from the COLORS
# function will draw a rectangle at x, y
def draw_rect(x, y):
rectangle = Rect(50, 30)
rect.set_position(x, y)
rect.set_color(Color.green)
add(rect)
# Link to the mouse click event
add_mouse_click_handler(draw_rect)
Explanation: Hope this works for you.
What is unique about a dual-axis chart
Answer:
B: Data is charted by two different types of data.
Explanation:
Got it correction edge.
Answer: B: Data is charted by two different types of data
Explanation:
i just answered it on edge
what are output devices ?
name them
Answer:
Monitor.
Printer.
Headphones.
Computer Speakers.
Projector.
GPS.
Sound Card.
Video Card.
Explanation:
A central message that’s communicated by a writer or speaker is called
Answer:
C: the main idea
Explanation: ..
A scatter plot can be used with both numerical and non numerical values. True or False?
Answer:
true
Explanation:
Mingji is working to transfer photos from her digital camera to her computer. While
reading her camera's user manual, she sees that she doesn't need to use a USB cord to
make the transfer. What type of digital camera does Minji have?
Answer:
digital camera with bluetooth
Explanation:
Bluetooth is defined as a wireless technology with the help of which data and information such any images, documents, files, etc can be send to other devices equipped with bluetooth technology over a short distance with the use of UHF radio waves.
Bluetooth technology help in exchanging data with out the use of a USB cable.
In the context, Minji is having a digital camera with bluetooth technology as she can transfer her photos from the camera to the computer with out the help of any USB chord.