False- python is an example of a high level language. Other high levels are c++, PHP, and Java
Answer:
Close or disable all unused running apps.
Explanation:
Closing programs running in the background on your computer or mobile device helps to free up system resources for your other programs. These problems can be resolved where your system is running slowly or two programs are trying to use the same device hence causing the device or system to drag.
These refer to the elementary steps of the scientific method.
The correct order is as follows:
- Keen observation of natural phenomena.
- The use of imagination and creativity to test understanding and predictions.
- An attempt to verify the understanding of observed natural occurrences establishing verifiable scientific knowledge
- Continued observance and testing to revise scientific knowledge.
- An understanding of how or why these natural phenomena occur.
Learn more about the scientific methods at the link below:
brainly.com/question/497944
Answer:
no_of_shares = int(input("Enter the number of shares: "))
purchase_price = float(input("Enter the purchase price of the stock: "))
sale_price = float(input("Enter the sale price of the stock: "))
total_stock_price = purchase_price*no_of_shares
total_spend_on_buying = total_stock_price + (0.03*total_stock_price)
total_sale_price = sale_price*no_of_shares
commission_while_selling = total_sale_price*0.03
net_gain_or_loss = total_sale_price - (total_spend_on_buying + commission_while_selling)
if(net_gain_or_loss<0):
print("After the transaction, you lost {} dollars".format(abs(net_gain_or_loss)))
else:
print("After the transaction, you made {} dollars".format(abs(net_gain_or_loss)))