Computer Science

Class 12 Computer Science File Handling in Python NCERT Exercise solution

File Handling in Python

Class 12 Computer Science File Handling in Python Summary A file is a named location on a secondary storage media where data are permanently stored for later access. A text file contains only textual information consisting of alphabets, numbers and other extensions like .txt, .py, .c, .csv, .html, etc. Each byte of a text file […]

Class 12 Computer Science File Handling in Python NCERT Exercise solution Read More »

Class 12 Computer Science – Exception Handling in Python NCERT Exercise Solutions

ncert_ch1_exception_handling_python

Exception Handling in Python NCERT Exercise Solutions Class 12 Computer Science Summary Syntax errors or parsing errors are detected when we have not followed the rules of the particular programming language while writing a program. When syntax error is encountered, Python displays the name of the error and a small description about the error. The

Class 12 Computer Science – Exception Handling in Python NCERT Exercise Solutions Read More »

Python 3 Setup and Installation Guide

Python Download and Installatioin

How to Install Python From the Full Installer To install full-featured Python development environment, installing from the full installer is the right choice. It offers more customization and control over the installation You can install from the full installer in two steps. Step 1: Download the Full Installer Follow these steps to download the full

Python 3 Setup and Installation Guide Read More »

Encoding Schemes and Number Systems NCERT Exercise solutions

Number System & Encoding Scheme NCERT Exercise Solution

Encoding Schemes and Number Systems NCERT Exercise Solutions Summary Encoding scheme maps text into the codes that facilitate communication among computers. Textual data is encoded using ASCII, ISCII or Unicode. Unicode scheme is a character encoding standard which can encode all the characters of almost all languages of the world. Computer being a digital system

Encoding Schemes and Number Systems NCERT Exercise solutions Read More »

Python Important Programs and Practical’s

Python_Program_Practicals

Important Python Programs and Practical – Basic and Advanced Level Python Programs – Basic Python Fundamentals. Flow of Control – Decision Making [if else] Flow of Control – Looping [while, for] Flow of Control – Jump Statement (break, continue) 20 Patterns Printing Programs Python Programs – Intermediate String Manipulation (Text Handling) List Manipulation Tuples Dictionary

Python Important Programs and Practical’s Read More »

CBSE Annual Exam Question Paper for Class 11 Computer Science Sample Papers

Computer Science Class 11 Annual exam Question Paper with solution | Sample paper class 11 2021 | CS   CBSE Sample Question Papers for Class 11 Computer Science with Answers are now available for download in PDF format. CBSE Sample Papers are provided below with answers as per the guidelines of CBSE board marking scheme. Central Board of

CBSE Annual Exam Question Paper for Class 11 Computer Science Sample Papers Read More »

Class 11 Computer Science NCERT Exercise Solution

ncert class 11 computer science solution

Class 11 – Computer Science – NCERT Solution Chapter 1: Computer System Chapter 2: Encoding Schemes and Number System Class 11 NCERT Exercise Solution of Computer Science Chapter 3: Emerging Trends Chapter 4: Introduction to Problem Solving Class 11 NCERT Exercise Solution of Computer Science Chapter 5: Getting Started with Python Chapter 6: Flow of

Class 11 Computer Science NCERT Exercise Solution Read More »

Computer System: Overview – Notes

Computer Systems www.mycstutorial.in

A computer system primarily comprises of a central processing unit, memory, input/output devices, and storage devices. All these components function together as a single unit to deliver the desired output. A computer is an electronic device that can be programmed to accept data (input), process it and generate result (output).

Computer System: Overview – Notes Read More »

Introduction to Problem Solving – Notes

Problem Solving

Introduction to Problem Solving Notes Topics: Introduction to problem solving: Steps for problem solving ( analysing the problem, developing an algorithm, coding, testing and debugging). Representation of algorithms using flow chart and pseudo code, Decomposition Introduction Computers is machine that not only use to develop the software. It is also used for solving various day-to-day

Introduction to Problem Solving – Notes Read More »

Getting Started with Python – Notes

getting_started_python

Getting Started with Python Programming Language Topics: Introduction Python is an open-source, object-oriented, high-level programming language developed by Guido Van Rossum in 1990, and released in 1991, at the National Research Institute for Mathematics, Netherlands. Presently owned by Python Software Foundation (PSF). Python is influenced by two programming languages: ABC language, a teaching language created to replace the programming

Getting Started with Python – Notes Read More »

Python Fundamentals – Notes

python fundamentals

Python Character Set, Tokens Keyword, Identifier, Rules for writing Identifier, Literal, Operator, Punctuator , Variables – creation and assignment, Concept of L-value and R-value , Comments and Its uses , Input – Output in Python, Data Types -Integer, Floating-point, Complex, & Boolean, String, List, Tuple, None,, Dictionary, Mutable and Immutable data types

Python Fundamentals – Notes Read More »

Data Handling – Notes

data handling in python

Data Handling in Python Topics are discussed: Operators: arithmetic operators, relational operators, logical operators, assignment operator, augmented assignment operators, identity operators (is, is not), membership operators (in, not in), precedence of operators Expressions, statement, type conversion: expression, evaluation of an expression, python statement, type conversion (explicit & implicit conversion) Debugging / Errors: syntax errors, logical

Data Handling – Notes Read More »

Flow of Control (Selection Statement, Iterative Statement and Jump Statement) – Notes

Flow of Control Topics: Introduction The order of execution of the statements in a program is known as flow of control. The flow of control can be implemented using control structures. Python supports two types of control structures—Selection and Repetition. Indentation Leading whitespace (spaces and tabs) at the beginning of a statement is called indentation.

Flow of Control (Selection Statement, Iterative Statement and Jump Statement) – Notes Read More »

You cannot copy content of this page

Scroll to Top