|

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: “))…

|

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…

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

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

|

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 questions. 3. Part – B has three sections Section-I is…

| |

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 List in Python questions. It covers all possible List Manipulation in…

|

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…

|

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…

|

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…

|

Term 1 Practice Questions Class 12 Computer Science 083

Term 1 Practice Questions Class 12 Computer Science 083 Session: 2021-22 In this section there are 55 Practice Questions released by CBSE for Class 12 Computer Science.     1. If the value of i is 5, the expression i != 6 a) has the value False b) has the value True c) sets the value…

|

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…