Using the drop-down menu, complete these sentences to describe algorithms. Algorithms are instructions to solve a problem. Algorithms are when written in a programming language. Algorithms are step-by-step instructions for or to follow to solve a problem. Programmers use algorithms to and .

Answers

Answer 1

Answer:

Algorithms are instructions to solve a problem

Explanation:

Answer 2

Answer:

1. step by step

2. computer programs

3. a person

4. a computer

5. solve logic problems

6. start writing new programs

Explanation:

i just did it and got them all right


Related Questions

Using this feature keeps the message thread intact.


Reply

Opt out

New message

Signature

Answers

Answer:

Option 1: Reply is the correct answer.

Explanation:

Emails are used for business and official communications.

Let us look at the options one by one

Reply:

The reply option opens the email editing window. When the reply option is used the emails then are arranged in the form of a message thread. So the reply option keeps the message thread intact.

Hence,

Option 1: Reply is the correct answer.

HELP!!!!!!!!!!!

A program that converts a program to binary all at once and runs the entire program when finished with the conversion
Group of answer choices

Complication

Compiler

Function

No answer text provided.

Answers

Answer: Compiler

Explanation:

Help brainliest True or False

In Python, the first character in a string has an index position of one.
TRUE/False

Answers

Answer:

False

Explanation:

Hope this Helps! :)

Answer:

False

Explanation:

The first character in the string has an index of 0

Do you think it's better for a young designer to use free, open-source art programs or to pay for commercial programs? Explain your answer, but come up with at least one counterargument that forces you to defend your position when you explain why you think one option is better than the other.

Answers

Answer:

The young designer should use free open-source art programs for his designs. The designer can create new tools and get and update a verse collection of design tools in the software.

Explanation:

An open-source program is a software or application whose source code is available for changes, upgrade and sharing within the public.

Rather than in closed-source software where all upgrades and changes are made only by the tech-company with the license, and the expensive nature of the purchase, the open-source code programs are mostly free with a general public license.  

Energy requirements of analog and digital signals.

First to get the correct answer is brainliest!

Answers

Analog signals require more energy.

Analog=Constant flowing modulated

Digital is bursts of on/off binary data.

Answer:

Explanation:

Analog requires more energy but I’m still trying to figure out what digital is please let me know if you found the answer

a certain kind of fish in the ocean eats only algae. a seal eats this fish a bear eats the seal .when the bear dies,it’s recycled by bacteria

Answers

Answer:seal

Explanation:

which of these exemplifies an iterative process
A: you walk to school everyday with a friend
B: you do homework at a different time each day
C: sometimes you eat breakfast at school and something you eat at home
D: you write a research paper, review it, revise it, review it again, revise it again

Answers

Answer:

its D

Explanation:

took the test

Answer:

d

Explanation:

Jason works for a restaurant that serves only organic, local produce. What
trend is this business following?

digital marketing
green business
e commerce
diversity

Answers

Answer:

green buisness

Explanation:

green business because it’s all natural and it’s organic

How do I do this? Can someone please tell me.

Answers

Answer:

Below is a quick example of how to do it.  Note though that the instruction to output "annual rainfall to one decimal place" sounds erroneous to me, as I would expect the numbers to be entered as integers (but perhaps I'm wrong).

In my opinion it would be far more sensible to round the average to a single decimal place instead.

start a running tally at zero

set "aboveTally" to zero (this will be used to count which months are above the average)

for each month{

   prompt for rainfall that month, storing it in an array

   Also add that value to the running tally

}

average = tally / 12

// Output list of month's rainfalls, and get a tally of those above average

for each month{

       print month + ": " + amount input for this month

       if total for month > average: aboveTally++

}

//output total anual to one decimal place:

print "total anual rainfall: " + (int)(tally * 10) / 10

//output number of months above the average:

print "Number of months above averayge: " + aboveTally

Based on the following passage on construction technology during the Middle Ages, why might a worker not be allowed to join a guild?
During the Middle Ages, a family worked in a trade for generations, with fathers training sons and passing knowledge along bloodlines.
Masons learned how to carve elaborate gargoyles; glaziers made intricate stained-glass windows. These skilled workers were organized into
guilds, and on a construction site, guild workers were highly esteemed while lower-level unskilled workers completed simple routine tasks.
All laborers were paid.

He did not pass the necessary exams to qualify for guild membership

He had signed a contract forgoing payment in exchange for on-the-job training.

He was not born into a family of skilled laborers

His specialty did not fall under masonry or glazing.

Answers

Answer:

He was not born into a family of skilled laborers

Explanation:

Suponiendo que el centro de la gravedad de la barra se enchentra a 3 m del punto de apoyo,y su contrapeso, de 4800 N, se encuentra a la distancia indicada en la figura, ¿Cual deberia ser el peso de la barra para que la barrera este equilibrada?

Answers

Answer:

C

Explanation:

because...

In this lesson you wrote code to make the turtle draw squares. Briefly describe how the code for
crawing a rectangle would be different than drawing a square. (Example rectangle at right)

Answers

Explanation:

that programming language you must use?

The role of the
protocol is to make sure communication is maintained.
FTP
IP
ТСР
HTTP

Answers

Answer:

Tcp

Explanation:

What potential problems could come up if I tried to use a function without knowing what it does or how to interact with it?

Answers

Answer:

You won't get the result you are expecting. Or you may get a result, you just don't know what it represents. Or the function could do any number of other things that may effect values already stored in the instance of the class that you weren't intending. It all depends on what the function is and how dependent other things are on it.

Answer:

My friend wants to use my findSmallest() function in her program. Is this function ready to be shared in a library? Why or why not? This is the answer to the next question.

Explanation:

No, this code is not ready to be shared in a library. This is because this code has a global variable that will only allow the code to work for one case and cannot be applied to other problems my friend might have. This function also does not have a return call which will result in no answer when fed with an input.

In video game development, the person who oversees and directs the entire design team and is the key vision keeper is
the

Answers

Answer:

The Lead Designer

Explanation:

The Lead designers main role is to oversee how a game looks and is played. They manage a, normally small, design team. They work with them to come up with many aspects of the game itself like; characters, props, and plots to the game. they also, makes sure that the team itself stays on track, is within budget, and meets the designated deadlines.

Do you need a internet browser to go to the intrnet?​

Answers

Answer:

No you do not need a interent browzer to get to the internet.

Explanation:

Not sure but I don’t think so

Complete the static method stringSearch, which returns a String that tells where the first occurrence of the characters (chr) were found ("The characters were found at ____ index.") or it says, "Those characters could not be found." The String to be searched (phrase) and the characters that are being looked for (chr) are passed in as arguments. (9 points) public static String stringSearch (String phrase, String chr) { ** Complete the code ** }

Answers

Well can't do it for you but try using that phrase argument with string compare functionality

Match the example with the type of collection.

{'casa': 'house'}


[3, 5]


(3, 5, 'dog')

Answers

Answer: First is a dictionary, second is a list, and third is a tuple

Explanation:

You created a two-dimensional array with the following code.

>>> A = [21, 'dog', 'red']
>>> B = [35, 'cat', 'blue']
>>> C = [12, 'fish', 'green']
>>> E = [A, B, C]
How do you refer to 'cat'?

E[1, 2)

E[1,2]

E[1][2]

E[1,2]

Answers

Explanation:

My answer is E[1][1]

but I don't see it here

Answer:

E[1][2] that is correct I just took t

Why was the Internet first developed? Use details and information to explain your answer.

Answers

Answer:

for military purposes,

Explanation:

and then expanded to the purpose of communication among scientists. Unlike the telephone network, the Internet uses packet switching. Packet switching was invented by three different independent research groups around the world.

What types of data can you filter using the
AutoFilter tool? Check all that apply.
text
numeric data
images
sound
DONE

Answers

Answer: A and B

Explanation: just did it on edge

Which of the following is a palette of colors, fonts and special effects which complement one another?
O Placeholders
O Theme
O Background
Slide Masters

Answers

Answer:

Theme

Explanation:

Please explain what Level 5 Automation is and give 2 examples of the technology.

Answers

Level 5 ( Full Driving Automation ) Level 5 cars won't even have steering wheels or acceleration / braking pedals . They will be free from geofencing , able to go anywhere and do anything that an experienced human driver can do .

Pls follow me and Mark as brainlest!!! :-)

HELP ASAP! prompt what is search engine?

Answers

Answer:

Prompt Search allows a user to set a keybinding that when activated will open a small popup search bar. This allows the user to search their search engine of choice from anywhere within chrome. It also supports command line style interaction where users can use the up and down arrow keys to navigate previous searches.

Answer:The search engine is a software system that is designed to search the information about anything on the world wide web.

Explanation: got it correct edge

Please explain what Level 5 Automation is and give 2 examples of the technology

PLEASE ANSWER

Answers

Answer:

Automation is the process by which AI is adapted, trained, and refined to perform actions that are similar/mimic those of human behavior and actions There are 5 levels to automation, 0 being the lowest and 5 being the most "autonomous" and independent.Level 5 automation is complete control of the action essentially a true self-driving car that can go anywhere and at any time, assuming that a human driver could do the same.This is based under the assumption that the human can perform the same action as the AI.Fully autonomous vehicles Robot Conveyer belt

KeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnnKeyonnn

Answers

Answer:

Hey

Explanation:

Thank.you for your comment!

Which field in the contacts form is used to control the order in which contacts are displayed in the current view.

Answers

Answer: File as

Explanation:

A contact form is simply refered to as a web based form which is usually short and then published on the website which can be filled out by people in order to pass a message across to the person who owns the site.

The field in the contacts form that is used to control the order in which the contacts are displayed in the current view is "File As".

Why is data such a powerful form of evidence?

Answers

It proves the claim right being factual

Which details in paragraphs 1-5 contrast with your experience and expectations?

Based on these details,what do you think the setting of the story is?

Answers

Answer:

among us

Explanation:

What is the output?
X = 9 % 2
if (x == 1):
print ("ONE")
else:
print ("TWO")

Answers

Answer:

ONE

Explanation:

9 % 2 = 8 remainder 1

mod is asking for the remainder, so x = 1.

Since x equals 1, it will print ONE.

Other Questions
jacobson v. massachusetts is the supreme court for or against getting vaccinated what is the value of x and y? can someone help me? Hi am new. What do I do She ran 13.04 seconds per 100 meters, how fast was she running in meters per hour? How many moles of oxygen are needed to produce 2 moles of Tetraphosphorus decaoxide (P4O10) in the reaction? P4(s) + 5O2(g) P4O10(s) a. 1 mole b. 0.2 moles c. 10 moles d. 5 moles 50 POINTS PLEASE HELP WITH THIS the street of the cannon who does hidalgo first dance with and why does he ask her to dance If there's a three day rain forecast for the probability of rain , 70% Friday, 70% Saturday, 70% Sunday A) work out the probability that it will rain on all three days B) work out the probability that it will rain on exactly two consecutive days find the value x= 10, x- 2 (x+5) Please help due today {54 points} WHOEVER ANSWERS CORRECTLY I WILL MARK BRAINLIEST!! Use the timeline and your knowledge of social studies to answer the question.Which event would come next on the timeline?A. South Carolina repeals its tariff nullification B. Van Buren succeeds Jackson as President C. Congress raises the tariffD. South Carolina seceded from the Union "How Grandmother Stole The Sun" I just need to write a SAR about it it's due in an hour. Can you help me!!!!!!!!!!!!!!!!!!!!!!!!! The 49th parallel was set as the boundary between the United States and Canada by which event?A. Adams-Ons TreatyB.Convention of 1818C.Gadsden purchase D.Mexican Cession What do scientists think is thereason the mollusks have been sosuccessful through time? B How did the economic policies of the Tokugawa Shogunate affect Japan?Question 1 options:A. An increase in foreign trade enabled merchants to grow rich.B. Social classes were eliminated as wealth was redistributed.C. Mass migrations resulted from a severe economic downturn.D. Cities prospered and expanded as domestic trade thrived. help me it's about solutions of trianglesabout:-sine rule-cosine rule-area of triangles what did Mendel call genes? He used the following steps:12/1 x 3/4=36/4-36/4=9What error did Robert make?OA) Robert used subtraction rather than multiplication.OB) Robert used addition rather than multiplication.Robert forgot to find the reciprocal of beforeOC)multiplyingRobert forgot to find the reciprocal of 1 beforemultiplying.OD)