Answer:
d. Stockholder theory
Explanation:
The theory of maximising profits
The login option will require users to have to have a password to access the document
Answer: Direct competitive
Explanation:
The direct competitive situation occur when the two and more than two business in the market offering the similar type of services and the products so it automatically increase the level of competition in the market.
According to the question, the internet service is one of the most efficient tool for influence the customers or consumers about their products in the market and when the services are get switched then it utilize the direct competitive in the market.
Therefore, direct competitive is the correct option.
nums = []
while True:
num = float(input("Enter a number: "))
if num <= 0:
break
nums.append(num)
print("The largest number entered was",max(nums))
I wrote my code in python 3.8. I hope this helps.