Answer:
b. Application software
Explanation:
Applications are type of software that are installed in a specific operating system of a computer that deviates from those system software installed together with the system itself. These third-party applications are necessary for other functions such as entertainment, business, leisure and other needs addressing of which the system software can't provide.
Examples:
Microsoft Office Word, Excel, Powerpoint
i think i did that right:)
Answer:
The ans will be given in the python script below. A picture of the answer is also attached
Explanation:
print("Welcome To Garage Parking Fee Calculator")
hours = float(input("Type the number of hours parked : "))
#fee per hour
rate = 2.40
#multiply rate per hour by the number of hours inputted
price = rate * hours
if price < 6:
price = 6
if price > 20:
price = 20
print("Parking fee is: $", +price)
The largest numeric value that can be represented in 3 bytes is 224
Explanation:
- commonly, to represent a 999 number, 10 bits are used.
- But with 3 bytes, it can save or store integer with the range from 0 to 224-1 in the 24 bits. (3 * 8 bits =24 bits).
- Then the binary notation is used for encoded numeric data in order to store in the computer storage device.