Electronic Configuration Project using Python for Class 11
|

Electronic Configuration Project using Python for Class 11

Fun with Chemistry: Electronic Configuration Project using Python for Class 11 CS In this post, we’ll explore a simple Python program that helps you find the electronic configuration of elements using their atomic number or symbol. It’s perfect for learning Python basics like functions, loops, and error handling while diving into a cool chemistry topic….

Computer Organisation for Class 11
|

Basic Computer Organisation for Class 11: CBSE Easy Notes

Basic Computer Organisation for Class 11: CBSE Easy Notes Introduction to Computer System Hey Class 11 CBSE students! A computer system is a smart machine that processes data using hardware and software. It takes input, processes it via the CPU, and gives output—your personal assistant! This is key for CBSE Computer Science.   Why Learn?…

|

Python Story Generator using random function

Python Story Generator In the world of programming, where logic and precision often take center stage, it’s refreshing to explore the creative side of coding. Imagine a Python script that not only adheres to the rules of syntax but also weaves enchanting tales with a simple execution. Enter the Python Story Generator, a whimsical piece…

| |

Simple Billing System in Python for Class 11

Simple Billing System in Python Here a simple billing software written in Python. It allows you to create invoices for customers, calculate discounts based on the payment method, and include additional costs for a carry bag. Here’s an explanation of the program for class 11 students: The program starts with an infinite loop using while…

| |

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…

|

Data Handling Worksheet Class 11 Computer Science

Data Handling Worksheet Class 11 Computer Science   Q.1: Which Python built-in function returns the unique number assigned to an object? a) Identity() b) Id() c) Refnum() d) Ref()   Q.2: The operator used to check if both the operands reference the same object memory, is the ………. operator. a) In b) Id c) Is…

|

Python Fundamentals Worksheet Class 11

Python Fundamentals Worksheet Class 11   Q.1: Which of the following is correct as an identifier? a) Int b) Surface area c) Omega d) 1volume   Q.2:Python is a …………………… language. a) Low level b) High level c) Machine d) Assembly   Q.3: “Hello”*2= a) “Hello2” b) “hellohello” c) “HelloHello” d) “Hello2Hello”   Q.4: Which of…

|

Important Questions Data Handling Class 11 Computer Science

Important Questions Data Handling Class 11 Computer Science Short Answer Type Questions   Q.1 What are data types? What are Python‟s built-in core data types? Ans: Every value in Python has a datatype. Since everything is an object in Python programming, data types are actually classes and variables are instance (object) of these classes. There…