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:
how are supposed to help when you can't do anything?
Answer:
The answer is A.
Explanation:
Two main types of network switches, modular and fixed configuration switches, are used for connecting the devices with one another provided they are on the same network.
As the name suggests, modular switches can be configured according to your needs and specific situations where you need a different setup.
The one advantage fixed-configuration switches have over the modular switches is that they are easier to operate. You can't change anything for a different application but they are simpler to setup and use, you can just plug them in and start using. They are usually for the more casual end-user and home networks etc.
I hope this answer helps.
Answer:
Explanation:
Given data:
flow rate = 10 gallon per minute = 0.0223 ft^3/sec
diameter = 0.75 inch
we know discharge is given as
Q = VA
solve for velocity V = \frac{Q}{A}[/tex]
V = 7.27 ft/sec
we know that Reynold number
calculate the ratio to determine the fanning friction f
from moody diagram f value corresonding to Re and is 0.037
for horizontal pipe
where 1.94 slug/ft^3is density of water
Answer:
Logic NOR Gate Equivalent
The Boolean expression for a logic NOR gate is denoted by a plus sign, ( + ) with a line or Overline, ( ‾‾ ) over the expression to signify the NOT or logical negation of the NOR gate giving us the Boolean expression of: A+B = Q.