Spaces:
Sleeping
Sleeping
Update mcq_test.py
Browse files- mcq_test.py +60 -1
mcq_test.py
CHANGED
@@ -31,7 +31,66 @@ def main():
|
|
31 |
st.session_state.answers = []
|
32 |
if 'questions' not in st.session_state:
|
33 |
# Your MCQ string goes here
|
34 |
-
mcq_list = """1. Which data analysis technique is primarily used to uncover underlying patterns and trends in data?
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
st.session_state.questions = parse_mcq_questions(mcq_list)
|
36 |
|
37 |
# Display current question number and total questions
|
|
|
31 |
st.session_state.answers = []
|
32 |
if 'questions' not in st.session_state:
|
33 |
# Your MCQ string goes here
|
34 |
+
mcq_list = """1. Which data analysis technique is primarily used to uncover underlying patterns and trends in data?
|
35 |
+
- A) Data Cleaning
|
36 |
+
- B) Exploratory Data Analysis
|
37 |
+
- C) Database Management
|
38 |
+
- D) System Testing
|
39 |
+
|
40 |
+
2. What does "Data Cleaning" refer to in the context of data analysis?
|
41 |
+
- A) Removing irrelevant data
|
42 |
+
- B) Transforming data types
|
43 |
+
- C) Handling missing values and inconsistencies
|
44 |
+
- D) All of the above
|
45 |
+
|
46 |
+
3. What is the purpose of foreign key constraints in database management?
|
47 |
+
- A) To ensure data integrity and relationships between tables
|
48 |
+
- B) To speed up query execution
|
49 |
+
- C) To encrypt sensitive data
|
50 |
+
- D) To define primary keys
|
51 |
+
|
52 |
+
4. Which of the following is a key aspect of "Data Science"?
|
53 |
+
- A) Building machine learning models
|
54 |
+
- B) Extracting insights from data
|
55 |
+
- C) Visualizing data
|
56 |
+
- D) All of the above
|
57 |
+
|
58 |
+
5. What is a primary goal of "relevant analytics experience"?
|
59 |
+
- A) Gathering data from various sources
|
60 |
+
- B) Deriving actionable insights from data
|
61 |
+
- C) Building complex machine learning models
|
62 |
+
- D) Managing large databases
|
63 |
+
|
64 |
+
6. "Data Analytics" typically involves which of the following?
|
65 |
+
- A) Statistical analysis
|
66 |
+
- B) Data visualization
|
67 |
+
- C) Data interpretation
|
68 |
+
- D) All of the above
|
69 |
+
|
70 |
+
7. What are "large data sets" often referred to as?
|
71 |
+
- A) Big Data
|
72 |
+
- B) Small Data
|
73 |
+
- C) Medium Data
|
74 |
+
- D) Tiny Data
|
75 |
+
|
76 |
+
8. "Data Sources" can include which of the following?
|
77 |
+
- A) Databases
|
78 |
+
- B) APIs
|
79 |
+
- C) CSV files
|
80 |
+
- D) All of the above
|
81 |
+
|
82 |
+
9. What is the purpose of "machine learning models"?
|
83 |
+
- A) To predict outcomes based on data
|
84 |
+
- B) To store data efficiently
|
85 |
+
- C) To visualize data relationships
|
86 |
+
- D) To clean and preprocess data
|
87 |
+
|
88 |
+
10. What is a key aspect of "machine learning systems deployment"?
|
89 |
+
- A) Integrating models into real-world applications
|
90 |
+
- B) Training machine learning models
|
91 |
+
- C) Collecting and labeling data
|
92 |
+
- D) Evaluating model performance
|
93 |
+
""" # Add your full string here
|
94 |
st.session_state.questions = parse_mcq_questions(mcq_list)
|
95 |
|
96 |
# Display current question number and total questions
|