Answer:
The answer to this question is option "d".
Explanation:
In this question, the answer is data mining. Because Data mining is a technique that finds a piece of new information in a lot of the data. In the data mining collecting information from data is hopefully both new and useful. Data mining help us to discover new patterns and relationship in data to help make better decisions. It is used everywhere like Television and radio, Banking, Retail, and business. That's why data mining is useful.
Answer:
Following are the program in the Python Programming Language.
#declare empty string variable
s=""
#declare variable that store "*" as string
x= "*"
#set the while loop
while(len(s) < 777):
#initialize the value of 'x' in 's'
s= x
x += "*"
Explanation:
<u>Following are the description of the program</u>.
- Set an empty variable to store the string type values.
- Again, set a variable 'x' and initialize asterisks in it as a string.
- Set the while loop that iterate, when the length of the variable 's' is less than 777, then initialize the value of the variable 'x' in the variable 's' and concatenate asterisks with the variable 's'.
Greg is a Residential Adviser.
<em>I hope this helps!!!</em>
Answer:
Already filled
Explanation:
The code above is the syntax for class definition in Python programming language. def __init__(self, value): self.value is definition of the constructor for the class LooseChange. The constructor function in a class is used to instantiate new objects or instances of the class. For example, if we wanted to define a new object of the class LooseChange, we would use the constructor defined in our class LooseChange.