Answer: Business intelligence system is a system that is used in the field of business and organizations for generations of the strategy and plans to make decision. This system consist of the business intelligence(BI) tools. It creates a connection in the different information/data and takes them to the business organization.
Business intelligence system has goals like:-
- Increasing daily sales
- Fast the growth rate of the business
- improving the rental performance
- Gaining more profit
The answer is -621 (that’s what my calculator said).... btw why didn’t you just use a calculator for this...?
Answer:
In Python:
year = int(input("Year: "))
if (year % 4) == 0:
if (year % 100) == 0:
if (year % 400) == 0:
print("Leap year")
else:
print("Not a leap year")
else:
print("Leap year")
else:
print("Not a leap year")
Explanation:
This line prompts user for year
year = int(input("Year: "))
This condition checks if input year is divisible by 4
if (year % 4) == 0:
If yes, this condition checks if input year is divisible by 100
if (year % 100) == 0:
If yes, this condition checks if input year is divisible by 400
if (year % 400) == 0:
If divisible by 4, 100 and 400, then it is a leap year
print("Leap year")
else:
If divisible by 4 and 100 but not 400, then it is not a leap year
print("Not a leap year")
else:
If divisible by 4 but not 100, then it is a leap year
print("Leap year")
else:
If it is not divisible by, then it is not a leap year
print("Not a leap year")
Answer:
D
Explanation:
A shortcut will make it easier for her to access the database file
Answer: store those building blocks in the Normal template
Explanation:
Since Ron is creating building blocks in Word, he can make the building blocks that he created available by storing those building blocks in the normal template.
It should be noted that building blocks include lists, tables, text boxes or other contents that an individual uses for his or her word document.
So as to make them readily available whenever they're needed, it is important that they should be stored in the normal template. It will allow for easy access.