SAMPLE QUESTION PAPER
CLASS XII
INFORMATICS PRACTICES (065)
TIME: 03 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 has 18 questions carrying 01 mark each.
4. Section B has 07 Very Short Answer type questions carrying 02 marks each.
5. Section C has 05 Short Answer type questions carrying 03 marks each.
6. Section D has 02 questions carrying 04 marks each.
7. Section E has 03 questions carrying 05 marks each.
8. All programming questions are to be answered using Python Language only.
SECTION A
1. A ____________is a device that connects the organisation’s network with the 1
outside world of the Internet.
i. Hub
ii. Modem
iii. Gateway
iv. Repeater
2. When e-waste such as electronic circuit boards are burnt for disposal, the 1
elements contained in them create a harmful chemical called ________which
causes skin diseases, allergies and an increased risk of lung cancer.
i. Hydrogen
ii. Beryllium
iii. Chlorine
iv. Oxygen
3. Copyright, Patent and Trademark comes under: 1
i. Intellectual Property Right
ii. Individual Property Right
iii. Industrial Property Right
iv. International Property Right
4. Predict the output of the following query: 1
SELECT MOD (9,0);
i. 0
ii. NULL
iii. NaN
iv. 9
5. Which of the following SQL functions does not belong to the Math functions 1
category?
i. POWER()
ii. ROUND()
iii. LENGTH()
iv. MOD()
6. ________ is not a FOSS tool. 1
i. Libre Office
ii. Mozilla Firefox
iii. Google Chrome
iv. Python
7. CSV stands for: 1
i. Column Separated Value
ii. Class Separated Value
iii. Comma Separated Value
iv. Comma Segregated Value
8. Raj, a Database Administrator, needs to display the average pay of workers 1
from those departments which have more than five employees. He is
experiencing a problem while running the following query:
SELECT DEPT, AVG(SAL) FROM EMP WHERE COUNT(*) > 5
GROUP BY DEPT;
Which of the following is a correct query to perform the given task?
i. SELECT DEPT, AVG(SAL) FROM EMP WHERE COUNT(*) > 5
GROUP BY DEPT;
ii. SELECT DEPT, AVG(SAL) FROM EMP HAVING COUNT(*) >
5 GROUP BY DEPT;
iii. SELECT DEPT, AVG(SAL) FROM EMP GROUP BY DEPT
WHERE COUNT(*) > 5;
iv. SELECT DEPT, AVG(SAL) FROM EMP GROUP BY DEPT
HAVING COUNT(*) > 5;
9. Predict the output of the following query: 1
SELECT LCASE (MONTHNAME ('2023-03-05'));
i. May
ii. March
iii. may
iv. march
10. Which of the following command will show the last 3 rows from a Pandas 1
Series named NP?
i. NP.Tail( )
ii. NP.tail(3)
iii. NP.TAIL(3)
iv. All of the above
11. With reference to SQL, identify the invalid data type. 1
i. Date
ii. Integer
iii. Varchar
iv. Month
12. In Python Pandas, while performing mathematical operations on series, index 1
matching is implemented and all missing values are filled in with _____by
default.
i. Null
ii. Blank
iii. NaN
iv. Zero
13. By restricting the server and encrypting the data, a software company's 1
server is unethically accessed in order to obtain sensitive information. The
attacker blackmails the company to pay money for getting access to the data,
and threatens to publish sensitive information unless price is paid. This kind
of attack is known as:
i. Phishing
ii. Identity Theft
iii. Plagiarism
iv. Ransomware
14. In SQL, the equivalent of UCASE() is: 1
i. UPPERCASE ()
ii. CAPITALCASE()
iii. UPPER()
iv. TITLE ()
15. Collection of hyper linked documents available on the internet is known 1
as_______________.
i. Website
ii. Webpage
iii. Web Server
iv. Web Hosting
16. _______________is a non-profit organization that aims to build a publicly 1
accessible global platform where a range of creative and academic work is
shared freely.
i. Creative Cost
ii. Critical Commons
iii. Creative Commons
iv. Creative Common
17. Assertion (A):- MODEM stands for modulator-demodulator. 1
Reasoning (R): - It is a computer hardware device that converts data from a
digital format to analog and vice versa.
i. Both A and R are true and R is the correct explanation for A
ii. Both A and R are true and R is not the correct explanation for A
iii. A is True but R is False
iv. A is false but R is True
18. Assertion (A):- To use the Pandas library in a Python program, one must 1
import it.
Reasoning (R): - The only alias name that can be used with the Pandas library
is pd.
i. Both A and R are true and R is the correct explanation for A
ii. Both A and R are true and R is not the correct explanation for A
iii. A is True but R is False
iv. A is false but R is True
SECTION B
19. Briefly explain the basic concepts of a web server and web hosting. 2
OR
Rati is doing a course in networking. She is unable to understand the concept of
URL. Help her by explaining it with the help of suitable example.
20. The python code written below has syntactical errors. Rewrite the correct code 2
and underline the corrections made.
Import pandas as pd
df ={"Technology":["Programming","Robotics","3D
Printing"],"Time(in months)":[4,4,3]}
df= Pd.dataframe(df)
Print(df)
21. Consider the given SQL string: 2
“12#All the Best!”
Write suitable SQL queries for the following:
i. Returns the position of the first occurrence of the substring “the” in
the given string.
ii. To extract last five characters from the string.
22. Predict the output of the given Python code: 2
import pandas as pd
list1=[-10,-20,-30]
ser = pd.Series(list1*2)
print(ser)
23. Differentiate between the active digital footprint and passive digital footprints. 2
24. Complete the given Python code to get the required output as: Rajasthan 2
import _________ as pd
di = {'Corbett': 'Uttarakhand', 'Sariska':
'Rajasthan', 'Kanha': 'Madhya Pradesh’,
'Gir':'Gujarat'}
NP = ___________. Series( _____ )
print(NP[ ___________ ])
25. What are aggregate functions in SQL? Name any two. 2
SECTION C
26. Based on the SQL table CAR_SALES, write suitable queries for the following: 3
+--------+-------------------+--------+-------+-------+
| NUMBER | SEGMENT | FUEL | QT1 | QT2 |
+--------+-------------------+--------+-------+-------+
| 1 | Compact HatchBack | Petrol | 56000 | 70000 |
| 2 | Compact HatchBack | Diesel | 34000 | 40000 |
| 3 | MUV | Petrol | 33000 | 35000 |
| 4 | MUV | Diesel | 14000 | 15000 |
| 5 | SUV | Petrol | 27000 | 54000 |
| 6 | SUV | Diesel | 18000 | 30000 |
| 7 | Sedan | Petrol | 8000 | 10000 |
| 8 | Sedan | Diesel | 1000 | 5000 |
+--------+-------------------+--------+-------+-------+
i. Display fuel wise average sales in the first quarter.
ii. Display segment wise highest sales in the second quarter.
iii. Display the records in the descending order of sales in the second
quarter.
OR
Predict the output of the following queries based on the table CAR_SALES
given above:
i. SELECT LEFT(SEGMENT,2) FROM CAR_SALES WHERE FUEL=
"PETROL";
ii.SELECT (QT2-QT1)/2 "AVG SALE" FROM CAR_SALES WHERE
SEGMENT= "SUV";
iii. SELECT SUM(QT1) "TOT SALE" FROM CAR_SALES WHERE
FUEL= "DIESEL";
27. Create a DataFrame in Python from the given list: 3
[[‘Divya’,’HR’,95000],[‘Mamta’,’Marketing’,97000],[‘Payal’,’IT’,980000],
[‘Deepak’,’Sales’,79000]]
Also give appropriate column headings as shown below:
28. Write MySQL statements for the following: 3
i. To create a database named FOOD.
ii. To create a table named Nutrients based on the following specification:
Column Name Data Type Constraints
Food_Item Varchar(20) Primary Key
Calorie Integer
29. Richa, recently started using her social media account. Within a few days, she 3
befriends many people she knows and some that she does not know. After
some time, she starts getting negative comments on her posts. She also finds
that her pictures are being shared online without her permission.
Based on the given information, answer the questions given below.
i. Identify the type of cybercrime she is a victim of.
ii. Under which act, she can lodge a complaint to the relevant authorities?
iii. Suggest her any two precautionary measures which she should take in
future while being online to avoid any such situations.
OR
Mention any three health hazards associated with inappropriate and excessive
use of gadgets.
30. Consider the given DataFrame ‘Genre’: 3
Type Code
0 Fiction F
1 Non Fiction NF
2 Drama D
3 Poetry P
Write suitable Python statements for the following:
i. Add a column called Num_Copies with the following data:
[300,290,450,760].
ii. Add a new genre of type ‘Folk Tale' having code as “FT” and 600
number of copies.
iii. Rename the column ‘Code’ to ‘Book_Code’.
SECTION D
31. Preeti manages database in a blockchain start-up. For business purposes, she 4
created a table named BLOCKCHAIN. Assist her by writing the following
queries:
TABLE: BLOCKCHAIN
i. Write a query to display the year of oldest transaction.
ii. Write a query to display the month of most recent transaction.
iii. Write a query to display all the transactions done in the month of May.
iv. Write a query to count total number of transactions in the year 2022.
32. Ekam, a Data Analyst with a multinational brand has designed the DataFrame 4
df that contains the four quarter’s sales data of different stores as shown below:
Store Qtr1 Qtr2 Qtr3 Qtr4
0 Store1 300 240 450 230
1 Store2 350 340 403 210
2 Store3 250 180 145 160
Answer the following questions:
i. Predict the output of the following python statement:
a. print(df.size)
b. print(df[1:3])
ii. Delete the last row from the DataFrame.
iii. Write Python statement to add a new column Total_Sales which is the
addition of all the 4 quarter sales.
OR
(Option for part iii only)
Write Python statement to export the DataFrame to a CSV file named data.csv
stored at D: drive.
SECTION E
33. Write suitable SQL queries for the following: 5
i. To calculate the exponent for 3 raised to the power of 4.
ii. To display current date and time.
iii. To round off the value -34.4567 to 2 decimal place.
iv. To remove all the probable leading and trailing spaces from the
column userid of the table named user.
v. To display the length of the string ‘FIFA World Cup’.
OR
Kabir has created following table named exam:
+-------+---------+------------------+-------+
| RegNo | Name | Subject | Marks |
+-------+---------+------------------+-------+
| 1 | Sanya | Computer Science | 98 |
| 2 | Sanchay | IP | 100 |
| 3 | Vinesh | CS | 90 |
| 4 | Sneha | IP | 99 |
| 5 | Akshita | IP | 100 |
+-------+---------+------------------+-------+
Help him in writing SQL queries to the perform the following task:
i. Insert a new record in the table having following values:
[6,'Khushi','CS',85]
ii. To change the value “IP” to “Informatics Practices” in subject
column.
iii. To remove the records of those students whose marks are less than
30 .
iv. To add a new column Grade of suitable datatype.
v. To display records of “Informatics Practices” subject.
34. XYZ Media house campus is in Delhi and has 4 blocks named Z1, Z2, Z3 and 5
Z4. The tables given below show the distance between different blocks and the
number of computers in each block.
The company is planning to form a network by joining these blocks.
i. Out of the four blocks on campus, suggest the location of the server that
will provide the best connectivity. Explain your response.
ii. For very fast and efficient connections between various blocks within the
campus, suggest a suitable topology and draw the same.
iii. Suggest the placement of the following devices with justification
(a) Repeater
(b) Hub/Switch
iv. VoIP technology is to be used which allows one to make voice calls
using a broadband internet connection. Expand the term VoIP.
v. The XYZ Media House intends to link its Mumbai and Delhi centers.
Out of LAN, MAN, or WAN, what kind of network will be created?
Justify your answer.
35. The heights of 10 students of eighth grade are given below: 5
Height_cms=[145,141,142,142,143,144,141,140,143,144]
Write suitable Python code to generate a histogram based on the given data,
along with an appropriate chart title and both axis labels.
Also give suitable python statement to save this chart.
OR
Write suitable Python code to create 'Favourite Hobby' Bar Chart as
shown below:
Also give suitable python statement to save this chart.
As Per Revised
CBSE Curriculum
2024-25
Classroom Teaching & Animated Videos Playlists
We take immense pleasure in serving you. Now, revel in our
seamless online services completely free of charge. view our animated
and classroom teaching Playlists customized for students from grade 1
to 12,Covering a wide range of subjects to enhance your
comprehension and knowledge. Simply click on the provided playlist
links to access Playlists based on the latest NCERT Syllabus for 2024-
25.
Our content includes Competency-Based Questions,
Assertion-Reason Questions, Previous Year Questions (PYQ), and
Case Study-Based Questions to enhance your learning
experience.For the most up-to-date videos, consider subscribing to
our YouTube channel at
https://www.youtube.com/@PrincipalsHandbookandDiaryadditionall Nageen Group of Schools
y, you're encouraged to join our expanding WhatsApp community
group to stay updated with the latest curriculum-related content and
updates.
We are committed to enriching your educational journey!!!
ANIMATED & CLASSROM TEACHING VIDEOS PLAYLISTS
(As per revised CBSE Curriculum– 2024-25)
ANIMATED VIDEOSPLAYLISTS (CLASS 1)
Class 1 EVS(EnglishLanguage)(CBSE) Click here for playlist
Class 1 Mathematics (EnglishLanguage)(CBSE) Click here for Playlist
Class 1 EVS (HindiLanguage)(CBSE) Click here for Playlist
Class 1 Mathematics(Hindi Language)(CBSE) Click here for Playlist
ANIMATED VIDEOS PLAYLISTS (CLASS 2)
Class 2 EVS (EnglishLanguage)(CBSE) Click here for Playlist
Class 2 Mathematics (EnglishLanguage)(CBSE) Click here for Playlist
Class 2 EVS(HindiLanguage)(CBSE) Click here for Playlist
Class 2 Mathematics (Hindi Language)(CBSE) Click here for Playlist
ANIMATED VIDEOS PLAYLISTS (CLASS 3)
Class 3 Mathematics (EnglishLanguage)(CBSE) Click here for Playlist
Class 3 EVS (EnglishLanguage)(CBSE) Click here for Playlist
Class 3 EVS (HindiLanguage)(CBSE) Click here for Playlist
Class 3 Mathematics (HindiLanguage)(CBSE) Click here for Playlist
ANIMATED VIDEOS PLAYLISTS (CLASS 4)
Class 4 Mathematics (EnglishLanguage)(CBSE) Click here for Playlist
Class 4 EVS(EnglishLanguage)(CBSE) Click here for Playlist
Class 4 Mathematics (HindiLanguage)(CBSE) Click here for Playlist
Class 4 EVS (HindiLanguage)(CBSE) Click here for Playlist
CLASSROOM TEACHING VIDEOS PLAYLISTS (CLASS 4)
Class 4 General Science (CBSE) Click here for Playlist
ANIMATED VIDEOS PLAYLISTS (CLASS 5)
Class 5 Mathematics (EnglishLanguage)(CBSE) Click here for Playlist
Class 5 Science (EnglishLanguage)(CBSE) Click here for Playlist
Class 5 Mathematics(HindiLanguage)(CBSE) Click here for Playlist
Class 5 Science (HindiLanguage)(CBSE) Click here for Playlist
CLASSROOM TEACHING VIDEOS PLAYLISTS (CLASS 5)
Class 5 General Science (CBSE) Click here for Playlist
Class 5 EVS (CBSE) Click here for Playlist
ANIMATED VIDEOS PLAYLISTS(CLASS 6)
Class 6 Mathematics (EnglishLanguage)(CBSE) Click here for Playlist
Class 6 Social Science (EnglishLanguage)(CBSE) Click here for Playlist
Class 6 Science (EnglishLanguage) (CBSE) Click here for Playlist
Class 6 Mathematics (Hindi Language)(CBSE) Click here for Playlist
Class 6 Science All Chapters (CBSE) Click here for Playlist
CLASSROOM TEACHING VIDEOS PLAYLISTS (CLASS 6)
Class 6 Mathematics (CBSE) Click here for Playlist
Class 6 Social Science (CBSE) Click here for Playlist
Class 6 Sanskrit (CBSE) Click here for Playlist
Class 6 Hindi (CBSE) Click here for Playlist
Class 6 Science (CBSE) Click here for Playlist
ANIMATED VIDEOS PLAYLISTS (CLASS 7)
Class 7 Science(CBSE) Click here for Playlist
Class 7 Mathematics(CBSE) Click here for Playlist
Class 7 Social Science(CBSE) Click here for Playlist
Class 7 Mathematics(CBSE) Click here for Playlist
Class 7 Science (CBSE) Click here for Playlist
CLASSROOM TEACHING VIDEOS PLAYLISTS (CLASS 7)
Class 7 Science (CBSE) Click here for Playlist
Class 7 Hindi (CBSE) Click here for Playlist
Class 7 Sanskrit (CBSE) Click here for Playlist
Class 7 Social Science (CBSE) Click here for Playlist
Class 7 Mathematics (CBSE) Click here for Playlist
ANIMATED VIDEOS PLAYLISTS (CLASS 8)
Class 8 Science(CBSE) Click here for Playlist
Class 8 Mathematics(CBSE) Click here for Playlist
Class 8 Social Science(CBSE) Click here for Playlist
Class 8 Mathematics(CBSE) Click here for Playlist
Class 8 Science(CBSE) Click here for Playlist
CLASSROOM TEACHING VIDEOS PLAYLISTS (CLASS 8)
Class 8 Hindi (CBSE) Click here for Playlist
Class 8 Sanskrit (CBSE) Click here for Playlist
ANIMATED VIDEOS PLAYLISTS (CLASS 9)
Class 9 Biology(CBSE) Click here for Playlist
Class 9 Physics(CBSE) Click here for Playlist
Class 9 Chemistry(CBSE) Click here for Playlist
Class 9 Social Science (CBSE) Click here for Playlist
Class 9 Mathematics (CBSE) Click here for Playlist
Class 9 Science (CBSE) Click here for Playlist
CLASSROOM TEACHING VIDEOS PLAYLISTS (CLASS 9)
Class 9 Social Science (CBSE) Click here for Playlist
Class 9 Mathematics(CBSE) Click here for Playlist
Class 9 English (CBSE) Click here for Playlist
Class 9 Hindi (CBSE) Click here for Playlist
ANIMATED VIDEOS PLAYLISTS (CLASS 10)
Class 10 Biology (CBSE) Click here for Playlist
Class 10 Physics (CBSE) Click here for Playlist
Class 10 Chemistry (CBSE) Click here for Playlist
Class 10 Social Science (CBSE) Click here for Playlist
Class 10 Mathematics(CBSE) (English Language) Click here for Playlist
Class 10 Mathematics(CBSE) (Hindi Language) Click here for Playlist
Class 10 Science(CBSE) (Hindi Language) Click here for Playlist
CLASSROOM TEACHING VIDEOS PLAYLISTS (CLASS 10)
Class 10 English (CBSE) Click here for Playlist
Class 10 Hindi (CBSE) Click here for Playlist
Class 10 Mathematics (CBSE) Click here for Playlist
Class 10 Social Science (CBSE) Click here for Playlist
Class 10 Magical Science Board Exam Preparation in 1 min (CBSE) Click here for Playlist
Class 10: Science (CBSE) Click here for Playlist
ANIMATED VIDEOS PLAYLISTS (CLASS 11)
Class 11 Physics (CBSE) (English Language) Click here for Playlist
Class 11 Chemistry (CBSE) (English Language) Click here for Playlist
Class 11 Biology (CBSE) (English Language) Click here for Playlist
Class 11 Mathematics(CBSE) (English Language) Click here for Playlist
Class 11 Accountancy (CBSE) (English Language) Click here for Playlist
Class 11 Business Studies (CBSE) (English Language) Click here for Playlist
Class 11 Statistics (CBSE) (English Language) Click here for Playlist
Class 11 Biology (CBSE) (Hindi Language) Click here for Playlist
Class 11 Mathematics (CBSE) (Hindi Language) Click here for Playlist
Class 11 Physics (CBSE) (Hindi Language) Click here for Playlist
Class 11 Chemistry (CBSE) (Hindi Language) Click here for Playlist
Class 11Micro Economy (CBSE) (English Language) Click here for Playlist
CLASSROOM TEACHING VIDEOS PLAYLISTS (CLASS 11)
Class 11Mathematics (CBSE) Click here for Playlist
Class 11 Accounts (CBSE) Click here for Playlist
Class 11 Business Studies (CBSE) Click here for Playlist
Class 11 Hindi (CBSE) Click here for Playlist
Class 11 Psychology (CBSE) Click here for Playlist
Class 11 Economics (CBSE) Click here for Playlist
Class 11 Physics (CBSE) Click here for Playlist
Class 11 Chemistry (CBSE) Click here for Playlist
Class 11 English (CBSE) Click here for Playlist
Class 11 Biology (CBSE) Click here for Playlist
Class 11 Biology Shorts (CBSE) Click here for Playlist
ANIMATED VIDEOS PLAYLISTS (CLASS 12)
Class 12 Physics (CBSE) Click here for Playlist
Class 12 Chemistry (CBSE) Click here for Playlist
Class 12 Biology(CBSE) Click here for Playlist
Class 12 Macro Economy (CBSE) Click here for Playlist
Class 12Economic (CBSE) Click here for Playlist
Class 12 Mathematics (CBSE) Click here for Playlist
Class 12 Accountancy (CBSE) Click here for Playlist
Class 12 Business Studies (CBSE) Click here for Playlist
Class 12 Physics (CBSE) Click here for Playlist
Class 12 Mathematics (CBSE) Click here for Playlist
Class 12 Biology (CBSE) Click here for Playlist
Class 12 Chemistry (CBSE) Click here for Playlist
CLASSROOM TEACHING VIDEOS PLAYLISTS (CLASS 12)
Class 12 CHEMISTRY (CBSE) Click here for Playlist
Class 12 Business Studies (CBSE) Click here for Playlist
Class 12 Hindi (CBSE) Click here for Playlist
NEET Biology in 1 min Click here for Playlist
Class 12 History (CBSE) Click here for Playlist
Class 12 Political Science (CBSE) Click here for Playlist
Class 12 Physics (CBSE) Click here for Playlist
Class 12 Biology (CBSE) Click here for Playlist
Class 12 : Accounts (CBSE) Click here for Playlist
JOIN SCHOOL OF EDUCATORS
WHSTSAPP & TELEGRAM
GROUPS FOR FREE
We are thrilled to introduce the School of Educators WhatsApp Group, a platform designed exclusively
for educators & Students to enhance your teaching & Learning experience and elevate student learning
outcomes. Here are some of the key benefits you can expect from joining our group:
BENEFITS OF SOE WHATSAPP GROUPS
• Abundance of Content: Members gain access to an extensive repository of educational materials
tailored to their class level. This includes various formats such as PDFs, Word files, PowerPoint
presentations, lesson plans, worksheets, practical tips, viva questions, reference books, smart
content, curriculum details, syllabus, marking schemes, exam patterns, and blueprints. This rich
assortment of resources enhances teaching and learning experiences.
• Immediate Doubt Resolution: The group facilitates quick clarification of doubts. Members can seek
assistance by sending messages, and experts promptly respond to queries. This real-time
interaction fosters a supportive learning environment where educators and students can exchange
knowledge and address concerns effectively.
• Access to Previous Years' Question Papers and Topper Answers: The group provides access to
previous years' question papers (PYQ) and exemplary answer scripts of toppers. This resource is
invaluable for exam preparation, allowing individuals to familiarize themselves with the exam
format, gain insights into scoring techniques, and enhance their performance in assessments.
• Free and Unlimited Resources: Members enjoy the benefit of accessing an array of educational
resources without any cost restrictions. Whether its study materials, teaching aids, or assessment
tools, the group offers an abundance of resources tailored to individual needs. This accessibility
ensures that educators and students have ample support in their academic endeavors without
financial constraints.
• Instant Access to Educational Content: SOE WhatsApp groups are a platform where students&
teachers can access a wide range of educational content instantly. This includes study materials,
notes, sample papers, reference materials, and relevant links shared by group members and
moderators.
• Timely Updates and Reminders: SOE WhatsApp groups serve as a source of timely updates and
reminders about important dates, exam schedules, syllabus changes, and academic events.
Teachers &Students can stay informed and well-prepared for upcoming assessments and activities.
• Interactive Learning Environment: Teachers &Students can engage in discussions, ask questions,
and seek clarifications within the group, creating an interactive learning environment. This fosters
collaboration, peer learning, and knowledge sharing among group members, enhancing
understanding and retention of concepts.
• Access to Expert Guidance: SOE WhatsApp groups are moderated by subject matter experts,
teachers, or experienced educators. Students can benefit from their guidance, expertise, and
insights on various academic topics, exam strategies, and study techniques.
• Sharing of Study Tips and Strategies: Group members often share valuable study tips, exam
strategies, and time management techniques that have proven effective for them. Students can
learn from each other's experiences and adopt helpful strategies to optimize their study routines
and improve their academic performance.
• Availability of Practice Materials: SOE WhatsApp groups frequently share practice questions,
quizzes, and mock tests to help students assess their understanding and practice exam-oriented
questions. This allows students to gauge their progress, identify areas of improvement, and refine
their exam preparation accordingly.
• Peer Support and Motivation: Being part of an SOE WhatsApp group provides students with a
supportive community of peers who share similar academic goals and challenges. Group members
can offer encouragement, motivation, and moral support to each other, especially during stressful
periods such as exams.
• Convenience and Accessibility:SOE WhatsApp is a widely used messaging platform accessible on
smartphones, making educational content and discussions easily accessible anytime, anywhere.
Students can review study materials, participate in discussions, and seek help conveniently from
their mobile devices.
Join the School of Educators WhatsApp Group today and unlock a world of resources, support, and
collaboration to take your teaching to new heights. To join, simply click on the group links provided
below or send a message to +91-95208-77777 expressing your interest.
Together, let's empower ourselves & Our Students and inspire the next generation of learners.
Best Regards,
Team
School of Educators
SCHOOL OF EDUCATORS WHATSAPP GROUPS
(For Teachers Only)
You will get Pre- Board Papers PDF, Word file, PPT, Lesson Plan, Worksheet, practical tips and Viva
questions , reference books , smart content , curriculum , syllabus , marking scheme , toppers answer
scripts , revised exam pattern , revised syllabus , Blue Print etc. here .Join Your Subject / Class WhatsApp
Group.
Kindergarten to Class XII (For Teachers Only)
Kindergarten Class 1 Class 2 Class 3
Class 4 Class 5 Class 6 Class 7
Class 8 Class 9 Class 10 Class 11 (Science )
Class 11 (Commerce) Class 11 (Humanities) Class 12 (Science) Class 12 (Commerce)
Class 12 (Humanities) Artificial Intelligence
(VI TO VIII)
Subject Wise Secondary and Senior Secondary Groups (IX & X)
Secondary Groups (IX & X)
SST Mathematics Science English
Hindi B Hindi A IT (Code: 402) Artificial Intelligence
Senior Secondary Groups (XI & XII)
Physics Chemistry English Mathematics
Biology Accountancy Economics BST
History Geography sociology Hindi Elective
Hindi Core Home Science Sanskrit psychology
Political science Painting vocal Music Comp. Science
IP physical Education APP. Mathematics IIT/NEET
Legal studies Entrepreneurship French Teachers Jobs
Artificial Intelligence
SCHOOL OF EDUCATORS WHATSAPP GROUPS
(For Students Only)
Class 1 class 2 class 3 class 4 class 5
class 6 class 7 class 8 class 9 class 10
Class 11(Science) Class 11(Com) Class 11(Hum) Class 12 (Sci) Class12 (Com)
Class 12 (Hum) Artificial Intelligence
(VI TO VIII)
Subject Wise Secondary and Senior Secondary Groups (IX & X)
Secondary Groups (IX & X)
SST Mathematics English
Science
Hindi
IT Artificial Intelligence
Senior Secondary Groups (XI & XII)
Physics Chemistry Biology English
Accountancy Business Studies Economics Mathematics
History Geography Sociology Hindi Elective
Hindi Core Home Science Sanskrit Psychology
Political Science Painting Music Computer Science
IP Physical Education App. Mathematics IIT/NEET
Legal Studies Entrepreneurship French CUET
Artificial Intelligence
Rules & Regulations of the Group
• No introduction
• No Good Morning/Any wish type message
• No personal Chats & Messages
• No Spam
• You can also ask your difficulties here.
Just get learning resources & post learning resources. Helpline number only WhatsApp: +91-95208-77777
SOE CBSE Telegram Groups (Kindergarten to Class XII)
Kindergarten
All classes Class 1 Class 2 Class 3
Class 4 Class 5 Class 6 Class 7
Class 8 Class 9 Class 10 Class 11(Sci)
Class 11 (Com) Class 11 (Hum) Class 12 (Sci) Class 12 (Com)
Class 12 (Hum) JEE/NEET CUET NDA,OLYMPIAD,NTSE
Principal Professional Teachers Professional Project File Group
Group Group
SOE CBSE Telegram Channels (Kindergarten to Class XII)
Kindergarten Class I Class II Class III
Class IV Class V Class VI Class VII
Class VIII Class IX Class X Class XI (Sci)
Class XI (Hum) Class XI (Com) Class XII (Sci) Class XII (Hum)
Class XII (Com) JEE/NEET CUET NDA/OLYMPIAD/NTSE
Rules & Regulations of the Groups & Channel
• No introduction
• No Good Morning/Any wish type message
• No personal Chats & Messages
• No Spam
• You can also ask your difficulties here.
Just get learning resources & post learning resources. Helpline number only WhatsApp: +91-95208-77777
Available Resources on YouTube
Enjoy animated videos covering all subjects from Kindergarten to Class 12, making learning fun for
students of all ages.
Explore classroom teaching videos for grades 6 to 12, covering various subjects to enhance
understanding and knowledge.
Access the most important questions and previous year's question papers (PYQ) to excel in exams and
assessments.
Stay up-to-date with the latest CBSE Curriculum for 2023-24 with our videos aligned to the current
syllabus.
Get informed about CBSE updates and circulars through our dedicated videos.
Improve pronunciation skills and expand vocabulary with our "Word of the Day" series and other
language-related content and many more……….
Don't miss out on these valuable resources; subscribe to our channel now!