O Level Exam : Practical Question
📝 HTML
🎨 CSS
⚡ Java Script
# Dictionary with RollNo as key and Percentage as value students = { 101: 45, 102: 67, 103: 52, 104: 38, 105: 75, 106: 49, 107: 81, 108: 55, 109: 30, 110: 60 } print("Roll numbers with percentage greater than 50:") for rollno, percentage in students.items(): if percentage > 50: print(rollno)
▶ Run Code
🖥 Output: