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
Sergio [31]
3 years ago
15

Write a set of nested loops that display 10 rows of # characters. There should be 15 # characters in each row.

Computers and Technology
1 answer:
Andrews [41]3 years ago
5 0

Answer:

Following are the code to this question:

public class M//defining class M

{

public static void main(String[] as)//defining main method

{

    int i,j;//defining integer variable

for (i= 1; i <=10; i++)//defining for loop for print column    

{

for (j = 1; j<=15; j++)//defining for loop for print rows

{

System.out.print("#");//print # value

}

System.out.println();//print space

}

}

}

Output:

###############

###############

###############

###############

###############

###############

###############

###############

###############

###############

Explanation:

The code defines a class "M" and the main method is defined within a class and two integer variables I and j" are defined within the primary procedure, while the next step defines two for a loop.  

In the first loop, the column value is printed, and a further loop that prints the row value is declared inside the loop.  

You might be interested in
Which of the following would be considered the highest risk portfolio?
sashaice [31]

The best option is (C) A portfolio made up of 60% stocks, 30% mutual funds, and 10% Treasury bonds.

There are a lot of risks involved when investing in almost anything. You may end up paying a lot for something that may not be worthwhile and at the end of it all end up losing a lot more than you get. In this case, more than half of the money has been invested in stocks and the prices of stocks change daily. Investing in stocks may give a good return but remains high risk to involve yourself in and should be avoided as much as possible.






4 0
3 years ago
Choose the best answer a) Which is NOT a Graphics software​
Alchen [17]

Answer:

Software that people think of as graphics software, but isn't, include programs that don't directly manipulate individual images. Page layout software such as InDesign, QuarkXpress, and Publisher fall into that category. Likewise, presentation software such as PowerPoint or Apple Keynote aren't graphics programs

Explanation:

3 0
3 years ago
Which areas can be used to create names in the Create from Selection feature in the Formula tab? Check all that
alina1380 [7]

Answer:

top row, left column, right column, bottom row and Apply or ok.

Explanation:

The question above wants to test our knowledge on the use of Excel app. (application) or software worksheet and this is in how create names in the Create from Selection feature in the Formula tab.

Check the steps in the creation of names in the Create from Selection feature in the Formula tab below;

(1). Highlight your range(note that this must include the rows and the columns) , (2). Click on FORMULAS, then select CREATE FROM SELECTION from the pop up options, (3). Then, in the section where you can see CREATE NAMES FROM SELECTION make sure you click on all the check boxes included, (4). Click on TOP ROW(If you have only the row at the header) and vice versa, (5). Click on TOP ROW and LEFT COLUMN(if both are involved) and vice versa, and (6). Click on APPLY or OK.

4 0
3 years ago
Read 2 more answers
Go to your Canvas course and locate the Assignment: Writing Prompt 1: Is the Internet making us Meaner?and complete the activity
Maslowich

Answer and Explanation:

The Internet is not changing anything other than making you extreme. The nice become nicer, the mean become meaner, the nice become mean, and the mean become nice. The internet just makes things easier to do. It really isn't a factor in if you are mean or not.

7 0
2 years ago
Read 2 more answers
Which cat level supports 10-gbps networks at 100-meter segments and provides shielding for individual wire pairs reducing crosst
Salsk061 [2.6K]
The answer is cat-6a as it supports 10GB/s transfer speeds with a length of 100m.  Cat-6 cable also supports transfer speeds of 10GB/s but with a reduced maximum length of 55m.
8 0
3 years ago
Other questions:
  • What port number is the web server listening on for the web request?
    9·1 answer
  • What social impact did the gunpowder have on society?
    12·1 answer
  • Increasing your margins will increase the amount of space you have to type text on your document. Please select the best answer
    10·1 answer
  • Cual es la definición de grouded?​
    7·1 answer
  • The diagnostic test that involves watching a computer monitor with alternating checkerboard patterns while an eeg is performed i
    11·2 answers
  • Write a loop that displays your name 10 times. 2. Write a loop that displays all the odd numbers from 1 through 49. 3. Write a l
    10·1 answer
  • To view the Picture tools tab, a user must first _____.
    10·2 answers
  • Explain why the scenario below fails to meet the definition of a stakeholder.
    5·1 answer
  • In your own words, describe what an acceptable use
    7·1 answer
  • How does Mixed Reality expand on Augmented Reality?
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!