50 POINTS!!!!! WILL MARK BRAINLIEST!!!!!HURRY!!!!!
Your Python program has this code.

for n = 1 to 10:
position = position + 10 # Move the position 10 steps.
direction = direction + 90 # Change the direction by 90 degrees.

You decided to write your program in a block programming language.

What type of block do you need to accomplish what this line does?
direction = direction + 90 # Change the direction by 90 degrees.

A) event

B) voice and graphics

C) control

D) motion

Answers

Answer 1

Answer:

control

Explanation:

Repeat 10 times is a control block.

50 POINTS!!!!! WILL MARK BRAINLIEST!!!!!HURRY!!!!!Your Python Program Has This Code.for N = 1 To 10:position
Answer 2

The type of block that would be needed to accomplish the line would be C. Control

What is Programming?

This refers to the set of code that is given to the computer by a programmer to execute a task.

Hence, we can see that from the line of code that shows a sequence of numbers from 1 to 10 and to move and change the direction of the position and degree, to write this program in a block programming language, the type of block that is needed is a control block.

Read more about block programming here:

https://brainly.com/question/14525641

#SPJ2


Related Questions

g The process of a CPA obtaining a certificate and license in a state other than the state in which the CPA's certificate was originally obtained is referred to a

Answers

Answer:

Substantial equivalency.

Explanation:

An unmodified opinion on financial statements can be defined as an opinion issued by an auditor stating that there are no material misstatements and this simply implies that the, the financial statement represents a true and fair perspective.

Hence, when an investor seeking to recover stock market losses from a certified public accountant (CPA) firm, he or she must establish that the audited financial statements contain a false statement or omission of material fact in accordance with the public company accounting oversight board (PCAOB).

The process of a certified public accountant (CPA) obtaining a certificate and license in a state other than the state in which the CPA's certificate was originally obtained is referred to as substantial equivalency. Thus, this make it possible for certified public accountant (CPA) to practice in a state other than where he or she was issued the license.

create a function that draws a certain number of spaces, followed by a certain number of stars, followed by a newline.

Answers

Answer:

Explanation:

The following code is written in Python and creates a function called create_sentence which takes in 2 parameters which are the number of spaces and the number of stars. Then it uses these values to create the sentence and return it.

def create_sentence(spaces, stars):

   sentence = ""

   for x in range(spaces):

       sentence += " "

   for x in range(stars):

       sentence += "★"

   sentence += "\n"

   return sentence

In 1981, the first digital icons were launched for users in _________, which was the first computer with a GUI operating system.

Answers

Answer:

Xerox Alto

Explanation:

the first digital icons were launched for users in Xerox Alto in 1981. this was the first computer with a General user interface (GUI) operating system. It had a speed designation of 3 Mbit/s.

The xerox Alto had a huge influence in the design of personal computers in decades to come. It was the first to bring together all of the components of the GUI.

In 1981, the first digital icons were launched for users Xerox Alto which was the first computer with a GUI operating system.

It should be noted that the first digital icons that was launched is Xerox Alto in 1981. It was simply the first computer that had a general user interface operating system.

Also, Xerox Alto had a speed designation of 3 Mbit/s and had a huge influence in the design of personal computers in decades to come.

Read related link on:

https://brainly.com/question/21728252

3. What components will be found in each fragment? Reconstruct the four fragments you should be left with by typing the correct component names in each fragment.

Answers

Answer:

We attempted to strike a balance between generalities and specifics, aiming to give the reader a clear perspective of the computational approaches used in comparative and functional genomics, rather than discuss any one of these approaches in great detail. In particular, we refrained from any extensive discussion of the statistical basis and algorithmic aspects of sequence analysis because these can be found in several recent books on computational biology and bioinformatics (see 4.8), and no less importantly, because we cannot claim advanced expertise in this area. We also tried not to duplicate the “click here”-type tutorials, which are available on many web sites. However, we deemed it important to point out some difficult and confusing issues in sequence analysis and warn the readers against the most common pitfalls. This discussion is largely based on our personal, practical experience in analysis of protein families. We hope that this discussion might clarify some aspects of sequence analysis that “you always wanted to know about but were afraid to ask”. Still, we felt that it would be impossible (and unnecessary) to discuss all methods of sequence and structure analysis in one, even long, chapter and concentrated on those techniques that are central to comparative genomics. We hope that after working through this chapter, interested readers will be encouraged to continue their education in methods of sequence analysis using more specialized texts, including those in the ‘Further Reading’

Explanation:

_____ selectors are used to select elements based on elements that are adjacent to them in the document hierarchy.

Answers

Answer:

Sibling

Explanation:

Sibling elements that share the same parents are adjacent to each other The basics are one level higher The last item on the childless hierarchy is decent. The child is the immediate next itemso correct answer is sibling

What job does a back-end developer perform?
O Evaluates a computer systems vulnerabilities and weaknesses
O Handles what happens behind the scenes on websites
Handles what users see and experience on websites
O Writes code for video games​

Answers

Answer:

Handles what happens behind the scenes on websites

Explanation:

The website back end is made up of server, an application, and a database. The back-end developer builds and coordinate these components together. Back end developers manage the technical side of the websites (that is what the users do not see on the website).

The back end developer needs to know how to program using PHP, java, Python, Ruby, as well as use tools such as MySQL, Oracle, and SQL Server.

1. Write a static method named computeOddSum that is passed an array of int's named numbers. The method must compute and return the sum of all the values in numbers that are odd. For example, if numbers is {3, 10, 11, 2, 6, 9, 5} then the value 28 should be returned since 3 11 9 5

Answers

Answer:

The method in Java is as follows:

public static int computeOddSum(int [] myarray){

       int oddsum = 0;

       for(int i=0; i<myarray.length; i++ ) {

        if(myarray[i]%2==1) {

           oddsum+=myarray[i];

        }

     }

     return oddsum;

   }

Explanation:

This defines the static method

public static int computeOddSum(int [] myarray){

This initializes oddsum to 0

       int oddsum = 0;

This iterates through the array

       for(int i=0; i<myarray.length; i++ ) {

This checks for odd number

        if(myarray[i]%2==1) {

The odd numbers are added, here

           oddsum+=myarray[i];

        }

     }

This returns the calculated sum of odd numbers

     return oddsum;

   }

To call the method from main, use:

int [] myarray = {3, 10, 11, 2, 6, 9, 5};

     System.out.println("Odd sum = " + computeOddSum(myarray));

why should technology be used?

Answers

Answer: Okay

Explanation:

Technology is important because it makes you feel more secure with every area in life for both personal and business reasons. With technology advancing more people are able to have access to supplies such as fresh water and food because technology can help deliver those items to people that otherwise couldn't get it.

give five types of charts

Answers

Answer:

line graphs, bar graphs and histograms, pie charts,

can u guys tell me what is the definition of umbra​

Answers

a conical shadow excluding all light from a given source specifically : the conical part of the shadow of a celestial body excluding all light from the primary source.

When packets are routed on the Internet, the route for a particular packet is not pre-
determined. Instead, the next hop is decided by each router along the way.
How does that increase the fault tolerance of routing on the Internet?

Answers

Answer:

She notices the website is using a different font and logo, and that the emails are suspiciously worded:

Explanation:

Answer: Each router can pick a connection that's currently working and available.

Explanation: yes

Describe at least two ways social media has impacted cybersecurity.

Answers

Answer:

Its Providing Too Much Personal Information since you will be using social media to promote your own small business, you need to take extra precautions. For starters, don’t leave a trail of breadcrumbs for social media hackers. Whether you are representing yourself or your company, avoid sharing stuff like your date of birth, places where you have attended school, as well as names and pictures of your family members.

Disgruntled Employees

While it’s fairly normal for your employees to vent about working for your company, in doing so, they may inadvertently reveal more than they should. It’s a lot more common than you think, since 98% of all employees are using at least one social media platform, and as much as 50% of those are talking about their respective companies. Whether they are sharing sensitive info or posting pictures from their workplace, they may end up sharing something that might hurt your business.

Explanation:

Answer:Its Providing Too Much Personal Information since you will be using social media to promote your own small business, you need to take extra precautions. For starters, don’t leave a trail of breadcrumbs for social media hackers. Whether you are representing yourself or your company, avoid sharing stuff like your date of birth, places where you have attended school, as well as names and pictures of your family members.

Disgruntled Employees

While it’s fairly normal for your employees to vent about working for your company, in doing so, they may inadvertently reveal more than they should. It’s a lot more common than you think, since 98% of all employees are using at least one social media platform, and as much as 50% of those are talking about their respective companies. Whether they are sharing sensitive info or posting pictures from their workplace, they may end up sharing something that might hurt your business

Explanation:

An external file that can be imported into a slide to give more detailed explanation of the topic would be ____.

Answers

Answer:

Video clip

Explanation:

In a Microsoft PowerPoint, a video clip is considered an external file. Asides from the pictures and text presented in the slide for a smooth transition of the message in the PowerPoint document, a video clip can give a more detailed explanation of the topic.

This can be done by clicking the Insert tab from a Menu bar. Then click on the Video tab followed by Movie from the file. Then look for the movie file and click insert.

Write a procedure ConvertToBinary that takes an input as a number from 0 to 16 (including 0 but not 16) and converts it to a binary number. The binary number should be returned as a list.

Answers

Answer:

function ConvertToBinary(n) {

 console.log(n.toString(2).split(''));

}

ConvertToBinary(13);

Please help!!! I am very confused about this question!

Answers

Explanation:

You mean like Sports Photography - focuses on athletes and coaches

Editoral Photography - focuses on a public story

Architectural Photography- focuses on design of buildings ,etc.

Answer:

Amateur Photography <----> focuses on capturing life events

Advertising Photography <----> focuses on enhancing desirability of products

Editorial Photography <----> focuses on providing visual news

Documentary Photography <----> focuses on social reality

Explanation: I think this should be correct, let me know if it helps :)

What is the software system design to locate information on the World Wide Web
search browser
Search engine
Search keyboard
Search result

Answers

Answer:

Search engine

Explanation:

Answer:

search engine

Explanation:

In the range E7:E11, apply the Currency number format with zero decimal places and $ as the symbol.

Answers

Answer:

bt wheres the data

Explanation:

Which position(s) in the Load Parameter contains the information on what messages are to be displayed during IPL time

Answers

Answer:

the 27th axis of y

Explanation:

The following details are contained in the eight-character LOAD parameter: The I/O definition file (IODF) VSAM data set's hexadecimal device number is specified by the first four characters (characters 1 through 4 of the LOAD parameter).

What Load Parameter contains the information?

IPL message suppression, IPL prompting, IPL prompting for the system starting mode, and the debug mode for installation from disk can all be controlled using the IPL load option.

Not every disk connected to a CPU has loadable software on it. A disk that meets these requirements is commonly known as a "IPLable" disk, and the SYSRES volume is one such volume. A bootstrap module can be found on IPLable drives at cylinder 0 track 0.

Therefore, A notice or prompt should be displayed at IPL time, according to the seventh position.

Learn more about Parameter here:

https://brainly.com/question/14664840

#SPJ2

You are researching the newest operating system for the computers in your office. One particular site you found useful is a personal blog by a software engineer. Is this an objective source

Answers

Answer:

No. It is not.

Explanation:

Before an online source can be considered objective it should either contain the advantages and disadvantages of the argument. This implies that it should satisfy both sides of the point. Or better still it should come from the website such as educational (.edu), government (.gov), military (.mil), Organization (.org)

Though, given that the author is a software engineer, it can be considered accurate, reasonable, and reliable. However, since it is a personal website the motive of the software engineer in writing the post might make it subjective and deliberately exclude certain information.

Hence, in this is the case, it is not an objective source.

what is the moon in science class?

Answers

Some big ball of cheese that glows or something

With the use of technology and digital files increasing daily, do you think it is necessary for experts to be trained in document and handwriting analysis

Answers

Answer:

Yes.

Explanation:

In this case, it is believed the expert that is being referred to as an expert witness is a "Forensic document examiner. The forensic document examiner is an expert in determining the authenticity or credibility of a document by analyzing the originality of the document, such as handwritings signatures, a history of the documents, etc.

Hence, despite the use of technology and digital files increasing daily, it is still necessary for experts to be trained in document and handwriting analysis because they need to understand the originality of documents and signatures that involve the computerized handwriting of individuals.

If a standard microdrop infusion set is used to administer 100 mL of an infusion over a 2-hour period, calculate the rate of delivery, in drops/min.

Answers

Answer:

[tex]Rate = 16.67\ drops/min[/tex]

Explanation:

Given

[tex]Volume = 100mL[/tex]

[tex]Time = 2\ hours[/tex]

Required

Calculate the rate of delivery

This is calculated using:

[tex]Rate = \frac{Volume}{Time}[/tex]

Substitute values for Volume and Time

[tex]Rate = \frac{100mL}{2\ hours}[/tex]

Convert 100mL to drops

[tex]Rate = \frac{100 * 20 drops}{2\ hours}[/tex]

[tex]Rate = \frac{2000 drops}{2\ hours}[/tex]

Convert 2 hours to minutes

[tex]Rate = \frac{2000 drops}{2 * 60\ min}[/tex]

[tex]Rate = \frac{2000 drops}{120\ min}[/tex]

[tex]Rate = 16.67\ drops/min[/tex]

What kind of operating system is Windows? I

Answers

Huh? I don’t understand
computer operating system

4) Name ways in which a government could use computers to control its
citizens.
5) Describe at least two social changes brought about by communication
technologies.
6) How does a service economy differ from a production economy?
7) Name three ways in which TV has affected our culture.
8) Define ethical.
I
9) Why does digital editing raise ethical problems?
10) What is a computer virus?

Answers

A computer virus is what takes over a computer and ruins everything. It can spread from device to another device.

Nia is editing a row in an Access table. The row contains the Pencil icon on the left end of the record
this icon indicate?
A. The record is committed.
B. The record has not been written.
C. The record has been written.
D. Nia is editing the record currently.

Answers

Answer:

The answer is D

Explanation:

That little pencil reminds you that you are entering or editing the current record, and that the changes you are making are not yet saved. The little pencil disappears as soon as you move off the current record. Take that as confirmation that Access has saved your new record, or the changes you made to an existing one.

In the case above, The row has the Pencil icon on the left end of the record this icon indicate Nia is editing the record currently.

What is record?

A record is known to be the state or fact of an act been put down or is been recorded.

Note that In the case above, The row has the Pencil icon on the left end of the record this icon indicate Nia is editing the record currently as it shows the pen icon.

Learn more about record  from

https://brainly.com/question/25562729

#SPJ9

Need help please asapp

Answers

Answer:

B

Explanation:

0.05 is the decimal form of 5%

So the sale amount times 0.05 will give the tax amount

Hope this helps!

when should you integrate technology?​

Answers

Nolur acil lütfen yalvarırım yalvarırım lütfen yalvarırım when should you integrate technology?
Online learning and blended classrooms

The rule for creating CAD drawings is that a computer drawing should be created ____ using real-world units.

Answers

Answer:

true size

Explanation:

The CAD drawing is an example of the details of the components of an engineering project. Uses CAD (Computer Aided Design) software to create drawings used throughout the design project, from conceptual design to construction or assembly.

You can control the size of the virtual drawing area in the model space by specifying the drawing boundary

Using the CAD drawing we can use the correct size of the specification project. The original unit can be used due to the sheet size.

Ask the user to type in an integer greater than 50 and assign it to a variable called x. Write a program to calculate the sum of squares of positive integers. The loop should stop when the sum is greater than x. At the end of the loop print how many numbers were used to calculate the sum. For example, if x is 100, sum will be 91, and six numbers (1 to 6) were used to calculate sum.

Answers

Answer:

The solution in Python is as follows:

num = int(input("Number: "))

if num>50:

    sum = 0

    count = 0

    for i in range(1,num):

         count = count + 1

         sum = sum + i**2

         if sum > num:

              sum = sum - i**2

              count = count - 1

              break;

   

    print("Sum: "+str(sum))

    print("Numbers: "+str(count))

else:

    print("Number must be greater than 50")

Explanation:

The condition stated in the question do not conform with the example. The question says, the loop should stop when sum > x.

But:

When x = 100 and sum = 91, the program loop should not stop because 91 is not greater than 100.

However, I'll answer based on the example given in the question.

This prompts user for number

num = int(input("Number: "))

The following if condition is executed if number is greater than 50

if num>50:

This initializes sum to 0

    sum = 0

This initializes count to 0

    count = 0

The iterates through the inputted number (e.g. 100)

    for i in range(1,num):

This increases the count

         count = count + 1

This calculates the sum of square of the positive integer

         sum = sum + i**2

The following removes excess number from the sum

         if sum > num:

              sum = sum - i**2

              count = count - 1

              break;

This prints the calculated sum    

    print("Sum: "+str(sum))

This prints the count of number used

    print("Numbers: "+str(count))

The following is executed if user input is less than 50

else:

    print("Number must be greater than 50")

Is Tom Clancy's The Division 2 a Good Game?

Answers

Yeah it is you should get it
Other Questions
Find the value of x in the figure.(4x-5)177(4x-3)(3x-3)118(3x+6) How would you describe attraction?How would you describe repulsion? Four spheres of radius 6cm just fit inside a cylinder. Calculate the volume inside the cylinder that is empty. Leave your answer in the terms of pi Why is it significant that protesters over took the capitol building?Plzz help meee Me ayudan es para ahora doy corona help please!!!! would really appreciate it Which two mantle hot spots are located at mid-oceanridges? Guide Questions:1. How did you come up with your answer? How do you feel about it?2.Based from the activity above, do you think every adolescents would experiencethe same? Why? Solve for k. 1 + 3k = 10 The radius of a vanadium atom is 130 pm. How many vanadium atoms would have to be laid side by side to span a distance of 1.30 mm Max's shop sells stuffed teddy bears. Today, Max sold 7 teddy bears for a total of $122.50. Which equation can be used to find b, the cost of each bear? A person who is worried that he may have inherited the gene mutation for Huntington disease is told that he has the wild type form of this gene. What is the best interpretation of this finding What pathway does the air that enters your body take?a. nose, esophagus, larynx, bronchi, lungsb. nose, pharynx, bronchi, larynx, tracheac. nose, pharynx, lungs, trachea, larynxd. nose, pharynx, larynx, trachea, bronchi, lungs How many pounds are equivalent to 40 ounces? Rahul runs a distance of 12km with an average speed of 4.5 km/h andRita runs 1.6 km within 15 minutes. Whoruns faster? Which function has exactly three distinct real zeros?OA. h(x) = (x-9)2(x-4)2OB. h(x) = x(x + 7)?O a.C. h(x) = (x - 3)(x + 1)(x + 3)(x + 8)OD. H(X) = (x - 2)(x + 4)(x - 1) Write the equations of motions The number of people living on a remote island decreases by 9% every 10 years. In 1950 there were 18000 living on the island. Calculate how many less people will be living on the island in 2020. The point (2, 5) is represented on the graph. Which point also belongs on this graph? 1.105 RMB =2. 10.500 RMB3.2.300 RMB =4. Rp. 15.000 =5. Rp. 32.000 =6. 5500 USD =7. 8.000 Yen =8. 4.200 HKD =9. 6.970 Euro =10.7.400 RMB