The software application used to analyze an organization’s data to improve decision making is said to be Business intelligence software.
<h3>What is Business intelligence?</h3>
Business intelligence is known to be a kind of app that has been set up and it is known to have a set of data analysis applications that has been made to meet a lot of information needs.
Business intelligence are known to be a kind of procedural and technical input that takes , stores, and analyzes the data made by a company's activities.
Learn more about Business intelligence from
brainly.com/question/13339276
Because it ‘computes’ certain tasks, get it. It’s like saying ‘the puncher’ for someone who punches stuff.
Answer:
To move a picture from your publication to the scratch area, click and drag a picture off of a publication page. Then drop it into the scratch area in Publisher.
hope it helped you..
Answer:
There is no difference between ‘’ and “” string type in python. Both are used to hold the string or sequence of character in the python. triple """ """ can also use for the same.
Example:
str1 = "aeiou"
str2 = 'aeiou'
str3 =""" hello"""
print(type(str1), type(str2),type(str3))
<class 'str'> <class 'str'> <class 'str'>
Here all are used to hold string or sequence of character.