(2024-25 New Syllabus) Practical File for Class 11 Computer Science (083)
Practical List for Class 11 Computer Science (083) suggested by CBSE for Session 2024-25. Programming Language- Python Practical File for Class 11 Computer Science Here are the programs which are suggested by CBSE for Computer Science Practical…
Term 2 Sample Paper Class 12 Computer Science (083)
Term 2 Sample Paper Class 12 Computer Science (083) Set-1 Max. Marks: 35 Duration: 2:00 Hrs General Instructions: 1. This question paper contains two parts A and B. Each part is compulsory. 2. Part-A has 8 MCQ questions of 1 mark each, Attempts any 5…
70+ Important List Manipulation in Python MCQ Class 11
70+ List Manipulation in Python MCQ In this section you will practice List in Python MCQ for your board exam preparation. These MCQs are designed for objective as well as subjective type questions. These List in Python MCQ will also help in Output based…
Digital Clock in Python using Tkinter
Digital Clock in Python using Tkinter Source Code: import time from tkinter import * root = Tk() root.title("Digital Clock") root.resizable() lbl = Label(root) lbl.grid(row=0, column=0) def display(): time_get = time.strftime("%Y/%m/%d\n%I:%M:%S %p")…