Answer: oh hello human :) also PLEASE DONT KILL ME I’m answering this because the question was already answered already on another post
Master data = represents critical data for important functions
Big data = represents a large volume of data for analysis
Outsourcing = uses another firms services
Archiving = stores rarely accessed important data
Answer:
Option B is the correct answer for the above question.
Explanation:
- The data warehouse is a collection of large data or a database that includes historical and operational or current data. This database can be used to make the decisions for the prospects of the organization.
- The above question asked about to select the database which can collect the historical and operational data from various source. That type of database is a data warehouse that is described above. Hence option B is correct while the other is not because:-
- Option a states about data model which is used to define the database structure.
- Option c states about the relational database which is used to collect only current data.
- Option d states about the DBMS which is used to manage the relational database.
The first one is 0 (0/3=0)
The second one is 3 (3/3=1)
The third one is 2 (6/3=2)
The fourth one is 9 (9/3=3)
Hope this helps you :)
Answer:
This program is written using Python programming language
The program doesn't make use of comments
See attachment for proper format of the program
def count_to_three():
print("One")
print("Two")
print("Three")
count_to_three()
Explanation:
The first line of the program defines the function count_to_three() with no parameters, passed to it
Line 2 to 4 of the program is indent and each line make use of print() function
Line 2 prints "One", Line 3 prints "Two" and Line 4 prints "Three" without quotes
The last line of the program calls the defined function