Answer:
maximizing processing power
Answer:
year = int(input("Enter a year: "))
if (year % 4) == 0:
if (year % 100) == 0:
if (year % 400) == 0:
print(str(year) + " - leap year")
else:
print(str(year) +" - not a leap year")
else:
print(str(year) + " - leap year")
else:
print(str(year) + "- not a leap year")
Explanation:
*The code is in Python.
Ask the user to enter a year
Check if the <u>year mod 4</u> is 0 or not. If it is not 0, then the year is not a leap year. If it is 0 and if the <u>year mod 100</u> is not 0, then the year is a leap year. If the <u>year mod 100</u> is 0, also check if the <u>year mod 400</u> is 0 or not. If it is 0, then the year is a leap year. Otherwise, the year is not a leap year.
Answer:
C. BMP
Explanation:
BMP is a simple bitmap image format developed by Microsoft and IBM.
It's used almost exclusively on the Microsoft Windows operating system these days, was used on OS/2. It's the format the basic MS Paint program, that comes with Windows, edits its file in.
It's also a basic graphic format to use for programmers.
Of course GIF, PDF, TIFF and PNG are also used on Windows, as well as on most other operating system.
Your answer is "Mutual funds; stocks; bonds".
Answer:
-_________________________________-
Explanation:
-__________________________________________________________-