Create a dictionary with the roll number, name and marks of n students in a class and display the names of students who have scored marks above 75.

Create a dictionary with the roll number, name and marks of n students in a class and display the names of students who have scored marks above 75.   Program no_of_std = int(input(“Enter number of students: “)) result = {} for i in range(no_of_std): print(“Enter Details of student No.”, i+1) roll_no = int(input(“Roll No: “)) … Read more

Input a list of numbers and find the smallest and largest number from the list Python Program

Input a list of numbers and find the smallest and largest number from the list Python Program   #create empty list mylist = [] number = int(input(‘How many elements to put in List: ‘)) for n in range(number): element = int(input(‘Enter element ‘)) mylist.append(element) print(“Maximum element in the list is :”, max(mylist)) print(“Minimum element in … Read more

(2024-25 New Syllabus) Practical File for Class 11 Computer Science (083)

11 CS Practical

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 File class 11. Students should learn and practice  these python programs.    Program 1: Input a welcome … Read more

Society Law and Ethics Notes and Question Answer Unit 3 Class 11

Society Law and Ethics Notes Unit 3 Class 11 Syllabus:  ● Cyber safety: safely browsing the web, identity protection, confidentiality, cyber trolls and bullying.  ● Safely accessing web sites: malware, viruses, trojans, adware ● E-waste management: proper disposal of used electronic gadgets ● Indian Information Technology Act (IT Act) ● Technology & Society: Gender and … Read more

Society Law and Ethics MCQs for Class 11 Computer Science, IP

Unit- III Society Law and Ethics MCQs with answer   Syllabus: Digital Footprints Digital society and Netizen: net etiquettes, communication etiquettes, social media etiquettes Data protection: Intellectual Property Right (copyright, patent, trademark), violation of IPR (plagiarism, copyright infringement, trademark infringement), open source softwares and licensing (Creative Commons, GPL and Apache) Cyber-crime: definition, hacking, eavesdropping, phishing … Read more

Society Laws and Ethics Assertion Reasoning Case Study Questions

Society Laws and Ethics Assertion Reasoning Case Study Questions   1. Which of the following are the best security measures that should be taken against phishing attacks ? a) Never open unknown or suspicious email attachments. b) Never share your personal information such as email, credit card number, etc on unknown sites. c) Both a … Read more

80+ Important MCQ on Computer Network Class 12

80+ Important MCQ on Computer Network Class 12   1. A Computer Network: a) Is a collection of hardware components and computers? b) Is interconnected by communication channels c) Allows sharing of resources and information d) All of the above   2. What is a Firewall in computer network? a) The physical boundary of network … Read more

Copywrite © 2020-2025, CBSE Python,
All Rights Reserved