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 B to the question
Answer:
Technology refers to methods, systems, and devices which are the result of scientific knowledge being used for practical purposes. Technology is changing fast. They should be allowed to wait for cheaper technologies to be developed.
As you paste a chart from Excel to Word use the Paste Options button labelled <u>paste special</u> if you want the theme of the destination document applied to the chart, and the chart is linked to the object in the source document.
<u>Explanation:</u>
While end-user planning to copy the data from ms-excel to ms-word he or she has the option to select paster or paste special. The paste will just copy data from a destination to source for example just copy the data from ms-excel to ms-word. Whereas by selecting paste special use can select end-user can select the value or image or picture.
By pasting special end-user can change the copying type or pasting type from just copy the data he or she can copy with formula, value, picture or formatting picture.
It changes a little depending on what programming language you're using, but in C you could say
int times_ten (int num) {
num = num*10;
return num;
}
Or, in general terms:
Integer Function times_ten (Integer num)
Set num = num * 10
Return num
This is all done assuming the number used as an argument is an integer and that you are returning an integer value, not a decimal. The main thing to notice is that since you have to return a value, you must have two things: a return statement, and a type declaration for the function, otherwise you'll get an error.