Class 11th IP IMP QUESTION
Class 11th IMP QUESTION Informatics Practices Class XI – Sample Paper Solutions Informatics Practices (065) Class XI – Sample Paper Solutions (2024-25) SECTION A Q1. Outline one step to...
Class 11th IP Objective Question OBJECTIVE Computer Science MCQs (With Answers) Computer Science – MCQs (With Answers) 1. True/False: ROM is a non-volatile memory. True 2. Which of the...
Class 11th IP (065) Write a python program to Count Vowels, Consonants, Digits and Spaces SOLUTION.. while True: s = input("nEnter a string: ") vowels = consonants = digits...
Class 11th IP (065) Write a Python Program to Search an Element in a Dynamic Tuple SOLUTION.. t = () while True: print("n--- Tuple Menu ---") print("1. Create Tuple")...
Class 11th IP (065) Write a python program to find Largest and Smallest Element in a Dynamic Tuple SOLUTION.. t = () while True: print("n--- Tuple Menu ---") print("1....
Class 11th IP (065) Write a Python Program to create a Dynamic Tuple and Display Its Elements SOLUTION.. t = () while True: print("n--- Tuple Menu ---") print("1. Create...
Class 11th IP (065) Write a Python program to Find Highest and Lowest Value in a Dynamic Dictionary SOLUTION.. data = {} while True: print("n--- Dictionary Menu ---") print("1....
Class 11th IP (065) Write a Program to Search for a Key and Update Its Value SOLUTION.. data = {} # Dynamic dictionary creation n = int(input(“Enter number of...
Class 11th IP (065) Write a Program to create a Dynamic Dictionary (Key–Value Input & Display) SOLUTION.. data = {} while True: print("n--- Dictionary Menu ---") print("1. Add /...