Answer
False
Because, we are only given the color of two flowers, the garden probably has a lot more flowers that aren't mentioned
Explanation:
The two <span>statements that give good definitions of financial credit are : 1) Balance Sheet & 2) Income Statement.
</span>
1) Balance sheet shows the assets, liabilities, and net worth on a
given date;
2) Income statement (profit & loss account), shows how the net income of
the firm is arrived at over a stated period.
Another statement is Cash flow statement, which shows the inflows and outflows of cash caused by the firm's activities during a given period of time.
Answer:
1)
n = int(input("Please enter the length of the sequence: "))
print("Please enter your sequence")
product = 1
for i in range(n):
val = int(input())
product *= val
print("The geometric mean is: %.4f"%pow(product,1/n))
2)
print("Please enter a non-empty sequence of positive integers, each one is in a separate line. End your sequence by typing done:")
product = 1
val = input()
n = 0
while(val!="done"):
product *= int(val)
n += 1
val = input()
print("The geometric mean is: %.4f"%pow(product,1/n))
Explanation: