1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Doss [256]
3 years ago
6

Write a code segment that uses a loop to create and place nine labels into a 3-by-3 grid. The text of each label should be its c

oordinates in the grid, starting with (0, 0). Each label should be centered in its grid cell. You should use a nested for loop in your code.
Computers and Technology
1 answer:
SIZIF [17.4K]3 years ago
5 0

Answer:

The question is answered using Python:

for i in range(0,3):

    for j in range(0,3):

         print("("+str(i)+", "+str(j)+")",end=' ')

         num = int(input(": "))

Explanation:

The programming language is not stated. However, I answered using Python programming language

The next two lines is a nested loop

This iterates from 0 to 2, which represents the rows

for i in range(0,3):

This iterates from 0 to 2, which represents the columns

    for j in range(0,3):

This prints the grid cell

         print("("+str(i)+", "+str(j)+")",end=' ')

This prompts user for input

         num = int(input(": "))

You might be interested in
A program that is used to view websites is called a​
Nookie1986 [14]

Answer:

A web browser

examples of this would be

Bing

6 0
3 years ago
Read 2 more answers
Now the y0utube home screen is gone
erik [133]

Answer:

oh no thanks not good

Explanation:

did you try it on a different device mabye a phone

7 0
3 years ago
Read 2 more answers
Can you choose what part of the image is in focus with a point-and-shoot camera?
Evgen [1.6K]

I believe you can blur the background of the image you are taking of.

6 0
3 years ago
A team is building an application that must persist and index JSON files in a highly-available data store. Latency of data acces
Vsevolod [243]

Answer:

DynamoDB is the correct answer of this question.

Explanation:

DynamoDB is a completely controlled NoSQL server website that allows server tables to be generated that can store and recover any amount of information.DynamoDB is an Amazon Web Services server platform that promotes software architectures and web resources priced by key.

DynamoDB can accommodate over 10 billions requests in a day, and therefore can sustain peaks of over 20 million queries per second.

5 0
4 years ago
Looking at the code below, what happens when this onHit function runs?
inysia [295]
B dxjdbxhxbxbcjxxnxhcbfnc
7 0
3 years ago
Read 2 more answers
Other questions:
  • What is the term for individual computers and devices that are connected to a network?
    14·1 answer
  • Define the term entity and give an example of an entity .
    10·1 answer
  • Individuals with desirable traits will be __________ to have young that survive than individuals without these traits. (2 points
    5·2 answers
  • In a microsoft word document, what is the amount of space that appears between paragraphs called?
    14·1 answer
  • Which vendor certification would you think is the most relevant in the field of IT security? Why?
    7·1 answer
  • Write a fragment of code that reads in integers from standard input, until end-of-file and sends their (floating point) average
    14·1 answer
  • To what extent are surrounded species able to stand the anthropogenic activities?
    8·1 answer
  • . Which one of the following is not a JAD participant? 1. Managers 2. System analyst 3. Business development manager 4. Users
    7·1 answer
  • Translate each of the following binary representations into its equivalent base ten representation.
    7·1 answer
  • What font family is Times New Roman an what font family is Arial?
    9·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!