Answer:
Both come from the sun
Both are reusable sources
and both don't cause pollution
Explanation:
Answer:
# -*- coding: utf-8 -*-
# Get N from the command line
import sys
N = int(sys.argv[1])
if N > 0: #N is positive
positve = list(range(N,0,-1))
print(positve)
elif N < 0: #N is negative
negative = list(range(N,0,1))
print(negative)
else:
print("Invalid in input")
Explanation:
First, you need to identify if the number entered is positive, negative or none of them, for that we use one if, one elif and one else statement:
- If the number entered (N) is greater than zero (is positive) we print a list in the range N to 0 in steps of minus one, the zero is not printed because the function range by default omits the last value
- If the previous statement was False and the number entered is smaller than zero (is negative) we print a list in the range N to 0 in steps of one, the zero is not printed because the function range by default omits the last value
- Finally, if the two previous events were false print invalid input
I think the answer is C) 0.25v I’m not sure tho
Answer:
Your question lacks the time required hence i will calculate the Average flow rate using a general concept and an assumed time value of 25 seconds
ANSWER : 104.904 ft^3/sec
Explanation:
General concept : Average flow rate is the volume of fluid per unit time through an area
Hence the average flow rate of the air conditioning unit of this room
Volume of the room / time taken for the air to cycle the room = v / t
assuming the time taken = 25 seconds
volume of room = width * length * height
= 14.1 * 15.5 * 12 = 2622.6 ft^3
Average flow rate = V/ t
= 2622.6 / 25 = 104.904 ft^3/sec
Parallel hookups increase amp hour capacity but voltage remains the same... 1.5 volts
Series the two and voltage is 3.0 volts.