Answer:
1. More access to data
2.convenience
3. Easy creation of BI solutions
4. Report creation
5. Saves time
Explanation:
A data warehouse can be described to be an electronic storage system that contains large amount of facts and information which sources for and also maintains data from different sources; either external or internal.
The most important reason for a data warehouse is for it to store great amounts of data to be used for query and also to be used for analysis.
Why do we use a data warehouse?
1. Users have more access to data due to the integration of various sources of data. It makes use of real time data facts
2. You can conveniently store and also create metadata
3. Business intelligence solutions can easily be created using data warehouses.
4. Users can easily create their own reports
5. Data warehouses makes accessing different data sets faster. It is a time saver as business users are not going to spend time trying to retrieve data from various sources.
Answer:
0.9961
Explanation:
Given that:
Proportion of time waiting for I/O operation to complete = 25% = 0.25
Number of programs waiting in memory = 4
Using the CPU Utilization formula :
CPU Utilization = 1 - p^n
1 - 0.25^4
1 - 0.00390625
0.99609375
Answer:
1) Meditate : Create a little space in your room where you can meditate (e.g. light candles and incense, play calming music). Reaching a meditative state takes practice but there are some great tips for beginners online. Meditation can help ease anxiety and improve concentration.
2) Watch something funny. Laughter really is the best medicine. It relieves physical tension, reduces stress and increases immunity…so watch your fave comedy and laugh your way to tranquility.
<u><em>Hope this helps.....</em></u>
<u><em>Pls mark this answer as brainliest :)</em></u>
<h2> </h2><h2> <u><em>
STAY COOL </em></u> </h2>
Answer:
Arrays are described as immutable because they cannot be changed once they are defined. (D on Edge)
Explanation:
It's in the notes and I just took the test (2020)
Answer:
Program :
list_1=[]#take the empty list.
size=int(input("Enter the size of the list: "))#take the size of the list from the user
for x in range(size): #for loop which insert the elemnt on the list.
list_1.append(int(input("Enter the "+str(x+1)+" element of the list: ")))#take the user input and insert the element.
element=int(input("Enter the element to be searched: "))#it take the elemnt to search.
loc=1#intialize the location value.
count=0
for x in list_1:#for loop to check the element.
if(x==element): #check the element.
print(loc,end=", ")#print the location of the element.
count=count+1
loc=loc+1
if(count==0):
print("The element is not present on the list")#print when elemnt are not present.
Output:
- If the user input 5 for the size and 1,2,3,4,5 for the list and 5 for the element, then it will print 5.
Explanation:
- The above code is in python language which is used to take the size for the list, then take the value to add on the list.
- Then the element is entered from the user to search on the list.
- Then the element is searched on the list with the help of for loop.
- It prints the location when the element is matched.