Answer:
The "Turtle" is a method and should be declared with parenthesis and every other method in the code (except the Turtle() ) should begin with lowercase letters like right, forward and begin_fill. The python file should not be saved as turtle.py to avoid import error.
Explanation:
The python turtle module is a graphical programming package created to introduce programming to children. It has several classes and methods to manipulate objects on the screen.
import turtle
bot = turtle.Turtle()
step =(50)
turnAngle =90
bot.color("blue")
bot.begin_fill()
bot.forward(step)
bot.right(turnAngle)
bot.forward(step)
bot.right(turnAngle)
bot.forward(step)
bot.right(turnAngle)
bot.forward(step)
bot.right(turnAngle)
bot.end_fill()
BUYING A NEW COMPUTER
Scott is getting a new computer. He has three options for secondary storage. He could
choose
a 6TB hard disk drive
a 2TB solid state drive
a hybrid 500GB solid state with a 4TB hard disk
For each option provide some reasons why Scott may choose that option instead of the
alternatives.
IS
6 TB- Choose this if you are getting the computer for work use, always pick the highest amount of storage for everyday use.
2TB SSD- This is the worst option because its the least among the others, but if you were just a game this may suit you.
500 GB SSD with 4TB- This would be the best option for someone who games, edits, or does graphics, because you get the storage but you also get 500 GB of SSD to load your software on, which will help it launch faster and run smoother.
If the larger gear is the
input driven and the small
gear is the output, you get
_____ multiplier?
a
Answer: A multiplier that's equal or larger than 1
Find and Explain 3 different sources of Kinetic Energy in your house that are utilized on a daily basis?
How does taking notes improve academic success? Check all that apply.
Answer:
What are the options??
Explanation:
Answer:
1,3,4,5
Explanation:
I took the assignment
Focusing on the general characteristics of a problem or object, while ignoring the details, is a technique called
O refinement
O abstraction
O decomposition
O pattern recognition
Answer:
Abstraction
Explanation:
In computer science, abstraction has a similar definition. It is a simplified version of something technical, such as a function or an object in a program. The goal of "abstracting" data is to reduce complexity by removing unnecessary information. At some level, we all think of computers in abstract terms.
Anyone have an answer for 4.9 lesson code practice
Answer:
loop
Explanation:
Answer:count
Explanation:
Elias is writing poems and is formatting several to fit on a page that has been divided into columns. Which column break would allow him to end one poem and start the next poem on the same page?
Question 6 options:
next page
sequential
text wrap
continuous
Answer:
Explanation:
Column break continous
Write a program that asks the p34won to enter their grade, and then prints GRADE is a fun grade. Your program should repeat these steps until the user inputs I graduated
Answer:
Following are the code to this question:
def fun():#defining a method fun
while True:#defining a while loop
g = input("Enter your grade: (I graduated) ")#defining variable g for input value
if g == "I graduated":#defining if block to check string value
return 0#return
print("{} is a fun grade".format(g))#use print method to print string value
fun()#calling the method
Output:
Enter your grade: (I graduated) 1st
1st is a fun grade
Enter your grade: (I graduated) 2nd
2nd is a fun grade
Enter your grade: (I graduated) I graduated
Explanation:
In the given python code, a method "fun" is defined, and inside the method, a while loop is defined, which uses a variable "g" for input value from the user-end.
In the next step, if block is defined to check string a value and return a value 0, and use the print method to print the given value, and call the above method fun.
What can you do if brainstorming only gives you a small or incomplete idea?
A. Brainstorm again
B. Develop the idea through research
C. Develop the idea through a close reading of a literary text
O
D. All of the above
Answer:
D. All of the above
Explanation:
What are three print output options available in PowerPoint?
A. Handouts, Slides, Speaker Notes
B. Outline, Kiosk, Overheads
C. Overheads, Handouts, Slides
D. Kiosk, Handouts, Computer
Answer: .A
Explanation: i got it right
Answer:
'A' on edge 2020
Explanation:
Just took the test
Documentary photographers strive to produce what type of image?
А.
Edited
B.
True
C.
Colorful
D.
Blurred
Answer:
B. :)
Explanation:
what is computer?explain any five characteristic in short.
Answer:
A programmable electronic device designed to accept data, perform prescribed mathematical and logical operations at high speed and display the results of these operations. Mainframes, desktop and laptop computers, tablets, and smartphones are some of the different types of computers.
Characteristics of Computer System:
= Speed. A computer works with much higher speed and accuracy compared to humans while performing mathematical calculations. ...
= Accuracy. Computers perform calculations with 100% accuracy. ...
= Diligence. A computer can perform millions of tasks or calculations with the same consistency and accuracy. ...
= Versatility. ...
=Reliability. ...
= Memory.
What can you do to prevent damage to a computer? Check all of the boxes that apply.
Keep your computer in a temperature- controlled room.
Tie cords in knots so they are shorter.
Dust your computer only when you see a buildup of dust.
Use surge protectors when you are away from home or school.
Answer:
temperature-controlled room and surge protectors
Explanation:
Answer:
Keep your computer in a temperature- controlled room
Dust your computer only when you see a buildup of dust
Use surge protectors when you are away from home or school
Explanation:
just good
Which best describes what happens when a formula is copied from one cell to another?
The cell references in the formula remain the same to match the cell that the formula is pasted into.
The cell references in the formula remain the same as they were in the original cell.
The cell references in the formula change to match the cell that the formula was copied from.
O The cell references in the formula change to match the cell that the formula is pasted into.
Hurry up
Answer:
b 2
Explanation:
b2
Write a function that takes the name of a file with a .csv extension (a comma-separated value file), and writes a new file that is equivalent (same name and same data) but with a .tsv extension (a tab-separated value file: like a CSV but with tabs instead of commas separating the elements of the file). Note: the character used to represent a tab is ‘\t’.
Answer:
import pandas as pd
def convert_to_tsv( csv_filename ):
df = pd.read_csv("csv_file")
df.to_csv("csv_filename.tsv", sep='\t')
Explanation:
The python program uses the pandas' module to read in the csv file in the function "convert_to_tsv". The file is saved as a tsv file with the pandas to_csv method and the " sep= '\t' " attribute.
How did New York Governor Hugh Carey handle Sostre’s situation?
Answer:
The governor found a way to free Sostre without assessing whether or not he was guilty or innocent of drug crime in buffalo.
Explanation:
Answer:
The governor found a way to free Sostre without assessing whether or not he was guilty or innocent of drug crime in buffalo.
Explanation:
correct on e2020 Dawg
The way a student prepares for a test or reviews academic material is referred to as
a study environment.
study habits.
study hall.
a study schedule.
What is NOT a built-in function in python?
sqrt()
string()
fabs()
O print()
Answer:
sqrt()
Explanation:
In python there more there 100s of core built in codes, the only one that isnt one of those is sqrt()
When and how should resources be invested to close gaps between those who do and don’t use the Internet?
Answer:
To minimize the technological gap is necessary and not so hard.
Explanation:
The first form of solving it is to minimize the need to use the internet at home, so that users could save the data in some programs which could use afterward if needed, without the internet.
Access to the documents, books, and folders without the need for the internet would be the perfect solution.
The Internet has to be accessible in school so that the students who don’t have it at home could use the most of it in school. Also, the internet connection should be available in the spots around schools, cafes, libraries during the whole day.
Make the internet affordable for everyone.
Adding Page Numbers in the Footer
Seren needs to add page numbers in the footer to her worksheet. Order the steps from first to last.
Go to the View tab and select
Click Page Number in the Design Click Add Footer at the bottom of
Save and Print Preview
Page Layout View
tab
the worksheet
Answer: 1) Go to view tab and select Page Layout view. 2)click add footer at the bottom of the worksheet 3) click page number in the design tab 4)save and print preview
Explanation: I just answered the question
Answer:
Yeah its right I tride it edge 2022
Explanation:
What is the purpose of the ISOWEEKNUM function?
determines how many workdays are in a certain week
determines how many workdays are in a certain month
determines what day of the year that date is
determines what week of the year that date is
ANSWER IS D
Answer:
d
Explanation:
just took the Q edge
Software licensed as proprietary
is usually free of cost often has lower quality than other types.
does not permit source code changes.
is rare in today's marketplace.
can be redistributed by the user at will.
Answer:
Does not permit source code changes.
Explanation:
Answer:
does not permit source code changes.
Explanation:
Which of the following BEST describes the relationship between the Boston Marathon bombing and biometrics?
Answer:
Because of the newly developed biometric technology, the FBI was able to
quickly identify two suspects.
The blurry photos released by the FBI after the bombing prompted
researchers to improve their early biometric software.
Because biometric technology was unavailable at the time, the Boston
Marathon bomber remains at large.
The Boston Marathon bombing made researchers aware of how biometric
technology is sometimes useless and ineffective.
Explanation:
The fireworks were a lantern in the sky
Answer:
So your saying thst when a firework blows then it is a big lantern in the sky???
What should students hope to get out of classroom discussions? Check all that apply.
Answer:
well you didnt put the selection but i would guess answers help a good conversation
Explanation:
Answer: classroom discussions are good, they help the students and this is kind of a discussion
Explanation:
Help me pls!!
Look at the following assignment statements:
food1 = "water"
food2 = "melon"
What is the correct way to concatenate the strings?
newFood = word1 == word2
newFood = word1 + word2
newFood = word1 * word2
newFood = word1 - word2
new food = word1 + word2 will connect both words together with no space in between. The value of newFood will now be "watermelon"
Answer:
new food = word1 + word2
Explanation:
The __________ on a mouse is used to select or place the cursor where you want on the page
Answer:
It is called a scroll wheel . mouse has two buttons, usually it's the one on the left you'll press.
To summarize means to
O. Directly quote the main idea
O. Communicate the main idea with supporting details
O. Explain the main idea’s significance
O. Condense the main idea into a few words
Answer:
To summarize is to explain the main idea in as few words as possible. So the answer is the last statement, to "Condense the main idea into a few words". Hope this helped.
Answer:
Its D
Explanation:
Hope it helped
Challenge #3: Create a network that keeps everyone connected even if one of the lines is cut Insert as many lines as needed
Answer:
To create a redundant computer network, The star network topology is adopted.
Explanation:
Note that topology is not a type of network but a top view of how the network looks like or is connected.
To make a network redundant, interconnect every computer to one another in the network, so even when a line or an ethernet cable ( the connector) makes, there is no loss of connection.
This form of network is not recommended for large computer networks as it would result in confusion due to excess connection cables running in the network.
PLS help im in the middle of this test
If someone enjoys the technical aspects of production but does not enjoy working with a large number of people, which career option might be best?
photojournalist
videographer
camera operator
print journalist
Answer:
Videographer
Explanation:
They work with a small grade while the other have to have good people skills