Answer:
Data mining is a process of extracting and discovering patterns in large data sets involving methods at the intersection of machine learning, statistics, and database systems. 
 
        
                    
             
        
        
        
<span>.jumbotron p 
{ 
color: #fff; 
font-size: 20px; 
}</span>
        
             
        
        
        
Answer:
Deep learning is an AI function that mimics the workings of the human brain in processing data for use in detecting objects, recognizing speech, translating languages, and making decisions. Deep learning AI is able to learn without human supervision, drawing from data that is both unstructured and unlabeled.
 
        
             
        
        
        
Answer:
This is python, I don't know what type of programming language you are learning.
import random
# Enter your code here
dice1 = random.randint(1,6)
dice2 = random.randint(1,6)
total = 0
while True:
    if dice1 == 1 and dice2 == 1:
        total += 1
        print("Rolled: " + str(dice1) + " " + str(dice2))
        break
    else:
        total += 1
        print("Rolled: " + str(dice1) + " " + str(dice2))
        dice1 = random.randint(1,6)
        dice2 = random.randint(1,6)
        
        
print("It took you "+ str(total) + " rolls to get snake eyes.")
Explanation: