File size: 362 Bytes
438c749
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import random

questions = [
    "Tell me about yourself.",
    "What are your strengths?",
    "Explain Python programming language.",
    "Describe a challenging project you worked on.",
    "Why do you want this job?",
    "Explain object oriented programming.",
    "What is machine learning?"
]

def generate_question():

    return random.choice(questions)