Solved Computer Science Sample Paper Term 2 Class 12
Computer Science Sample Paper Term 2 Class 12 Sample Question Paper COMPUTER SCIENCE (Code: 083) Maximum Marks: 35 /Time: 2 hours General Instructions * The question paper is divided into 3 sections – A, B and C * Section A, consists of 7…
Create a CSV file by entering user-id and password, read and search the password for given userid
Create a CSV file by entering user-id and password, read and search the password for given userid # Python Program import csv with open("user_info.csv", "w") as obj: fileobj = csv.writer(obj) fileobj.writerow(["User Id", "password"]) while(True):…
Implement a stack using list Python Program for Class 11
Implement a stack using list Python Program #Python Program to implement stack, Stack operation (PUSH, POP, DISPLAY) stack=[] choice="y" while (choice=="y"): print("1.Push") print("2.Pop") print("3.Show") your_choice=int(input("Enter your…
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):…
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…
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)…
Computer Networking Terms Full Forms for Class 12
Computer Networking Terms Full Forms Sr.No. Acronym Definition 1 ACL Access Control List 2 AM Amplitude Modulation 3 ARP Address Resolution Protocol 4 ARPANET Advanced Research Projects Agency Network 5 BGP Border Gateway Protocol 6 CDMA Code…
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 …
50+ Important Data Structure MCQ for Class 12
50+ Important Data Structure MCQ for Class 12 1. ___________________ is a way to represent data in memory. a) Data Handling b) Data Structure c) Data Dumping d) Data Collection 2. Python built-in data structures are a) integer,float,string…