Answer:
A. Pivot Table
Explanation:
Given that a Pivot Table is a form of a table in statistics that comprises various data of several tables in a shortened form.
This table is then used to carry out analysis of data in numerous ways to reach a meaningful conclusion to make a decision.
Hence, in this case, the correct answer is a PIVOT TABLE.
Specialized data analysts are needed for data mining in order to ask ad hoc inquiries and swiftly get responses from the system. choose one. This claim is false.
<h3>What does data mining mean exactly?</h3>
- Large data sets are sorted through in data mining in order to find patterns and relationships that may be used in data analysis to assist solve business challenges.
- Enterprises can forecast future trends and make more educated business decisions thanks to data mining techniques and technologies.
- Increasingly huge databases are explored via data mining, which also helps market segmentation.
- It is feasible to predict a customer's behavior to guide personalized loyalty marketing by analyzing the links between criteria like their age, gender, and preferences.
To learn more about Data mining, refer to:
brainly.com/question/2596411
#SPJ4
Answer:
eye contact with the audience, thorough research, you must give your audience time to ask questions
A general rule for adding text to
a slide is to use not more than two fonts in a presentation and vary the font
size. Furthermore, to make a slide legible, in addition to the point size, attention must be paid to the word count per slide, the choice of typeface, and the visual
balance of space to text.
Answer:
num = int(input("enter a number:"))
print(num * 8)
Explanation:
num is just a variable could be named anything you want.
if code was like this num = input("enter a number:")
and do a print(num * 8)
we get an error because whatever the user puts in input comes out a string.
we cast int() around our input() function to convert from string to integer.
therefore: num = int(input("enter a number:"))
will allow us to do print(num * 8)