Class 11 IP Half Yearly Sample Paper 2022-23

Class 11 IP Half Yearly Sample Paper TIME : 3 HOURS                                           CLASS XI                                                            MM:80 General instructions : 1. All questions are compulsory. 2. Marks are indicated against each question. 3. Question paper consist four sections A, B, C & D. 4. Section A consist of 14 MCQs and 6 Fill in blanks one…

|

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…

Informatics Practices 065 Periodic Test Paper Class 12 2022-23

Informatics Practices 065 Periodic Test Paper Class 12 2022-23 Time: 90 Minutes/MM:40 General Instruction: All questions are compulsory. All questions carry equal marks.   A) Multiple Choice Questions. (10 × 1 =10) 1. What is Keywords ? A) Block of Code B) Pre-reserved words C) Type or Size of Data D) None of them  …

Real Time Currency Converter Python Project Class 12
|

Real Time Currency Converter Python Project Class 12

Real Time Currency Converter Python Project Class 12   Source Code: #Python Project Currency Converter import requests from tkinter import * import tkinter as tk from tkinter import ttk class RealTimeCurrencyConverter(): def __init__(self,url): self.data = requests.get(url).json() self.currencies = self.data[‘rates’] def convert(self, from_currency, to_currency, amount): initial_amount = amount if from_currency != ‘USD’ : amount = amount…

|

Half Yearly Sample Paper Class 12 Computer Science Set 2 2022-23

Half Yearly Sample Paper Class 12 Computer Science Set 2 2022-23 Time: 1:30 Hours/ Maximum marks:50   I. Choose the correct answer. 10 1. The smallest section of code that are used to perform particular task is called a) Subroutines b) Files c) Modules d) Pseudo code   2. A sequence of immutable objects are…