Thursday, January 22, 2026

Create a Python Series Object with the Sequence – a,b,c,d

import pandas as pd

data = ['a', 'b', 'c', 'd']

s = pd.Series(data)

print(s)


Output : 

0    a
1    b
2    c
3    d
dtype: object

Wednesday, January 21, 2026

CBSE Grade 10 Final Exam Time Table 2026

S.NO.

Date

Day

Subject

Subject Code

 

1

17 / 02 / 2026

Tuesday

MATHEMATICS
STANDARD

041

 

MATHEMATICS
BASIC

241

 

2

21 / 02 / 2026

Saturday

ENGLISH
(COMMUNICATIVE)

101

 

ENGLISH
(LANGUAGE AND LITERATURE)

184

 

3

25 / 02 / 2026

Wednesday

SCIENCE

086

 

4

27 / 02 / 2026

Friday

COMPUTER
APPLICATIONS

165

 

INFORMATION
TECHNOLOGY

402

 

ARTIFICIAL
INTELLIGENCE

417

 

5

28 / 02 / 2026

Saturday

SANSKRIT
(COMMUNICATIVE)

119

 

SANSKRIT

122

 

6

02 / 03 / 2026

Monday

HINDI COURSE-A

002

 

HINDI COURSE-B

085

 

7

05 / 03 / 2026

Thursday

KANNADA

015

 

8

07 / 03 / 2026

Saturday

SOCIAL SCIENCE

087

 

 Timings : 

9:50 - Entry into the Exam Hall.

10:00 - Issue of Answer Scripts

10:15 - Issue of Question Paper

10:15 to 10:30 - Reading of the Question Paper

10:30 to 1:30 - Writing Time



 


Tuesday, January 20, 2026

Python Libraries

 

INTRODUCTION TO PYTHON LIBRARIES 

Python has a huge collection of libraries that help in creating a number of interactive applications.

A Python Library is a collection of related modules. These modules can be used repeatedly in various programs without the need to write the same code again and again.

Each Python Library contains a large number of modules that one can import and use.

The most commonly used Python Libraries are :  Numpy, Pandas, Matplotlib, etc…,

 

A Module can be imported into a Python Program with an “import” statement.

Syntax : import Module_Name

Eg : import pandas

Eg : import math

 

An Alias Name can also be used while Importing a Module.

Syntax : import Module_Name as Alias_Name

Eg : import pandas as pd

‘as’ is a keyword used for giving an Alias Name for the Module.

IP CBSE Sample Papers

  IP CBSE Sample Paper 2025 ~ Solution IP CBSE Sample Paper 2024 ~ Solution IP CBSE Sample Paper 2023 ~ Solution IP CBSE Sample Paper 202...