It's kind of a mix between A and C there are some defragmenting tools that show you how much of your PC is wasted by program files. And in some defragmenting tools, it shows you all the files that are fragmented and gives you the option to defrag them or not. So the best answer would be A.
Answer:
yes i do i will tel you if you put brainlist
Explanation:
I have a kindle paper white that I downloaded all of my avalible textbook onto if that helps I find it much better then carrying around a bunch of textbooks
<u>Pros :- Social media:</u>
- Normally using is good up to one stage where information of organization is not shared through social media.
- News day social media is used to share the common information with validation.
- In social media access by end user out of office hours.
<u>Cons:- Social media:</u>
- In an organization an important files or document or media is shared then it is danger.
- Mostly end user access the social media in office hours then growth of organization is will be affected.
- Since end user using the organization internet then cost of internet will rise.
Answer:
price = float(input("Enter amount of a purchase: "))
shipping_price = 0.12* price
NJ_sales_Tax = 0.07*price
print('The price of item is {}'.format(price))
print('The Cost of Shipping is {}'.format(shipping_price) )
print('New Jessey Sales Tax is {}'.format(NJ_sales_Tax))
total_bill = shipping_price+NJ_sales_Tax+price
print('Total Bill {} ' .format(total_bill))
Explanation:
- Prompt User for input of the amount of purchase
- Calculate the shipping cost (12% of purchase price)
- Calculate the tax (7% of the purchase price)
- Use python's .format method to output an itemized bill