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()
Answer:
Technician A
Explanation:
Ohms law: I= E/R so rest resistance must be present along with E/potential difference. Even if just wire shorted together there is resistance but very little.
Tech B: Again ohms law. Current flow is directly proportional to the voltage and inversely proportional to R (resistance or impedance).
Answer:
6.9
Explanation:
I had the same question lol your welcomr if itd not right in sorry
Answer:
The match
Explanation:
You can light both the lantern and the candle if you light the match first.
I don't know of this is a homework question, but I answered it anyway :)