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
aleksandr82 [10.1K]
3 years ago
12

Python - Write a program to print the multiplication table as shown in the image by using for loops.

Computers and Technology
1 answer:
Galina-37 [17]3 years ago
8 0

Answer:

Explanation:

The following python code creates the multiplication table for 10 rows and 10 columns. This code uses nested for loops to traverse the table and print out the product of each multiplication. The image attached shows the output of the code.

for x in range(1, 11):

       for y in range(1, 11):

           z = x * y

           print(z, end="\t")

       print()

You might be interested in
Which of the below statements describes the purpose of HTML 5 - check as many as apply
rewona [7]

Answer: 2) To provide instruction for how the structure     should look

              4) To provide instruction for how the content should look

Explanation:

HTML 5 is a hypertext markup language revision which basically provide the structure and content to the page. It is a standard programming which basically describe the content of the web page. It reduce the overall development time and it is faster.

In the remaining option, It does not provide any meaning as we cannot add structure directly we should use the CSS styling for the particular document.

Therefore, (2) and (4) option are correct.

4 0
3 years ago
Adopting technologies can improve productivity and performance of businesses.
rewona [7]

An area of improvement that can be achieved using AI and Machine in the Future of Transport are given below:

The technical issues of artificial intelligence are

  • Artificial Neural Networks.
  • Deep Learning.
  • Natural language processing.

The potential issues that can arise from the adoption of AI technology

is hacking of transport system and system fail and how it can be overcome is by aiding system with enough security as well as regular maintenance.

<h3>What is the Future of Transport about?</h3>

AI is known to be one that has the power as well as the potential to be able to make traffic in regards to movement of vehicles to be very more efficient.

Note that it is one that can ease traffic congestion and also gives driver's a lot of time, also make parking easier as well as encourage car or ridesharing.

Note that as AI aids or function to keep road traffic to be flowing, it can also lower the  fuel consumption rate that is as a result of the use of  vehicles idling if stationary,

Learn more about AI from

brainly.com/question/25523571

#SPJ1

5 0
2 years ago
What folder holds 32-bit programs installed in a 64-bit installation of windows?
raketka [301]
<span>C:\Program Files (x86) folder</span>
8 0
3 years ago
A network administrator for a small company is contemplating how to scale the network over the next three years to accommodate p
choli [55]

Answer:

Option B,C,E

Explanation:

4 0
3 years ago
APCS A: I'm reviewing an old ap test and can't get past this problem:
yaroslaw [1]

Answer:

The answer is "Option A"

Explanation:

Following are the complete code to these question:

public class Arr//defining a class-Arr

{

public static void main(String[] args)//main method  

{

        int [][] numbers={{1, 2, 3},{4,5,6}}; //defining 2D array numbers

for(int[] row : numbers) //use for loop that holds all array value into 1D  array

{

for (int n: row)//defining n variable that holds row array values  

{

System.out.print (n); //print n variable value

}

}

}

}

The code comment explains its functioning.

7 0
3 years ago
Other questions:
  • Why is art important to heritage?
    10·1 answer
  • How is multiprogramming implemented using virtual memory?
    10·1 answer
  • What is the first step in planning a multi-table query?
    14·1 answer
  • As an IT specialist you are asked to troubleshoot a problem with two
    14·2 answers
  • Write a program that asks the user to enter a number of seconds. There are 60 seconds in a minute. If the number of seconds ente
    9·1 answer
  • Write a function called random_marks. random_marks should #take three parameters, all integers. It should return a #string. # #T
    13·1 answer
  • Read the steps in the process of making a video.
    5·2 answers
  • PLEASE ASAP!!
    9·2 answers
  • I really need help please help me
    6·1 answer
  • What is your favorite photograph in the presentation? Why?
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!