On a scale of 1-10 how would you rate your pain

Answers

Answer 1

Explanation:

There are many different kinds of pain scales, but a common one is a numerical scale from 0 to 10. Here, 0 means you have no pain; one to three means mild pain; four to seven is considered moderate pain; eight and above is severe pain.


Related Questions

favorite rappers22???​

Answers

There are so many rappers that I love and I can't choose.

And there are K-pop singers who are also good at rap.

100 POINTS PLEASE HELP
Create and initialize a 5 x 5 array as shown below.
0 2 0 0 0
0 2 0 0 0
0 2 2 0 0
0 2 0 2 0
0 2 0 0 2

First, write a printArray() function that prints out the array. Use a single parameter in the definition of the function, and pass the array you created above as the parameter. Call the function so it prints the original array.

Then write a flipHorizontal() function that flips the contents of the array horizontally and prints the result. This means that the values in each row should be reversed (look at the second array in the sample run of the program for clarity). Again, this function should pass the original array as the parameter. Within your flipHorizontal() function, call the printArray() function to print the new array that has been horizontally flipped.

Reset the array back to the original 5 x 5 array we started with.

Then write a flipVertical() function that flips the contents of the array vertically and prints the result. This means that the values in each column should be reversed (look at the third array in the sample run of the program for clarity). Again, this function should pass the original array as the parameter. Within your flipVertical() function, call the printArray() function to print the new array that has been vertically flipped.

The sample run below shows how your code should print the original array, followed by the horizontally-flipped array, followed by the vertically-flipped array. Notice that the output below includes blank lines between each of the three arrays - yours should do the same.

Code should be able to do this

0 2 0 0 0
0 2 0 0 0
0 2 2 0 0
0 2 0 2 0
0 2 0 0 2


0 0 0 2 0
0 0 0 2 0
0 0 2 2 0
0 2 0 2 0
2 0 0 2 0


0 2 0 0 2
0 2 0 2 0
0 2 2 0 0
0 2 0 0 0
0 2 0 0 0

Answers

Answer:

hope this helped ,do consider giving brainliest

Explanation:

import numpy as np

#PrintArray Function

def printArray(array):

for i in range(len(array)):

for j in range(len(array[i])):

print(array[i][j], end= " ")

print()

#Flip horizontal function

def flipHorizontal(array):

#reversing the order of arrays

array2 = np.fliplr(array).copy() printArray(array2)

#Flip Vertical function

def flipVertical(array):

#Preserving the order of array and reversing each array.

array3 = np.flipud(array).copy() printArray(array3)

#Main() function def main():

array = [[0,2,0,0,0],[0,2,0,0,0],[0,2,2,0,0],[0,2,0,2,0],[0,2,0,0,2]]

print("The array: \n")

printArray(array)

print("\nFlipped horizontally: \n") flipHorizontal(array)

print("\nFlipped vertically: \n") flipVertical(array)

if __name__=="__main__":

main()Explanation:

Answer:

Answer:

hope this helped ,do consider giving brainliest

Explanation:

import numpy as np

#PrintArray Function

def printArray(array):

for i in range(len(array)):

for j in range(len(array[i])):

print(array[i][j], end= " ")

print()

#Flip horizontal function

def flipHorizontal(array):

#reversing the order of arrays

array2 = np.fliplr(array).copy() printArray(array2)

#Flip Vertical function

def flipVertical(array):

#Preserving the order of array and reversing each array.

array3 = np.flipud(array).copy() printArray(array3)

#Main() function def main():

array = [[0,2,0,0,0],[0,2,0,0,0],[0,2,2,0,0],[0,2,0,2,0],[0,2,0,0,2]]

print("The array: \n")

printArray(array)

print("\nFlipped horizontally: \n") flipHorizontal(array)

print("\nFlipped vertically: \n") flipVertical(array)

if __name__=="__main__":

main()Explanation:

Explanation:

suppose you have a hard disk with 2200 tracks per surface, each track divided into 110 sectors, six platters and a block size of 512 bytes(i.e., 1 /2 kilobyte), what is the total raw capacity of the disk drive?

Answers

Suppose you have a hard disk with 2200 tracks per surface, each track divided into 110 sectors, six platters, and a block size of 512 bytes (i.e., 1 /2 kilobyte), then the total raw capacity of the disk drive is 13.4 GB.

A hard disk drive (HDD) is a data storage device that uses magnetic storage to store and retrieves digital data using one or more rigid rapidly rotating disks (platters) covered in magnetic material. A hard disk drive is a random-access memory device (RAM), meaning that data can be read or written in almost any order after the first write operation has been completed.

Suppose you have a hard disk with 2200 tracks per surface, each track divided into 110 sectors, six platters, and a block size of 512 bytes (i.e., 1 /2 kilobyte), then the total raw capacity of the disk drive is 13.4 GB. The formula to calculate the total raw capacity of the disk drive is given:

Total raw capacity = Number of surfaces × Number of tracks per surface × Number of sectors per track × Block size per sector × Number of platters

We are given: Number of surfaces = 2

Number of tracks per surface = 2200

Number of sectors per track = 110

Block size per sector = 512 bytes

Number of platters = 6

Now, let's substitute these values in the above formula:

Total raw capacity = 2 × 2200 × 110 × 512 × 6

= 13,428,480,000 bytes = 13.4 GB

Therefore, the total raw capacity of the disk drive is 13.4 GB.

You can learn more about disk drives at: brainly.com/question/2898683

#SPJ11

The PRODUCT table contains this column: PRICE NUMBER(7,2)
Evaluate this statement:
SELECT NVL(10 / price, '0')
FROM PRODUCT;
What would happen if the PRICE column contains null values?
A. A value of 0 would be displayed. (*)
B. The statement would fail because values cannot be divided by 0.
C. The statement would fail because values cannot be divided by null.
D. A value of 10 would be displayed.

Answers

SQL queries are used to return results from a database table or multiple tables.

If the PRICE column contains null values, then (b) the statement would fail because values cannot be divided by 0.

The query is given as: SELECT NVL(10 / price, '0')  FROM PRODUCT

From the query, the query is to first divide 10 by the value of the PRICE column.

If the PRICE column contains 0, then it means that price = 0

A division by 0 is not possible.

So, the query would fail

Hence, the true statement is (b)

Read more about SQL queries at:

https://brainly.com/question/15049854

What are some things that games were historically used for?

a
friendly competition
b
spending time with other people
c
practicing skills necessary for survival
d
all of the above

Answers

Answer:

D) All of the above

Explanation:

All of these options are true.

Hope it helps and is correct!

how can we show that heat is liberated during respiration​

Answers

Answer:

To show that heat is liberated during respiration. Make a hole in the cork and insert a thermometer into cork and see the bulb of the thermometer is in the midst of the seeds. Record the temperature in both the flasks at every two or three hour intervals for about 24 hours.

Explanation:

Hope this helps:)

What is micro computer? List out the types of microcomputer. What is micro computer ? List out the types of microcomputer .​

Answers

A full-featured computer designed for single-use on a smaller size is known as a microcomputer.

What exactly is a microcomputer?

A full-featured computer designed for single-use on a smaller size is known as a microcomputer.

A single-chip microprocessor-based device is now more commonly referred to as a PC, replacing the outdated name "microcomputer." Laptops and desktops are examples of typical microcomputers.

The types of microcomputers are;

Desktop Computer

Laptop

Smartphone

Notebook

Tablet

Hence, a full-featured computer designed for single-use on a smaller size is known as a microcomputer.

To learn more about the microcomputer refer;

https://brainly.com/question/21219576

#SPJ1

Hey can y’all help me with this thanks

Hey can yall help me with this thanks

Answers

Answer:The answer is 144

Explanation:First you subtract the two numbers which would be 8-2=6

Then you multiply the 6 by how many numbers there are: 6x2=12

then you multiply 12 by itself: 12x12=144

var w=20;
var h = 15;
rect (10, 10, w, h);
ellipse (10, 10, w, h);
How tall is each one of the shapes?

Answers

The rectangle is 20 units tall and the ellipse is 15 units tall.

How to calculate the height of each of the shapes?

The height of the rectangle is defined by the variable 'h' and is set to 15. The height of the ellipse is also defined by the variable 'h' and is set to 15. So the height of each shape is 15 units.

What is ellipse ?

An ellipse is a geometrical shape that is defined by the set of all points such that the sum of the distances from two fixed points (the foci) is constant. It can be thought of as an oval or a "squashed" circle. In the context of computer graphics and drawing, an ellipse is often used to represent the shape of an object or an area.

Learn more about ellipse in brainly.com/question/14281133

#SPJ1

ning and e-Publishing: Mastery Test
1
Select the correct answer.
Which statement best describes desktop publishing?
O A.
a process to publish drawings and photographs on different media with a laser printer
B.
a process to design and produce publications, with text and images, on computers
OC.
a process to design logos and drawings with a graphics program
OD
a process to publish and distribute text and graphics digitally over various networks
Reset
Next​

Answers

Answer:

B

Explanation:

I dont no if it is right but B has the things you would use for desktop publishing

Answer:

the answer is B.

a process to design and produce publications, with text and images, on computers

Explanation:

An effective systems proposal report should: O make vague recommendationsO provide detailed and specific, covering every aspect of the analysis O be written clearly and concisely to convey key points O be written for any potential reader 1

Answers

The report for a successful systems proposal report should be written concisely and clearly to convey the main points

How should a proposal report be formatted?

It should outline the project's aims, intended outcomes, approach, and expected effects. Objectives must be specific, measurable, and in line with the project's declared need and purpose. They also need to be measurable.

What do you write a proposal report for?

The written proposal's two main objectives are to save you time: (1) defining a clear goal and demonstrating why pursuing it is valuable; and (2) formulating a detailed plan for achieving those goals and confirming that the plan truly achieves the stated objectives.

To know more about  proposal report visit:
https://brainly.com/question/4025229

#SPJ4

Help me with this question asap please :)

Help me with this question asap please :)

Answers

Answer:

I think it's sequence as there is a pattern of connection in the words

take 5 minutes to explore the simulation environment on the molecule shape from the phet simulation already installed on your desktop computer.

Answers

To explore the simulation environment on molecule shape using the PhET simulation on your desktop computer,  Launch the PhET simulation, Find the Molecule Shape simulation, Familiarize the user interface,  Manipulate molecule parameters, observe molecule behavior, Experiment scenarios, Read documentation.

Launch the PhET simulation:

Locate the PhET simulation application on your desktop computer and open it.

Find the Molecule Shape simulation:

Look for the specific simulation titled "Molecule Shape" within the PhET simulation collection. You can search for it using the search bar or navigate through the available simulations.

Familiarize yourself with the user interface:

Once you have opened the Molecule Shape simulation, take a moment to explore the user interface. Look for buttons, sliders, menus, and interactive elements that allow you to interact with the simulation.

Manipulate molecule parameters:

The simulation should provide options to modify molecule parameters such as atom types, bond lengths, bond angles, and other relevant properties. Use the available controls to adjust these parameters and observe how they affect the shape of the molecules.

Observe molecule behavior:

As you modify the parameters, closely observe how the molecules respond. Pay attention to changes in shape, bond angles, and overall geometry. Take note of how these changes impact the stability and characteristics of the molecules.

Experiment with different scenarios:

Use the simulation to experiment with different molecule configurations and scenarios. Try creating different types of molecules and observe how their shapes differ. Test the impact of various parameters on the resulting molecule shapes.

Utilize additional simulation features:

The PhET simulation may offer additional features such as tooltips, information panels, or graphs to enhance the learning experience. Take advantage of these features to gain a deeper understanding of molecule shapes.

Read documentation or guides (if available):

If the simulation provides documentation or guides, consider reading them to better understand the simulation's features, functionalities, and educational objectives.

Remember to take your time and explore the simulation at your own pace. It's an interactive learning tool, so feel free to experiment and observe the effects of different parameters on molecule shapes.

The question should be:

To explore the simulation environment on the molecule shape from the phet simulation already installed on your desktop computer.

To learn more about computer: https://brainly.com/question/24540334

#SPJ11

one common configuration activity is updating the software on the client computers in the network. question 9 options: true false

Answers

True. Updating software on client computers is a critical activity that should be performed regularly in any networked environment. The software updates often include bug fixes, security patches, and feature enhancements that are essential for maintaining the security and stability of the network.

Without regular software updates, the network is vulnerable to various security threats and performance issues. In addition, outdated software may not be compatible with new applications or devices, causing compatibility issues that can impact the network's functionality.

Updating software on client computers can be performed in various ways, such as manual installations or automated software deployment tools. Automated software deployment tools can simplify the process by automating software installations, updates, and patch management, reducing the need for manual intervention. Furthermore, these tools can ensure that all computers in the network are updated consistently and in a timely manner, minimizing the risks of security threats and compatibility issues.

To know more about  Updating software click this link -

brainly.com/question/25604919

#SPJ11

Write a function that takes in a big string and an array of small strings, all of which are smaller in length than the big string. The function should return an array of booleans, where each boolean represents whether the small string at that index in the array of small strings is contained in the big string.

Answers

To solve this problem, we will need to iterate through the array of small strings and check if each one is contained within the big string. We can do this by using the built-in method .includes() on the big string, which will return true or false depending on whether the small string is found within the big string.

To store the boolean values for each small string, we can create a new array and append the result of each .includes() call to it. This will give us an array of booleans, where each element corresponds to whether the small string at that index is contained within the big string.

We can write a function in JavaScript to implement this logic:

function findStrings(bigString, smallStrings) {
 const results = [];
 for (let i = 0; i < smallStrings.length; i++) {
   results.push(bigString.includes(smallStrings[i]));
 }
 return results;
}

Here, the findStrings() function takes in the big string and an array of small strings as parameters. It initializes an empty array called results to store the boolean values. Then, it iterates through the array of small strings using a for loop and checks if each one is contained within the big string using .includes(). The boolean result of each .includes() call is then appended to the results array using the push() method. Finally, the function returns the results array.

This function will work for any input big string and array of small strings, as long as the small strings are all smaller in length than the big string. It is an efficient way to check for multiple substrings within a larger string, and can be easily adapted to handle more complex use cases.

More questions on array: https://brainly.com/question/29989214

#SPJ11

at should be put into box 1 and box 2 to complete this algorithm for sorting a list from smallest to largest?

Answers

The way this algorithm operates is by comparing subsequent list members and swapping them if they are not in the proper order.

How should at be entered into boxes 1 and 2 to finish this algorithm for ranking a list from smallest to largest?Box 1:Make a duplicate of the list.Establish a pointer to the list's top item.Evaluate the current element against the following one in the list.Swap the elements if the one in use is bigger than the one after it.Move the pointer to the list's following item.Up until the pointer reaches the end of the list, repeat steps 3 through.Box 2:Set a pointer to the list's first element.Evaluate the current element against the following item on the list.Move the pointer to the following element in the list if the current element is smaller than the one after it.Continue steps 2-3 until the pointer reaches the end of the list if the current element is bigger than the following element.Restart at step 1 and continue until there are no swaps after the pointer reaches the end of the list.The way this algorithm operates is by comparing subsequent list members and swapping them if they are not in the proper order. The process iterates through the list until there are no longer any swaps.

To learn more about algorithm refer to:

https://brainly.com/question/24953880

#SPJ4

which keys do you press to open the windows 8 quick launch menu?

Answers

To open the Windows 8 Quick Launch menu, you can press the Windows key + Q on your keyboard.

The Windows key is typically located between the Ctrl and Alt keys on the bottom left side of the keyboard. Pressing the Windows key + Q simultaneously will bring up the Quick Launch menu, which allows you to quickly search for apps, files, and settings on your computer. This feature was introduced in Windows 8 as a way to enhance the user's productivity by providing easy access to various functions and applications.

Learn more about Windows 8 here:

https://brainly.com/question/30463069

#SPJ11

in a basic program with 3 IF statements, there will always be _________ END IIF's.
a)2
b)3
c)4

Answers

Answer:

c)4

Explanation:

Hope it could helps you

5. Assume the propagation delay in a broadcast network is 5 yes and the frame transmission time is 10 js. (a) How long does it take for the first bit to reach the destination? (b) How long does it take for the last bit to reach the destination after the first bit has arrived? 6. Assume that there are only two stations, A and B, in a bus CSMA/CD network. The distance between the two stations is 2000 m and the propagation speed is 2x 108 m/s. If the station A starts transmitting at time tj: (a) Does the protocol allow station B to start transmitting at time 1 + 8 ps? if the answer is yes, what will happen? (b) Does the protocol allow station B to start transmitting at time tu + 11 ps? if the answer is yes, what will happen? 7. How does the Ethernet address 1A:23:30:40:5E:6F appear on the line in binary?

Answers

5(a) the first bit takes 15 μs to reach the destination, and 5(b) the last bit takes an additional 15 μs after the arrival of the first bit to reach the destination. 6(a) it cannot start transmitting at time 1 + 8 ps. 6(b) it cannot start transmitting at time tu + 11 ps. 7. 0001 1010 : 0010 0011 : 0011 0000 : 0100 0000 : 0101 1110 : 0110 1111.

5(a) To calculate the time it takes for the first bit to reach the destination in a broadcast network, we need to consider the propagation delay and the frame transmission time. The propagation delay is given as 5 μs (microseconds) and the frame transmission time is given as 10 μs (microseconds). Since the first bit is part of the frame, it will be transmitted along with the frame transmission time. Therefore, the time taken for the first bit to reach the destination is the sum of the propagation delay and the frame transmission time, which is 5 μs + 10 μs = 15 μs.

5(b) After the first bit has arrived at the destination, the remaining bits in the frame still need to be transmitted. Since we are dealing with a broadcast network, all bits in the frame will take the same amount of time to reach the destination as the first bit. Therefore, the time taken for the last bit to reach the destination after the first bit has arrived will also be 15 μs.

6. In a bus CSMA/CD network with two stations, A and B, and a distance of 2000 m between them, we are given a propagation speed of 2 × 10^8 m/s. Let's analyze the scenarios:

(a) If station A starts transmitting at time tj, the protocol does not allow station B to start transmitting at time 1 + 8 ps. This is because station B needs to wait for the transmission from station A to reach it, and that requires time equal to the propagation delay. The propagation delay is calculated as the distance divided by the propagation speed: 2000 m / (2 × 10^8 m/s) = 10 μs. So station B would need to wait for 10 μs after station A starts transmitting before it can begin its own transmission. Therefore, it cannot start transmitting at time 1 + 8 ps.

(b) Similarly, the protocol does not allow station B to start transmitting at time tu + 11 ps. As mentioned before, station B needs to wait for the transmission from station A to reach it. Assuming tu represents the time at which station A starts transmitting, station B would need to wait for the propagation delay, which is 10 μs, before it can start its transmission. Therefore, it cannot start transmitting at time tu + 11 ps.

In both scenarios, if station B attempts to transmit before the required propagation delay, a collision would occur, and the stations would follow the CSMA/CD protocol to handle the collision by stopping transmission, waiting for a random backoff time, and then reattempting the transmission.

7. The Ethernet address 1A:23:30:40:5E:6F appears on the line in binary as follows:

The first step is to convert each hexadecimal digit into its corresponding 4-bit binary representation:

1A: 0001 1010

23: 0010 0011

30: 0011 0000

40: 0100 0000

5E: 0101 1110

6F: 0110 1111

Putting all the binary representations together, we have:

1A:23:30:40:5E:6F in binary is 0001 1010 : 0010 0011 : 0011 0000 : 0100 0000 : 0101

1110 : 0110 1111.

The Ethernet address 1A:23:30:40:5E:6F appears on the line in binary as 0001 1010 : 0010 0011 : 0011 0000 : 0100 0000 : 0101 1110 : 0110 1111.

learn more about propagation delay here: brainly.com/question/32077809

#SPJ11

how can i download my potos crom my sims card without a cable and without using adobe bridge from my nikon d7000

Answers

One solution to transfer photos from your Nikon D7000's SIM card without a cable or Adobe Bridge is to use a memory card reader.

These can be found at electronic stores or online retailers. Simply remove the SIM card from your camera and insert it into the memory card reader. Then, connect the reader to your computer via USB and transfer the photos to your desired location. This is a simple and efficient way to download your photos without the need for cables or software. Additionally, some laptops have built-in memory card readers, so check your device's specifications to see if this is an option for you.

learn more about card reader here:

https://brainly.com/question/31012792

#SPJ11

Shaun is giving a presentation on how to use a certain technique in oil painting. For his presentation, he wants to use a friend’s video that demonstrates the technique. Shaun comes to you for advice about whether he should include the video in his presentation.

Which statements about the video are true? Check all that apply.

The resource is from an expert.
The resource is current.
The resource clarifies a key point.
The resource is credible.
The resource is relevant.

Answers

Answer:

b,c,e

Explanation:

i got it right

Answer:

b, c, e

Explanation:

Im big brain

write a function named add record that takes 3 parameters all of which are strings and doesnt return a value. there is a database saved in a file named exception.db containing a table named vessel with columns score, assure, and however. insert a new record into this table using the 3 parameters of this function as its values for the three columns.

Answers

To create the "add record" function that inserts a new record into the "vessel" table in the "exception.db" database, below given steps can be followed.

The steps are:
1. Import the necessary modules: We will need the SQLite module to connect to the database and execute SQL queries.
2. Define the function: We will name the function "add_record" and it will take three parameters, all of which are strings. These parameters represent the values that will be inserted into the "score", "assure", and "however" columns of the "vessel" table.
3. Connect to the database: We will use the SQLite module to connect to the "exception.db" database.
4. Prepare the SQL query: We will create an SQL query that inserts a new record into the "vessel" table with the values from the three parameters.
5. Execute the SQL query: We will use the SQLite module to execute the SQL query and insert the new record into the "vessel" table.
6. Close the database connection: We will close the database connection to ensure that any changes made to the database are saved.

Here is the code for the "add record" function:
```

import sqlite3
def add_record(score, assure, however):
   # Connect to the database
   conn = sqlite3.connect("exception.db")
   c = conn.cursor()
  # Prepare the SQL query
   query = "INSERT INTO vessel (score, assure, however) VALUES (?, ?, ?)"
   values = (score, assure, however)
   # Execute the SQL query
   c.execute(query, values)
   # Close the database connection
   conn.commit()
   conn.close()
```

To use this function, you would simply call it with three string arguments representing the values to be inserted into the "score", "assure", and "however" columns. For example:
```
add_record("100", "yes", "however text")
```

This would insert a new record into the "vessel" table with a score of 100, an assure value of "yes", and a however value of "however text".

Learn more about database here: https://brainly.com/question/29774533

#SPJ11

which of the following would not transmit signals from one point to another? a. telephone line. b. modem. c. fibre optics. d. coaxial cable​

Answers

Answer:

b

modem

Explanation:

modem is used to receive signals not transmit

Which can be used to view a web page?
File viewer
Text editor
Web browser
WYSIWYG

Answers

The answer is C: web browser

so we use web browsers to look at web pages

hope this helped

-scav

Given the code above, which item identifies the method's return type?
A.public
B.println
C.static
D.

Answers

The method's return type in the given code is identified by the term "void".

The return type of a Java method is specified just before the name of the method. In this case, we have a method called main, and its return type is indicated by the keyword void, which means that the method does not return any value.

So, the correct answer to your question is option d: void. Options a, b, and c do not specify the return type of the method.

Additionally, there is a syntax error in the given code. The correct syntax for defining a class and its main method in Java is as follows:

public class First {

   public static void main(String[] args) {

       System.out.println("First Java application");

   }

}

Note the use of curly braces to define the body of the class and the method, and the use of uppercase S and System for the out object's reference.

Learn more about void here:https://brainly.com/question/25644365

#SPJ11

Your question is incomplete but probably the full question was:

public class First

(

public static void main(String[] args)

(

system.out.println("First Java application");

)

)

given the above code, which item identifies the method's return type?

a. public

b. println

c. static

d. void

Given the code above, which item identifies the method's return type?A.publicB.printlnC.staticD.

create a digital image edhesive

Answers

Answer:

import simplegui

def draw_handler(canvas):

   colors = []  

   colors.append (["#80e5ff", "#80e5ff", "#ffffff", "#ffffff", "#80e5ff", "#80e5ff","#ffffcc"])  

   colors.append (["#80e5ff", "#ffffff", "#ffffff", "#ffffff", "#ffffff", "#80e5ff","#80e5ff"])  

   colors.append (["#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff","#80e5ff"])  

   colors.append (["#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff","#80e5ff"])  

   colors.append (["#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff","#80e5ff"])  

   colors.append (["#80ff80", "#80ff80", "#80ff80", "#80e5ff", "#80e5ff", "#80e5ff","#80e5ff"])  

   colors.append (["#80ff80", "#80ff80", "#80ff80", "#80ff80", "#80ff80", "#80ff80","#80ff80"])  

   row = 0

   col = 0

   for r in range(1, 350, 50):           #outside loop

       for c in range(1, 350, 50):       #inside loop

           canvas.draw_polygon([(c, r), (c + 50, r), (c + 50, r + 50), (c, r + 50)], 1, "black", colors[row][col])    

           col = col + 1

       row = row + 1

       col = 0

#********** MAIN **********

frame = simplegui.create_frame('Pic', 350, 350)

frame.set_draw_handler(draw_handler)

frame.start()

Explanation:

The outside

In this exercise we have to use the knowledge in computational language in python to write the following code:

We have the code can be found in the attached image.

So in an easier way we have that the code is

import simplegui

def draw_handler(canvas):

  colors = []  

  colors.append (["#80e5ff", "#80e5ff", "#ffffff", "#ffffff", "#80e5ff", "#80e5ff","#ffffcc"])  

  colors.append (["#80e5ff", "#ffffff", "#ffffff", "#ffffff", "#ffffff", "#80e5ff","#80e5ff"])  

  colors.append (["#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff","#80e5ff"])  

  colors.append (["#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff","#80e5ff"])  

  colors.append (["#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff", "#80e5ff","#80e5ff"])  

  colors.append (["#80ff80", "#80ff80", "#80ff80", "#80e5ff", "#80e5ff", "#80e5ff","#80e5ff"])  

  colors.append (["#80ff80", "#80ff80", "#80ff80", "#80ff80", "#80ff80", "#80ff80","#80ff80"])  

  row = 0

  col = 0

  for r in range(1, 350, 50):        

      for c in range(1, 350, 50):      

          canvas.draw_polygon([(c, r), (c + 50, r), (c + 50, r + 50), (c, r + 50)], 1, "black", colors[row][col])    

          col = col + 1

      row = row + 1

      col = 0

frame = simplegui.create_frame('Pic', 350, 350)

frame.set_draw_handler(draw_handler)

frame.start()

See more about python at brainly.com/question/18502436

create a digital image edhesive

________ computing allows service providers to make computing resources and infrastructure management available to customers as needed and then charges a ________ rate

Answers

Cloud computing allows service providers to make computing resources and infrastructure management available to customers as needed and then charges a usage-based rate.

This type of computing service has become popular because it allows businesses to scale up or down their computing resources as needed without having to maintain and manage their own physical infrastructure. It has also opened up access to computing resources to smaller businesses that may not have had the budget to invest in their own hardware.

Cloud computing allows users to access shared resources such as storage, processing power, and applications over the internet. The service provider manages and maintains the underlying infrastructure, allowing customers to focus on their core business activities. Cloud computing providers typically charge a usage-based rate, which means customers only pay for the resources they use. This allows businesses to reduce their upfront capital expenses, since they only need to pay for what they use.

To know more about computing visit:

https://brainly.com/question/32297638

#SPJ11

I can't log in to my account! I've been trying for the past hour and the same error message pops up! I need to submit this before 5 PM so I don't get charged any late fees. What should you say?
A. "Do you usually get errors when you try to pay? Some people just have bad luck." B. "What error are you getting? That will help me determine if the problem is actually with the system." C. "Waiting until the last minute makes errors much more stressful. I'm sure we can fix this for you." D. "I'm sorry our system is making it hard for you to manage your account. What error message are you seeing?" E. 3"Setting up automatic payments helps prevent this problem. You might want to consider that for the future."

Answers

"I'm sorry our system is making it hard for you to manage your account. What error message are you seeing!" is the correct option.

When someone cannot log in to their account and gets an error message, the appropriate response is to acknowledge the user's issue and then inquire about the error message. This is best represented by option D, which is the correct answer.

Option A is not an appropriate response because it belittles the user's situation and is unprofessional. Option B is a good start, but it is lacking. It is necessary to follow up with something to help solve the issue.Option C is a good way to empathize with the user's situation, but it does not provide a helpful response to the problem.Option E is not relevant to the issue at hand because the user is already experiencing an issue. Furthermore, this option implies that the user did something incorrect, which may not be the case.

Learn more about error message visit:

https://brainly.com/question/30458696

#SPJ11

How does design influence the product's function?

Answers

I think the answer is

Which term describes how content in an array is accessed?
brackets

string

subscript

class

Answers

Answer:

the answer is subscript

Explanation:

Other Questions
Suppose you estimated square root of 12 by averaging a square like rectngle.What would be a reasonable estimation? I need help (yes agian) evidence that there was much more land ice about 20,000 years ago than there is now includes: select all the simplified expression A conversion factor set up correctly to convert 15 inches to centimeters is. There were 300 people at a football match and 35% were adults. The rest were children. a-What percentage were children? b-How many children were present? One reason that the _______ contribute the most of any animal group to Earth's biodiversity in terms of total number of species is that ________. In what locations can a GPS function? In a perfectly competitive market, a single firm is a price taker, meaning that they only charge the... use the given measurements to solve each triangle. round to the nearest tenthplease help me book answer: r=11.6(angle P=40.3) (angle R=50.7) Describe a time that someone you admire showed integrity. Do you think it was hard for that person to do the right thing? When prospective employees are able to signal their ability, employers are no better off,employees with lower productivity are definitely worse off, and even employees with higherproductivity might be worse off. True or false phoenicians greatest cultural achievement was the group of answer choices creation of an alphabet. adoption of monotheistic religion. development of a sun-based calendar. invention of settled agriculture. Plz someone complete this Independence and the end of the Spanish rule were initially benefited which south American trading partner The soccer team has 16 1/2 boxes of wraping paper left to sell. If each of the 12 players sells the same amount, how man boxes should each player sell? I run ___ the other people.Inside BehindIn Outside I need the answers pls!! According to the video, which fictional character has played a role in elevating museums in the popular imagination as venues for making global culture more accessible?Indiana JonesLara CroftBilbo BagginsTintinTo promote false beliefs about racial hierarchies, when were thousands of Native American skeletons plundered from graves and battlefields?Group of answer choices1870s1860s1840s1900s 9.Identify the vertex of the graph. Tell whether it is a minimum or maximum.A. (2, 1); minimumB. (2, 1); maximumC. (1, 2); minimumD. (1, 2); maximum