| |

Viva Questions for Class 11 Computer Science Python

Viva Questions for Class 11 Computer Science In this article students can find the most commonly asked  ” Viva Questions for Class 11 Computer Science Python ” in their practical examination. You have to take an overview of these viva questions to clear the basic concepts of python programming. These questions are totally based on…

(Solved) Python String Exercise For Absolute Beginners

Python String Exercise-1 Here’s an exercise for beginners on creating and manipulating strings in Python: Create a variable called name and assign it a string value representing your name. Use the len() function to find the length of your name and assign the result to a variable called name_length. Print a message to the console…

|

Create a CSV movies.csv to hold movie records like Movies ID Movies name and Rating (out of 5 stars) using the list.

Create a CSV movies.csv to hold movies’ records like Movies ID, Movies name, and Rating (out of 5 stars) using the list. from csv import writer import csv def create(): f = open(“e:\movies.csv”,”a”) dt = writer(f) dt.writerow([‘Movie_ID’,’Movie_Name’,’Movie_Rating’]) while True: mv_id= input(“Enter Movie ID:\t”) mv_name = input(“Enter Movie name:\t”) mv_rating = input(“Enter Movie Rating(out of 5…

|

Write a menu based program to add delete and display the record of players by using list as Stack in python

Write a menu based program to add delete and display the record of players by using list as Stack in python. Record of a player contains: Player code, score and Rank. Program to add delete and display the record of players by using list as Stack in python   player = [] ch = ‘y’…

|

Write a menu driven program in Python that asks the user to add display and search records of students stored in a binary file.

Write a menu driven program in Python that asks the user to add, display, and search records of students stored in a binary file. The student record contains roll no, name and test score. It should be stored in a dictionary object. Your program should pickle the object and save it to a binary file….

|

Industrial Gate Management System Python Project

Industrial Gate Management System Python Project   Explanation :  The aim of this project is to manage the visitors/resident record who has entered the industry campus. An industry that also has residential area in its campus has to manage the incoming/outgoing data of visitor either they are the employee, guests, tutor, milkman etc. The project …

|

String Manipulation in Python Questions and Answers Class 11-12

String Manipulation in Python Questions and Answers Class 11-12   Q.1 : Which  of  the  following returns a copy of  the string with its first character  capitalized ? a) string.upper() b) string.capitalize() c) capitalize() d) all  of these   Q.2:Which of the following  is not a python legal string operation ? a) ‘abc’ + ‘abc’…

|

2022-23 Informatics Practices Sample Paper Class 12

2022-23 Informatics Practices Sample Paper Class 12   TIME: 3 /HOURS M.M.70 General Instructions: (1) This question paper contains five sections, Section A to E. (2) All questions are compulsory. (3) Section A have 18 questions carrying 01 mark each. (4) Section B has 07 Very Short Answer type questions carrying 02 marks each. (5)…

|

2022-23 Computer Science Sample Paper for Class 12

2022-23 Computer Science Sample Paper for Class 12 Here is CBSE class 12 Sample Question Paper of Computer Science.  Subject : Computer Science, Subject Code: 083 Maximum Marks: 70 Time Allowed: 3 hours General Instructions: 1. This question paper contains five sections, Section A to E. 2. All questions are compulsory. 3. Section A have…