Created
November 29, 2025 23:22
-
-
Save PieroPaialungaAI/3423247f8cfd69f917becec4832276cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| # Load the test file | |
| with open('data/test.json', 'r') as f: | |
| test_data = json.load(f) | |
| # Display a few example questions | |
| print("📝 EXAMPLE QUESTIONS FROM THE EXAM\n") | |
| print("="*70) | |
| for section in test_data['sections'][:2]: # Show first 2 sections | |
| print(f"\n🔹 Section {section['section']}: {section['title']}") | |
| print(f" Dataset: {section['dataset']}") | |
| print() | |
| # Show first question from each section | |
| question = section['questions'][0] | |
| print(f" Question {question['question_number']} ({question['points']} points):") | |
| print(f" {question['question']}") | |
| print() | |
| print("="*70) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment