Choose the term so achieve the output shown.

>>>import math
>>>math. ___ (36)

6.0


•Sqr

•Root

•sqrt

Answers

Answer 1

Answer:

sqrt

Explanation:

Answer 2

Answer:

sqrt

Explanation:

sqrt= square root

sqrt of 36 is 6


Related Questions

Facial recognition software can do all of the following, except: Match photos based on facial features Generate a picture based on an eyewitness description Be used on a smartphone Search photo databases

Answers

Answer:

Generate a picture based on an eyewitness description

Explanation:

Facial recognition can only recognise faces it cannot generate new faces.

MyProgramming Lab

It needs to be as simple as possible. Each question is slightly different.

1. Given the lists list1 and list2, not necessarily of the same length, create a new list consisting of alternating elements of list1 and list2 (that is, the first element of list1 followed by the first element of list2 , followed by the second element of list1, followed by the second element of list2, and so on. Once the end of either list is reached, the remaining elements of the longer list is added to the end of the new list. For example, if list1 contained [1, 2, 3] and list2 contained [4, 5, 6, 7, 8], then the new list should contain [1, 4, 2, 5, 3, 6, 7, 8]. Associate the new list with the variable list3.

2. Given the lists list1 and list2 that are of the same length, create a new list consisting of the last element of list1 followed by the last element of list2, followed by the second to last element of list1, followed by the second to last element of list2, and so on (in other words the new list should consist of alternating elements of the reverse of list1 and list2). For example, if list1 contained [1, 2, 3] and list2 contained [4, 5, 6], then the new list should contain [3, 6, 2, 5, 1, 4]. Associate the new list with the variable list3.

3. Given the lists list1 and list2, not necessarily of the same length, create a new list consisting of alternating elements of list1 and list2 (that is, the first element of list1 followed by the first element of list2, followed by the second element of list1, followed by the second element of list2, and so on. Once the end of either list is reached, no additional elements are added. For example, if list1 contained [1, 2, 3] and list2 contained [4, 5, 6, 7, 8], then the new list should contain [1, 4, 2, 5, 3, 6]. Associate the new list with the variable list3.

Answers

Answer:

Explanation:

The following code is written in Python. It creates a method for each one of the questions asked and then tests all three with the same test case which can be seen in the picture attached below.

def alternating_list(lst1, lst2):

   lst3 = []

   for x in range(len(lst1)):

       lst3.append(lst1[x])

       try:

           lst3.append(lst2[x])

       except:

           pass

   if len(lst2) > len(lst1):

       lst3.extend(lst2[len(lst1):])

   return lst3

def reverse_alternating(lst1, lst2):

   lst3 = []

   if len(lst1) == len(lst2):

       for x in range(len(lst1) - 1, -1, -1):

           lst3.append(lst1[x])

           lst3.append(lst2[x])

   return lst3

def alternating_list_no_extra(lst1, lst2):

   lst3 = []

   max = 0

   if len(lst1) > len(lst2):

       max = len(lst2)

   else:

       max = len(lst1)

   for x in range(max):

       lst3.append(lst1[x])

       try:

           lst3.append(lst2[x])

       except:

           pass

   return lst3

someone help me!! i just gotta match these

Answers

Answer:

emails - allow attachments of files, such as images.

reports - convey more factual data that helps facilitate decision making.

memorandum - are written in a block style, with the body text aligned along the left margin.

business letter - are one page long.

I hope it's correct.

Does any one know how to code? If you do can you help me with my project?

Answers

Answer:

kinda look it up!!!

Explanation:

go to code.org free coding

i can help you man

-scav aka toby

1. The two major types of metal electrical cable are:

wire and fibre
twisted pair and coaxial
twisted pair and fibre optic
coaxial and fibre optic

2. What are the most common forms of wireless connection?

infrared beams
microwaves
radio waves
all of the above

3. Wi-fi connections have limited range of :

10 metres
600 metres
20 metres
300 metres

4. True or False: In order to use wi-fi signal/network, you have to remain seated in one spot.

True
False

5. True or False: Bluetooth will let you use a smartphone to share data or files with another smartphone?

True
False​

Answers

Answer:

I believe 1. is Wire and Fibre

2. Infrared beams

3. 20

4. False

5. False

I'm not 100% if any of this is correct.

Which of the following allows computers to communicate with each other? RAM NIC Hard drive Floppy disk

Answers

Answer:

NIC (Network Interface Card)

Explanation:

A network interface card is used to connect a computer to a computer network allowing for data to be transmitted between computers.

You are the administrator for a small network with several servers. There is only one printer, which is centrally located. Although indications are that this printer is over-utilized, there is neither space nor budget to add additional printers at this time.

There are often cases where a document is needed urgently, but when it is printed, it goes into the queue and is printed in the order received, not the order of the document's priority. You would like to allow Gladys, the administrative assistant, to have the ability to maintain the print queue. Specifically, you want her to be able to alter the order of printing for the documents waiting to be printed.

You need to permit Gladys to make this change without adding her to the local Administrators group or making significant changes to the way your office operates.

What should you do?

Answers

Answer:

The answer is "Allocate permission for managing documents to the Gladys printer."

Explanation:

In the given scenario, we allow permission for managing the documents to the Gladys printer. It should enable Gladys could continue these trends by bringing something into the community of local administrators and introducing major changes to wherewith your office operates. In especially, they need her to modify its printing process regarding documentation requiring printing.

What is the difference between weak AI and strong AI?

Answers

Explanation:Strong AI has a complex algorithm that helps it act in different situations, while all the actions in weak AIs are pre-programmed by a human. Strong AI-powered machines have a mind of their own. They can process and make independent decisions, while weak AI-based machines can only simulate human behavior.

Technological advances have led to worldwide increased ______.
a.
Job security
b.
Economic stability
c.
Communicative ability
d.
Military Security

Answers

Answer:

C

Explanation:

Answer:

C.

Communicative ability

What is the problem, if any, with the following code?The desired output is [3,19].

>>> aList = [19,3]
>>> aList[O] = aList[1]
>>> aList[1] = aList[O]
>>>aList

•There is no problem.

•You need a temporary variable to hold the value 3.

•You need parentheses around 0 and 1, as in
aList(0) and aList(1).

•You need to import list to use a list.

Answers

Answer:

             You need a temporary variable to hold the value 3.

Explanation: Other user is correct

The problem with the code is that you need a temporary variable to hold the value 3. which is the correct answer would be an option (B).

What is the temporary variable?

A temporary variable in computer programming is a variable with a brief lifespan, typically used to retain data that will be deleted quickly or before it can be placed in more permanent program memory.

The problem with the code is that you need a temporary variable to hold the value 3.

In the first line of the code, the list is initialized with the values 19 and 3. In the second line, the value at index 0 is assigned to the value at index 1, which is 3. This means that the list now contains values 3 and 3.

In the third line, the value at index 1 is assigned to the value at index 0, which is also 3.

This means that the list now contains values 3 and 3, so the output is [3,3] instead of the desired output [3,19].

To fix this problem, you can use a temporary variable to hold the value 3 before assigning it to the other index. The code would look like this:

aList = [19,3]

temp = aList[0]

aList[0] = aList[1]

aList[1] = temp

aList

To learn more about temporary variables click here:

https://brainly.com/question/20309413

#SPJ2

Correct procedures must be followed when working with asbestos because it

Answers

Answer:

is harmful to humans when inhaled and can lead to asbestosis

Explanation:

Asbestosis is the long-term scarring and inflammation of the lungs due to asbestos fibers.

In a closed isolated system such as the universe, the amount of _____________ does not change.
Group of answer choices

Energy

Radiation

Chemicals

Sun light

Answers

Answer:

Energy

Explanation:

11.5 Code Practice Edhesive??

In this code practice, we will continue to employ W3Schools tools to practice writing HTML. You should have already read through the tutorials for the four HTML topics below, found in Lesson 11.5. Now, complete the exercises linked below for each topic. Once you complete these exercises, move onto the next set of instructions below.

HTML Styles (Links to an external site.)
HTML Formatting (Links to an external site.)
HTML CSS (Links to an external site.)
HTML Links (Links to an external site.)
Create a web page that has two paragraphs. One of the paragraphs should be aligned to the center and have red text. The other paragraph should be aligned to the right and be in italics. Refer to the sample below for clarification.

11.5 Code Practice example

Your program should begin and end with the following tags:



# Insert your code here!


In the programming environment, you will notice that once you type one tag (for example, the html opening tag), the environment automatically populates the closing tag for you. Be careful not to double up on closing tags, otherwise your HTML will not run.

As you write your web page, you can click the "Run Code" button to view it in real time.

Answers

Answer:

<html>

<body>

<p style="text-align:center;color:red;">This is a paragraph.</p>

<p><i> "This text is italic</i></p>

</body>

</html>

Explanation:

I got a 75%. Hope this helps.

HTML codes are placed in segments called tags.

Tags are divided into two

The opening tagThe closing tag

Take for instance, the opening and closing tags of the paragraph tag are <p> and </p>, respectively.

Having explained what tags are, the required HTML code is as follows:

<html>

<body>

<p align="center"><font color="black"> This is a paragraph 1</font></p>

<p align="right"><i> This is a paragraph 2 </i></p>

</body>

</html>

The paragraphs are aligned using center and right alignments, while the text in the first paragraph is colored using the color tag

Read more about HTML at:

https://brainly.com/question/25055825

what is first page of website called​

Answers

Answer:

A home page (or homepage) is the main web page of a website.

Explanation:

Latent data is easier to find than visible data on a computer. True False

Answers

Answer:

False

Explanation:

"Visible data is data that the computer operating system is aware of and is easily accessible by the user or a trained professional. Latent data is data hidden in all kinds of places in the computer and the operating system is not aware of it nor does it know where to find it, nor does the untrained user." Latent data cannot generally be viewed through typical applications, whereas visible data can be.

Answer:

False

Explanation:

It is False

You used this code to give the user hints.

else:
if guess print("Guess higher.")

else:
print("Guess lower.")

Complete the code below, which is an alternative way to give the user the same hints.

if guess = correct:
# Tell the user the guess was correct.
print("You were correct!")
keepGoing = False

_________
print("Guess higher.")

_________
print("Guess lower.")

•Else
•Elif guess > correct
•Elif guess < correct

Answers

Answer:

Elif guess < correct

Else

Explanation:

So, you need to insert right condition that compatible with given code, so firstly you need to print that guess was higher  and then if it is not correct and it is not higher  print that it was actually lower.

Complete the sentence.
refers to the process of sending the completed software to whomever is in charge of mass-producing the media on which will be distributed, such as CDs Or DVD

Answers

Answer:

The answer is Release-to-Manufacturing

Explanation:

Answer:

the answer is release to manufacturing

Explanation:

I took the test too

Databases are of little use to forensic scientists. True False

Answers

Answer:

false

Explanation:

Explica el funcionamiento del puente de diodos. Indica los diodos que se encuentran en polarizacion directa en inversa en cada semiciclo de la onda alterna de entrada

Answers

Answer:

puente de diodos se utiliza cuando queremos transformar una señal de fase alterna en una continua, para tener la ruta actual que siempre va en la misma dirección.

En polarización directa, el flujo depende principalmente en los portadores mayoritarios. Debido a la región de empobrecimiento reducida, y a la atracción del potencial contrario al material, se incrementa la corriente que fluye a través del diodo.

Explanation:

espero y esto te pueda ayudar

why do we need to include this information about online platform?











꧁NOTE::::LINKS ARE NOT ALLOWED FOR THIS QUESTION꧂

Answers

Answer:

online platform is defined as a digital service that facilitates interactions between two or more distinct but interdependent sets of users (whether firms or individuals) who interact through the service via the Internet Like i said above, platforms enable interactions and transactions between interdependent groups. ... While traditional businesses create value by creating products or services, platforms create value by enabling these transactions.

Explanation:

~Bre

What can help you estimate how much money you might get in
scholarships and grants at a given institution of higher education?
Net price calculator
Retun on investment calculator
Sticker price calculator
Clearance calculator
Next →

Answers

Answer:

Net price calculator

Explanation:

Net price is cost you need to pay in a year to cover education expenses for you to attend a particular college for higher education...I also just finished the test

Adding a form into an App maybe a good idea, however, you must consider how you design it. Why do you think there is a good and bad form design below?

Answers

Answer:

To inform you (the reader) of what to do and what not to do.

Explanation:

By starting it off by saying "..you must consider how you design it" and then following it up with an image of a good and bad form for an App, it gives a visual idea of the Do's and Don'ts, which can help you out much more than explaining it in text.

Hope this helped!

Source(s): None, except my mind. Hope this helped!

Renita manages a cell-phone store. She often needs to send contracts to business customers who are far away. Renita is most likely to use _____ for this job.


broadcasting

a teleprompter

a fax machine

the VoIP

Answers

Answer:

a fax machine.

I hope it helps.

what is humanware? write it's examples.​

Answers

Answer:

Humanware is defined in IT as hardware or software that is built around user capability and empowerment and the design of the user interface. For example, project teams and developers.

Explanation:

Hope it helps u

FOLLOW MY ACCOUNT PLS PLS

Answer:

The people who operate and use the computer for their daily activities. Egs.

Teachers , doctors, lawyers, bankers, engineers etc.

Data from RAM may be placed where to free up space? Log file Swap file Word file Print spool file

Answers

Answer:

Swap file

Explanation:

Which of the following is the most accurate definition of a botnet? a small text file passed to a Web browser on a user's computer by a Web server destructive software robots working together on a collection of zombie computers via the Internet spider software used by a search algorithm to crawl various Web sites to return a query a common platform used by search engines to index the contents of a Web site a fraudulent e-mail attack that targets a specific person or organization by personalizing the message

Answers

Answer:

destructive software robots working together on a collection of zombie computers via the Internet

Explanation:

Botnets are devices controlled via the internet to achieve a goal that requires multiple computers working towards a shared task. e.g. Denial of service attacks and mass email messaging.

explain four sitting postures in a computer laboratory​

Answers

1. Push hips back
2. Adjust seat
3. Sit up straight and roll your shoulders back
4. Feet flat on floor

A Program is an Algorithm – a set of directions for the computer to follow.

True
False

Answers

Answer:

True

Explanation:

Choose the correct term to complete the sentence.

A ____ search can perform a search on the list [1, 10, 2, 3, 5].

•Linear
•Binary

Answers

Answer:

Linear

Explanation:

Binary search can be performed only in sorted arrays.

Answer:

Linear

Explanation:

it's right on edge

I'm feeling really generous.

Answers

Answer:

tysm

Explanation:

hiiii

Other Questions
The day....we met was cloudywhenthatwherewhich Marginal Cost of Bikes $70 This graph shows the marginal costs of each bike, along with the market price. Select the correct answer from the options available. Based on this graph, at which level of production does the producer's profit stop increasing? $60 Market Price $50 $40 Marginal Cost O bike 4 O bike 5 O bike 6 $30 $20 O bike 7 $10 0 Bike 1 Bike 2 Bike 3 Bike 4 Bike 5 Bike 6 Bike 7 If a nurse does not agree to the discipline set due to a complaint made against this nurse, after reviewing the proposed agreed order, they can request a- Im having trouble with this What is the electoral college?a system in which various branches of government have different responsibilitiesa system in which power is shared by state and national governmentsa system in which each branch of government has the power to limit the actions of the other twoa system in which a group of people are chosen from each state to elect the President indirectly I WILL MARK BRANLIEST FOR FIRST AND CORRECT ASNWER PLEASE HELPHow do Chinas government institutions most differ from those of more democratic nations?Government power is limited by a constitutionTwo branches of government share power.The legislature holds most power.One party dominates the government. A box contains 6 black socks and 4 red socks. What is the probability of picking two black socks from the bag without replacement? What is the answer in simplest form? Imagine you were a migrant farm worker in 1960 what are some things that need to be changed so you can live a better life Why was Philadelphia an ideal place for the Second Continental Congress to meet? Identify and explain ONE global process or series of events in the period 14501750 CE that would facilitate cross-cultural exchange. The expansion of agriculture caused which of the following changes? F An increase in gun slinging G Train robberies H.O the increase of commercial farming J. O the decline of big cities x+2y=8 -x+3y=17 mtodo de reduccin alguien la sabe? What is mN? A. 19 B. 68 C. 95 D. 112 Leroy uses 20 pounds of fertilizer to cover up 4000 ft. of a salon and 50 pounds to cover up 10,000 ft. how much does he need to cover his entire yard which has an area of 26,400 ft. Solve the equation. 8(x + 6) = 43 What is the value of x? Read each question carefully. Determine the best answer to the question from the choices provided.Unemployment rose after 1929 because __________. A. farmers could not grow crops on the Great Plains B. New Deal programs helped improve the economy C. banks and businesses closed after the stock market crashed D. Mexicans and Mexican American workers were forced to leave the country pls give answer giving 50 points Sheffield Company is working on two job orders. The job cost sheets show the following. Job 201 Job 202 Direct materials $7,150 $9,300 Direct labor 3,850 7,800 Manufacturing overhead 5,200 9,800 Required:Prepare the three summary entries to record the assignment of costs to Work in Process from the data on the job cost sheets. PLEASE HELP I MISSED THIS QUESTION Why was naval superiority of greater importance in the war in Asia than it was in the war in Europe? Lee la siguiente resea y contesta lo que se te pide.Green, John. (2012) Bajo la misma estrella. Espaa. Nube de tinta.Por Carlota EchevarraA Hazel le gusta leer libros pretenciosos y ver telebasura, leer poesa y dormir (adems tiene laexcusa de que es bueno para el cncer) y le gustara que sus pulmones funcionasen como unospulmones normales. Su madre cree que est deprimida, as que empieza a ir a un grupo de apoyotodos los mircoles. Aunque, en realidad, no hay nada ms deprimente que un grupo en el que cadada la lista de compaeros por los que rezar es ms larga. Precisamente el da en el que conoci aAugustus Waters, fue el da en el que casi consigui escaquearse para quedarse viendo un maratnde Americas Next Top Model.Lo primero que pens de Augustus Waters, para qu negarlo, fue que era muy guapo. Aunque conuna personalidad tan arrolladora como la suya, su fsico pronto pas a segundo plano. Escarismtico, hablador, divertido, le gustan las metforas y filosofar, y siempre parece saber qudecir. Estaba en el grupo de apoyo acompaando a un amigo, aunque l tambin haba tenidocncer. Hazel ley el libro favorito de Augustus, Augustus ley el libro favorito de Hazel y lo dems,como se suele decir, es historia. Aunque en este caso es una historia tan peculiar como susprotagonistas, que arranca cuando Gus trata de localizar al autor del libro favorito de Hazel ycontina mientras ambos intentan ignorar el fantasma de su enfermedad.No te vamos a engaar: Bajo la misma estrella es un libro sobre el cncer, porque todos suspersonajes sufren la enfermedad directa o indirectamente, pero no es un libro sobre el cncer,porque no cae en los tpicos propios del gnero. Es un libro con el que se re ms que se llora, quete hace reflexionar ms sobre la vida que sobre la muerte, que no idealiza la enfermedad ni glorificaa sus vctimas, que no ahonda en los malos momentos y a la vez resulta profundamenteconmovedor.La historia es interesante, pero el gran acierto de John Green (aparte de crear dos protagonistasfantsticos) es el enfoque que le da. La narracin es gil e ingeniosa, y est llena de sarcasmos ycomentarios polticamente incorrectos. Hay momentos de bastante complejidad, tanto literariacomo filosfica, que no ralentizan la lectura (ya elegir cada lector cunto tiempo dedicar a lospensamientos del autor). John Green no endulza la realidad de los protagonistas para complacer allector, y la franqueza con la que trata el tema es precisamente uno de sus grandes triunfos.Podramos seguir sealando las virtudes de la novela y escribir una resea el doble de larga queesta, pero dejmoslo as: Bajo la misma estrella es el libro que regalas cuando quieres acertar, lanovela que recomiendas cuando quieres demostrar que la literatura juvenil tiene calidad, y uno deesos pocos libros que querrs releer (probablemente ms de una vez) porque es tan extraordinarioque resulta difcil de creer, y sabes que con cada relectura te volver a sorprender su genialidad.identifica lo siguiente en la resea:Datos de identificacinResumenPropsito de la reseaComentario de fondoInsercin de cita PLEASE HELP WHAT IS THE RIGHT ANSWER ??