What Is Data Mining?
As the number of data on the internet increases, the extraction of data professionally and keeping it secure without allowing it from falling into the wrong hands, and is an increasingly important part of any organizations ability to manage and protect critical and confidential information. In this regard, you are asked to do some research, and write a report that answers the crucial questions related to Data Mining: You should tackle the following points: 1. What is Data mining? What does it imply? 2. Data mining is involved in many fields and has several applications such as in Business. Describe how data mining can be used in business and what are its impacts. 3. What is KDD? 4. How does Data mining relate to KDD (similarity), and what is the difference between them? Discuss each briefly. 5. List three Security Issues Related to Data Mining. Report Writing: You should follow the following guidelines while writing your report: ? Your report should be between 300 and 400 words in length. ? Ensure that your report has an appropriate structure and writing style. ? Your report should include at least one figure/table. ? You should include the references (at least two). 2: Turtle Graphics is a Python feature like a drawing board, which lets us command a turtle to draw all over it! We can use functions like penup(), pendown() pensize(..), forward ( ) , right( ), color( ), fill( ), etc. which can control the drawing, move the turtle around, and make the proper coloring and filling. Commonly used turtle methods are found in the posted pdf file turtle Turtle graphics Python 3.7.1rc1 documentation To make use of the turtle methods and functionalities, we need to import turtle. turtle comes packed with the standard Python package and need not be installed externally. The roadmap for executing a turtle program follows 3 steps: 1. Import the turtle module 2. Create a turtle to control. 3. Draw around using the turtle methods. Problem: In geometry, a star is a five-sided polygon. Each internal angle is 36 degrees. Based on what you have learned in this course and using the appropriate commands, you are asked to implement a python program that draws the below diagram using the turtle. You should consider the following points in your solution: 1- Each side has a length of 60 units. 2- Stars have at least 4 different border colors. 3- Stars are all filled with the shown color. 4- The border lines should be thick enough. 5- The final shape of the output should be as shown above. 6- You might place the desired colors in a list to access them by index in the drawing loop. 7- Make sure to set properly the starting position (x & y) of your drawing, to maintain the above diagram. Hint: You can use the below colors and fills colors= [‘red’, ‘pink’, ‘brown’, ‘orange, black’, ‘purple’, ‘cyan’, ‘green’] fill= [‘green’, ‘black’, ‘orange’, ‘brown’, ‘pink’, ‘cyan’, ‘purple’, ‘red’]