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
Zanzabum
3 years ago
6

Write a Nested While Loop that will increment the '*' from 1 to 10.

Engineering
1 answer:
andrey2020 [161]3 years ago
8 0

Answer:

The program is as follows:

i = 1

while(i<11):

   j = 1

   while(j<=i):

       print('*', end = '')

       j += 1

   i += 1

   print()

Explanation:

Initialize i to 1

i = 1

The outer loop is repeated as long as i is less than 11

while(i<11):

Initialize j to 1

   j = 1

The inner loop is repeated as long as j is less than or equal i

   while(j<=i):

This prints a *

       print('*', end = '')

This increments j and ends the inner loop

       j += 1

This increments i

   i += 1

This prints a blank and ends the inner loop

   print()

You might be interested in
If engineering is easy then why don't most people join?
Mazyrski [523]
Engineering requires a lot of school
5 0
3 years ago
Read 2 more answers
What setting do i dry my jordan max arua 2s on in the dryer <br>will mark brainliest
antiseptic1488 [7]
Probably low heat and a longer time. Better sad than sorry
3 0
3 years ago
The cold drawn AISI 1040 steel bar with 25-mm width and 10-mm thick has a 6- mm diameter thru hole in the center of the plate. T
4vir4ik [10]

Answer:

A)  ( N ) = 1.54

B)  N ( Goodman ) = 1.133,  N ( Morrow) = 1.35

Explanation:

width of steel bar = 25-mm

thickness of steel bar = 10-mm

diameter = 6-mm

load on plate = between 12 kN AND 28 kN

notch sensitivity = 0.83

A ) Fatigue factor of safety based on yielding criteria

= δa + δm = \frac{Syt}{n}   =  91.03 + 227.58 = 490 / N

therefore Fatigue number of safety ( N ) = 1.54

δa (amplitude stress ) = kf ( Fa/A) = 2.162 * ( 8*10^3 / 190 ) = 91.03 MPa

A = area of steel bar = 190 mm^2 , Fa = amplitude load = 8 KN , kf = 2.162

δm (mean stress ) = kf ( Fm/A ) = (2.162 * 20*10^3 )/ 190 = 227.58 MPa

Fm = mean load  = 20 *10^3

B) Fatigue factor of safety based on Goodman and Morrow criteria

δa / Se + δm / Sut = 1 / N

= 91.03 / 183.15 + 227.58 / 590 = 1 /N

Hence N = 1.133 ( based on Goodman criteria )

note : Se = endurance limit (calculated) = 183.15 , Sut = 590

applying Morrow criteria

N =   1 / ( δa/Se) + (δm/ δf )

   = 1 / ( 91.03 / 183.15 ) + (227.58 / 935 )  

   = 1.35

6 0
3 years ago
What is a chipping hammer used for? <br><br> State three things.
aleksley [76]

Answer:

i hope this helps.

Explanation:

they are used for breaking concrete, can be positioned to break vertical and overhead surfaces, allows precisely chip away only specific areas.

7 0
3 years ago
Read 2 more answers
ENERGIA
VMariaS [17]

nswer:

i dont understand french

97

Explanation:

4 0
2 years ago
Other questions:
  • Suppose you are implementing a relational employee database, where the database is a list of tuples formed by the names, the pho
    14·1 answer
  • According to the article "Edward R. Murrow: Inventing Broadcast Journalism," how did Murrow perceive the threat of Adolf Hitler?
    9·1 answer
  • Let Deterministic Quicksort be the non-randomized Quicksort which takes the first element as a pivot, using the partition routin
    13·1 answer
  • Define the hydraulic diameter for a rectangular duct
    7·1 answer
  • A structural component in the shape of a flat plate 29.6 mm thick is to be fabricated from a metal alloy for which the yield str
    11·1 answer
  • Create a Python program that will produce the following output:
    7·1 answer
  • typedef struct bitNode { int data; struct bitNode *left; struct bstNode *right; } bstNode; int solve(bstNode* root) { if (root =
    15·1 answer
  • Sam constructs a circuit, connects a lead acid battery of 2 V to a lamp of resistance 3 Ω and places an ammeter across it. What
    8·2 answers
  • Hi all, could you solve this please?<br> What is the value of the resistance R
    14·1 answer
  • What Is Photosynthesis ?​
    7·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!