Chapter 2: Python Programming Fundamentals

access_time 2025-08-17T05:18:50.054Z face S P SHARMA CLASSES
Chapter 2: Python Programming Fundamentals Familiarization with the basics of Python programming Knowledge of Data Types Operators Expressions, statement, type conversion, and input/output Errors ...

Storage Classes in C

access_time 2025-02-27T10:06:24.713Z face S P SHARMA CLASSES
Storage Classes in C by S P SHARMA SIR Storage Classes in C Storage Class Keyword Scope /Lifetime Default Initial Value Automatic auto Block Until block exits Garbage (undefined) Register register Block Until block exits Garbage (undefined) Static static File/Block Program lifetime Zero (if not ini...

Correction in CS Cracker Vol - 3

access_time 2024-09-01T16:47:01.393Z face S P SHARMA CLASSES
Correction in CS Cracker Vol - 3 Qus 80: Answer Should be (A) Qus 81: Answer Should be (B) Qus 82: Answer Should be (A) Qus 83: Answer Should be (B) What is the type of inf? Change int to inf print(“%56s”%X) Change , to % Qus 70: Option (b) print(“ns”%S) Change -n to n Qus 73: Remove if the system d...

Python Worksheets

access_time 2024-08-28T04:33:54.105Z face S P SHARMA CLASSES
Python Worksheets 1. Revision Tour 2. Function in Python 3. Exception Handling in Python 4. File Handling in Python 5. Stack in Python ...

Class 12 CS Python Stack Practice Questions

access_time 2024-08-28T03:49:27.357Z face S P SHARMA CLASSES
Class 12 CS Python Stack Practice Questions 1. Suppose L = [3, 4, 5, 20, 4, 5], What is L after L.pop()? [3,4,5,20,4] [3,5,20,4,5] [3,5,20,5] Error 2. A School has created a dictionary containing top players and their runs as key value pairs of cricket team. Write a program with separate user define...