0% found this document useful (0 votes)
71 views19 pages

12th IT Sly

Uploaded by

singla8929
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
71 views19 pages

12th IT Sly

Uploaded by

singla8929
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 19

BOARD OF SCHOOL EDUCATION HARYANA

Syllabus and Chapter wise division of Marks (2024-25)

Class: XII Subject: Computer Science Code: 906


General Instructions:
1. There will be an Annual Examination based on the entire syllabus.
2. The Annual Examination will be of 40 marks.
3. Practical Examination** will be of 40 marks.
4. Internal Assessment* will be of 20 marks.

*Internal Assessment Marks Distribution is as follows:

Sr. Marks Distribution of Internal Assessment Marks


No. of I.A.
1 6 Two SAT Exams weightage of 4 marks
One Pre Board Exam weightage of 2 marks
2 2 Half Yearly Exams
3 2 CRP (Class Room Participation)

4 5 Project Work

5 5 Attendance of student will be awarded as:


75% to 80% - 01 marks
Above 80% to 85% - 02 marks
Above 85% to 90% - 03 marks
Above 90% to 95% - 04 marks
Above 95% to 100% - 05 marks

Total 20

1
**Practical Marks Distribution
Sr. No. Unit Name Marks
1 Lab Test:
Two Python Programs (One from Exception Handling/file handling 15
and one from Data Structure using Python).
(60% Logic + 20% documentation + 20% code quality)
One SQL Queries including all clauses
2 Report File:
Minimum 10 Python programs (Based on Exception Handling, File 10
Handling and Data Structure using Python only).
Minimum 5 SQL Queries
3 Project:
That uses most of the concepts that have been learnt in 12th. 5
4 Viva Voce 10
Total Marks 40

Learning outcomes:
After the completion of the course Students will be able to
1. Implement exception handling for error management.
2. Practice basic searching and sorting algorithms.
3. Explore file handling and data serialization.
4. Learn about data structures like stacks and queues.
5. Understand fundamentals of databases and SQL.
6. Discover basics of computer networks.
7. Explore different types of data communication.
8. Learn about network security and common threats.
9. Gain knowledge about network devices and topologies.
10.Recognize common threats in computer systems and networks.
11.Learn preventive measures against viruses, worms, and security threats.

2
Course Structure (2024-25)
Class: XII Subject: Computer Science Code: 906
Sr. Periods
No. UNIT NAME Marks
Theory Practical
1 Programming in Python 6 20 10

2 Data Structure using Python 7 30 20


3 Database and SQL 8 35 20
4 Computer Networks 6 20 -
5 Data Communication 8 27 -
6 Security Aspects 5 13 -
Total 40
Practical Examination 40
Internal Assessment 20
Grand Total 100

3
Detailed Syllabus (2024-25)
Class- XII Subject: Computer Science Code: 906

Unit I: Programming in Python


 Exception Handling: Syntax errors, exceptions, need of
exception handling, user-defined exceptions, raising
exceptions, handling exceptions, catching exceptions, Try -
except - else clause, Try - finally clause, recovering and
continuing with finally, built-in exception classes.
 File Handling: text file and binary file, file types, open and
close files, reading and writing text files, reading and writing
binary files using pickle module, file access modes.

Important Exception, Syntax, Error, Exception Handling, Try-


Terminology except-else clause, Try-finally clause, build-in
exception classes

Unit II: Data Structure (Using Python)


 Stack (List Implementation): Introduction to stack (LIFO
Operations), operations on stack (PUSH and POP) and its
implementation in python.
 Queue (List Implementation): Introduction to Queue
(FIFO), Operations on Queue (INSERT and DELETE) and
its implementation in Python.
 Searching: Sequential search (Linear search), Binary search.
 Sorting: Bubble Sort, Selection Sort and Insertion Sort.

Important Stack, List, LIFO, PUSH, POP, Queue, FIFO


Terminology INSERT, DELETE, Searching, Linear search, Binary
Search, Sorting, Bubble sort, Selection sort, Insertion
sort

4
Unit III: Database & SQL
 Understanding Data: Data and its purpose, collection and
organization
 Database Concepts: Introduction to database concepts,
difference between database and file system, relational data
model: concept of domain, tuple, relation, keys - candidate
key, primary key, alternate key, foreign key
 Structured Query Language (SQL): Introduction to
MySQL, Creating a database using MySQL, Data Types.
 Data Definition Language (DDL): CREATE TABLE,
DROP TABLE, ALTER TABLE,
 Data Query Language (DQL): SELECT, FROM, WHERE
 Data Manipulation Language (DML): INSERT, UPDATE,
DELETE
 Aggregate Functions: MAX (), MIN (), AVG (), SUM (),
COUNT (); using COUNT (*).
 Querying and manipulating data using Group by, Having,
Order by.
Important Data, Collection of Data, Organization of data,
Terminology Database, file, relational data model, tuple, relation,
candidate key, primary key, alternate key, foreign
key, Data type, DDL, DQL, DML, Aggregate
functions, Group by, Having, Order by

Unit IV: Computer Networks


 Introduction to computer networks, Network types: LAN,
WAN, MAN
 Network devices: Modem, Ethernet Card, Repeater, Hub,
Switch, Router, Gateway.
 Network Topologies: Mesh, Ring, Bus, Star, and Tree
topologies
Important Computer Network, LAN, MAN, WAN, Modem,
Terminology Ethernet Card, Repeater, Hub, Switch, Router,
Gateway, Network Topology, Mesh, Ring, Bus,
Star, and Tree topology

5
Unit V: Data Communication
 Communication: Types of Data Communication,
Communication Media: Wired Technologies – Twisted pair
cable, Co-axial cable, Ethernet Cable, Optical Fibre.
 Mobile telecommunication technologies: Wireless
Technologies – Bluetooth, WLAN, Infrared, Microwave.
 Network Protocol: Need for Protocol, Categorization and
Examples of protocol, HTTP, FTP, IP, PPP, SMTP.
 Concept of Channel, Bandwidth (Hz, KHz, and MHz) and
Data Transfer rate (bps, Kbps, Mbps, Gbps and Tbps).

Important Communication, Wired Technology, Twisted


Terminology pair cable, co axial cable, Ethernet cable, optical
fibre, Wireless Technology, Bluetooth, WLAN,
Infrared, Microwave, Protocol, HTTP, FTP, IP,
PPP, SMTP, Bandwidth, Data Transfer rate

Unit VI: Security Aspects


 Threats and prevention: Malware- virus, worms,
Trojan, Spyware, Adware.
 Antivirus and their workings
 Network Security Concepts: http vs https, Firewall,
Cookies, Hackers and Crackers
Important Malware, Virus, Worms, Trojan, Spyware,
Terminology Adware, Antivirus, http, https, Firewall, Cookies,
Hackers, Crackers

6
Suggested Practical List
1. Program to handle a ZeroDivisionError when dividing a number by zero.
2. Program to handle a FileNotFoundError when opening a non-existing file.
3. Program to handle a TypeError when concatenating incompatible data
types.
4. Program to demonstrate the use of try-except-else clause.
5. Program to handle multiple exceptions in a single try block.
6. Program to raise a custom exception when a certain condition is met.
7. Program to handle an IndexError when accessing elements from a list.
8. Program to handle a KeyError when accessing a dictionary.
9. Program to handle a KeyboardInterrupt gracefully.
10.Program to read and display the contents of a text file.
11.Program to write user input to a text file.
12.Program to append new data to an existing text file.
13.Program to implement a stack using a list.
14.Program to implement a queue using a list.
15.Program to push an element onto the stack.
16.Program to pop an element from the stack.
17.Program to insert an element into the queue.
18.Program to delete an element from the queue.
19.Program to check if a stack is empty.
20.Program to check if a queue is empty.

7
Month wise Syllabus Teaching Plan (2024-25)
Class: XII Subject: Computer Science Code: 906
Month Subject- content Teaching Revision Practical
Periods Periods Work
April Programming in Python: 10 5 9
Exception Handling,
File Handling
May Data Structure (Using Python) 12 5 7
Stack, Queue, Searching, Sorting

June Summer Vacation


( Holiday Homework / Assignments )
July Database & SQL: 12 4 8
Understanding Data, Database
Concepts, DDL, DQL, DML
August Database & SQL: Aggregate 12 5 7
Functions, Group by, Having,
Order by
September Half Yearly Exam 9 4 -
Computer Networks:
Introduction, Network devices,
Network Topologies
October Data Communication: 18 6 -
Communication, Mobile
telecommunication technologies.
November Data Communication: 14 8 -
Network Protocols, Concept of
Channel, Bandwidth, Data
Transfer rate
December Security Aspects: Threats and 18 6 -
prevention: Malware, Antivirus
and their workings
January Winter vacation
( Holiday Homework / Assignments )
Security Aspects: Network 7 4 -
Security Concepts
February Revision
March Annual Examination

8
Note:
 Subject teachers are advised to direct the students to prepare notebook
of the Terminology/Definitional Words used in the chapters for
enhancement of vocabulary or clarity of the concept.
 The NCERT textbooks present information in boxes across the book.
These help students to get conceptual clarity. However, the
information in these boxes would not be assessed in the year-end
examination.

Prescribed Books:
1. NCERT Textbook for COMPUTER SCIENCE (Class XII).
2. Support materials on BSEH website.

9
Question Paper Design (2024-25)
Class: XII Subject: Computer Science Code: 906
Time: 2:30 hr

Competencies Total
Knowledge 40%
Understanding 30%
Application 20%
Skill 10%
100%

Type of Marks Number Description Total


Question Marks
Essay type 4 3 Internal choice will be given 12
in all the questions
Include two Case study-
Short Answer 2 7 based questions. Out of the 14
remaining five questions,
two questions will have
internal choices.
Very Short 1 4 One internal choice will be 4
Answer provided among the four
questions
4 Multiple Choice Questions
Objective 10 1 2 Fill in the Blanks 10
type (1x10) 2 True/ False
2 Assertion-Reason
Total 15 40

1
0
हरियाणा विद्यालय विक्षा बोर्ड
पाठ्यक्रम और अध्यायवार अंकों का ववभाजन (2024-25)
कक्षा: XII ववषय: कंप्यट
ू र ववज्ञान कोड: 906

सामान्य ननर्दे श:

1. पूरे पाठ्यक्रम के आधार पर एक वार्षिक परीक्षा होगी।


2. वार्षिक परीक्षा 40 अंकों की होगी।
3. प्रैक्टिकल परीक्षा** 40 अंकों की होगी।
4. आंतररक मूलयांकन* 20 अंकों का होगा।

*आंतररक मूलयांकन अंक ववतरण इस प्रकार है :

क्रमांक आंतररक
मल
ू यांकन अंकों का ववतरण
के अंक
1 6 दो सैि परीक्षाएं क्िनका भारांक 04 अंक का होगा व एक प्री
बोर्ि परीक्षा क्िसका भारांक 02 अंक अक होगा
2 2 अधिवार्षिक परीक्षा
3 2 सीआरपी (कक्षा की भागीदारी)
4 5 पररयोिना कायि

5 5 छात्र की उपक्थितत के रूप में सम्मातनत ककया िाएगा:


75% से 80% - 01 अंक
80% से 85% से अधधक - 02 अंक
85% से 90% से अधधक - 03 अंक
90% से 95% से अधधक - 04 अंक
95% से अधधक से 100% - 05 अंक

कुल 20

1
1
**प्रैक्टटकल अंक ववतरण

क्रमांक इकाई का नाम अंक

1 लैब टे स्ट:
र्दो पायथन प्रोग्राम (एक एटसेप्शन हैंर्ललंग/फाइल हैंर्ललंग से और एक
15
पायिन का उपयोग करके र्ेिा थरटचर से)। (60% तकक + 20% प्रलेखन +
20% कोड गुणवत्ता) एक SQL टवेरी

2 ररपोटक फाइल: न्यूनतम 10 पायथन प्रोग्राम (एटसेप्शन हैंर्ललंग, फाइल


हैंर्ललंग और केवल पायिन का उपयोग करके र्ेिा थरटचर के आधार पर)।
10
न्यूनतम 5 SQL टवेरीज

3 पररयोिना:

यह 12 वीं में सीखी गई अधधकांश अवधारणाओं का उपयोग करता है । 5

4 वीवा वॉइस 10

कुल अंक 40

सीखने के पररणाम:

कोसक पूरा होने के बार्द छात्र कर सकेंगे


1. त्रटु ि प्रबंधन के ललए एटसेप्शन हैंर्ललंग लागू कर सकेंगे ।
2. बुतनयादी खोि और सॉटििं ग एलगोररदम का अभ्यास कर सकेंगे ।
3. फाइल हैंर्ललंग और र्ेिा क्रमांकन का अन्वेषण कर सकेंगे ।
4. थिै क और टयू िैसी र्ेिा थरटचरओं के बारे में िान सकेंगे ।
5. र्ेिाबेस और SQL के मूल लसदधांतों को समझ सकेंगे ।
6. कंप्यूिर नेिवकि की मूल बातें खोि सकेंगे ।
7. र्वलभन्न प्रकार के र्ेिा संचार का अन्वेषण कर सकेंगे ।
8. नेिवकि सुरक्षा और सामान्य खतरों के बारे में िान सकेंगे ।
9. नेिवकि उपकरणों और िोपोलॉिी के बारे में ज्ञान प्राप्त कर सकेंगे ।
10. कंप्यूिर लसथिम और नेिवकि में आम खतरों को पहचान सकेंगे ।
11. वायरस, कीडे और सुरक्षा खतरों के खखलाफ तनवारक उपाय िान सकेंगे ।

1
2
पाठ्यक्रम संरचना (2024-25)

कक्षा: 12 ववषय: कंप्यूटर ववज्ञान कोड: 906

समय
क्रमांक यनू नट का नाम अंक शशक्षण प्रयोगात्मक
कालांश कायक
1 पायिन में प्रोग्रालमंग 6 20 10

2 पायिन का उपयोग करके र्ेिा थरटचर 7 30 20


3 र्ेिाबेस और SQL 8 35 20
4 कंप्यूिर नेिवकि 6 20 -

5 र्ेिा संचार 8 27 -

6 सुरक्षा पहलू 5 13 -

कुल 40
प्रैक्टिकल परीक्षा 40
आंतररक मल
ू यांकन 20
महायोग 100

1
3
ववस्तत
ृ शसलेबस (2024-25)

कक्षा- XII ववषय: कंप्यूटर ववज्ञान कोड: 906

यनू नट I: पायथन में प्रोग्राशमंग


 एटसेप्शन हैंडशलंग: लसंिैटस त्रटु ियां, एटसेप्शन, एटसेप्शन हैंर्ललंग की
आवश्यकता, उपयोगकताि-पररभार्षत एटसेप्शन, एटसेप्शन उठाना,
अपवादों को संभालना, अपवादों को पकडना, प्रयास करें - लसवाय -
अन्यिा खंर्, प्रयास - अंत में खंर्, पन
ु प्रािप्त करना और अंत में ,
अंततनिटहत एटसेप्शन वगों के साि िारी रखना।
 फाइल हैंडशलंग: पाठ फाइल और बाइनरी फाइल, फाइल प्रकार, फाइलों
को खोलें और बंद करें , पाठ फाइलों को पढ़ना और ललखना, अचार
मॉड्यल
ू , फाइल एटसेस मोर् का उपयोग करके बाइनरी फाइलों को
पढ़ना और ललखना।

यूननट II: डेटा स्रटचर (पायथन का उपयोग करके)


 स्टै क (सूची कायाकन्वयन): थिै क का पररचय (LIFO संचालन), थिै क पर
संचालन (PUSH और POP) और पायिन में इसका कायािन्वयन।
 टयू (सूची कायाकन्वयन): टयू का पररचय (FIFO), टयू पर संचालन
(INSERT और DELETE) और पायिन में इसका कायािन्वयन।
 सर्चिंग: अनुक्रलमक सचि (रै खखक सचि), बाइनरी सचि ।
 सॉर्टिं ग: बबल सॉिि , लसलेटशन सॉिि और इंसशिन सॉिि ।

यूननट III: डेटाबेस और SQL


 डेटा को समझना: र्ेिा और उसका उददे श्य, संग्रह और संगठन
 डेटाबेस अवधारणाएं: र्ेिाबेस अवधारणाओं का पररचय, र्ेिाबेस और
फाइल लसथिम के बीच अंतर, संबंधपरक र्ेिा मॉर्ल: र्ोमेन, िुपल,
संबंध, कंु िी की अवधारणा - उम्मीदवार कंु िी, प्रािलमक कंु िी, वैकक्लपक
कंु िी, र्वदे शी कंु िी
 स्रटचडक टवेरी लैंग्वेज (SQL): MySQL का पररचय, MySQL, र्ेिा
प्रकारों का उपयोग करके र्ेिाबेस बनाना।
 डेटा पररभाषा भाषा (DDL): ताललका बनाएं, ताललका छोडें, ताललका

1
4
बदलें ,
 डेटा टवेरी भाषा (DQL): चन ु ें , से, कहााँ से
 डेटा मैननपुलेशन लैंग्वेज (DML): र्ालें, अपर्ेि करें , हिाएं
 एग्रीगेट फंटशंस: MAX (), MIN (), AVG (), SUM (), COUNT (),
COUNT (*) का उपयोग करना।
 Order By, Having का उपयोग करके र्ेिा को टवेरी करना।

यूननट IV: कंप्यूटर नेटवकक


 कंप्यूटर नेटवकक का पररचय, नेिवकि प्रकार: LAN, WAN, MAN
 नेटवकक डडवाइस: मोर्ेम, ईिरनेि कार्ि, ररपीिर, हब, क्थवच, राउिर,
गेिवे।
 नेटवकक टोपोलॉजी: मेष, ररंग, बस, थिार और री िोपोलॉिी
यूननट V: डेटा संचार

 संचार: र्ेिा संचार के प्रकार, संचार मीडर्या: वायर्ि िे टनोलॉिीि -


ट्र्वथिे र् िोडी केबल, सह-अक्षीय केबल, ईिरनेि केबल, ऑक्प्िकल
फाइबर।

 मोबाइल र्दरू संचार प्रौद्योर्गककयां: वायरलेस िे टनोलॉिीि - ब्लि


ू ू ि,
WLAN , इन्रारे र्, माइक्रोवेव।

 नेटवकक प्रोटोकॉल: प्रोिोकॉल, वगीकरण और प्रोिोकॉल के उदाहरण,


HTTP, FTP, IP, PPP, SMTP की आवश्यकता।

 चैनल बैंडववड्थ (Hz, KHz, और MHz) और र्ेिा रांसफर दर (bps,


Kbps, Mbps, Gbps और Tbps) की अवधारणा।

यूननट VI: सुरक्षा पहलू


 थ्रेट और वप्रवेंशन: मैलवेयर- वायरस, कीडे, रोिन, थपाइवेयर, एर्वेयर।
 एंटीवायरस और उनके कामकाि
 नेटवकक सुरक्षा अवधारणाएँ: http बनाम https, फायरवॉल, कुकीज़,
है कसि और क्रैकसि

1
5
सुझाई गई प्रैक्टटकल सूची
1. ककसी संख्या को शून्य से र्वभाक्ित करते समय ZeroDivisionError को संभालने का
प्रोग्राम।
2. एक गैर-मौिूदा फाइल खोलते समय FileNotFoundError को हैंर्ल करने के ललए
प्रोग्राम।
3. असंगत र्ेिा प्रकारों को िोडते समय TypeError को संभालने के ललए प्रोग्राम।
4. कोलशश-लसवाय-अन्य खंर् के उपयोग को प्रदलशित करने के ललए प्रोग्राम।
5. एक एकल प्रयास ब्लॉक में कई अपवादों को संभालने के ललए प्रोग्राम।
6. एक तनक्श्चत शति परू ी होने पर एक कथिम एटसेप्शन बढ़ाने का प्रोग्राम।
7. ककसी सच
ू ी से तत्वों तक पहुाँचने पर IndexError को संभालने का प्रोग्राम।
8. एक शब्दकोश तक पहुाँचने पर एक KeyError को संभालने के ललए प्रोग्राम।
9. प्रोग्राम एक KeyboardInterrupt इनायत से संभाल करने के ललए.
10. एक पाठ फाइल की सामग्री को पढ़ने और प्रदलशित करने के ललए प्रोग्राम।
11. एक पाठ फाइल में उपयोगकताि इनपुि ललखने के ललए प्रोग्राम।
12. ककसी मौिूदा पाठ फाइल में नया र्ेिा िोडने का प्रोग्राम.
13. एक सूची का उपयोग कर एक ढे र को लागू करने के ललए प्रोग्राम।
14. एक सूची का उपयोग करके एक टयू को लागू करने के ललए प्रोग्राम।
15. थिै क पर एक तत्व को धटका दे ने का प्रोग्राम।
16. थिै क से एक तत्व को पॉप करने का प्रोग्राम।
17. टयू में एक तत्व र्ालने का प्रोग्राम।
18. टयू से एक तत्व को हिाने के ललए प्रोग्राम।
19. यह िांचने के ललए प्रोग्राम कक टया थिै क खाली है ।
20. यह िांचने के ललए प्रोग्राम कक टया कोई टयू खाली है ।

1
6
माशसक पाठ्यक्रम शशक्षण योजना (2024-25)
कक्षा: 12 ववषय: कंप्यट
ू र ववज्ञान कोड: 906

मास ववषय- सामग्री शशक्षण र्दोहराई प्रयोगात्मक


कालांश अवर्ध कायक

अप्रैल पायथन में प्रोग्राशमंग: 10 5 9


एटसेप्शन हैंर्ललंग,
फाइल हैंर्ललंग
मई डेटा स्रटचर (पायथन उपयोग करके) 12 5 7
थिै क, टयू , सधचिंग सॉटििं ग
जन
ू गमी की छुट्टी (हॉशलडे होमवकक / असाइनमें ट)
जल
ु ाई डेटाबेस और एसटयए
ू ल: र्ेिा को 12 4 8
समझना, र्ेिाबेस अवधारणाओं,
र्ीर्ीएल, र्ीटयए
ू ल, र्ीएमएल
अगस्त डेटाबेस और एसटयूएल: एग्रीगेि 12 5 7
फंटशंस, ग्रप
ु बाय, है र्वंग, ऑर्िर बाय
शसतंबर अधकवावषकक परीक्षा 9 4 -
कंप्यूटर नेटवकक: पररचय, नेिवकि
डर्वाइस, नेिवकि िोपोलॉिी
अटटूबर डेटा संचार: संचार, मोबाइल 18 6 -
दरू संचार प्रौदयोधगककयां
नवंबर डेटा संचार: नेिवकि प्रोिोकॉल, चैनल 14 8 -
की अवधारणा, बैंर्र्वड्ि, र्ेिा
रांसफर दर
र्र्दसंबर सुरक्षा पहलू: थ्रेि और रोकिाम: 18 6 -
मैलवेयर, एंिीवायरस और कामकाि

जनवरी शीतकालीन अवकाश (हॉशलडे होमवकक / असाइनमें ट)


सुरक्षा पहलू: नेिवकि सुरक्षा 7 4 -
अवधारणाएं
फरवरी पुनरावर्ृ ि
माचक वार्षिक परीक्षा

1
7
नोट:

 एनसीईआरिी की पाठ्यपुथतकें पूरी पुथतक में बटसों में िानकारी प्रथतुत करती हैं। ये
छात्रों को वैचाररक थपष्िता प्राप्त करने में मदद करते हैं। हालांकक, इन बटसों में दी
गई िानकारी का आकलन साल के अंत में होने वाली परीक्षा में नहीं ककया िाएगा।

तनधािररत पुथतकें:

5. कंप्यूिर र्वज्ञान के ललए एनसीईआरिी पाठ्यपुथतक (कक्षा बारहवीं)।


6. BSEH वेबसाइि पर सहायता सामग्री।

1
8
प्रश्न पत्र प्रारूप (2024-25)

कक्षा: XII ववषय: कंप्यूटर ववज्ञान कोड: 906

समय: 2:30 घण्टे

प्रश्न का प्रकार अंक संख्या वववरण कुल अंक

दीर्ि उिरात्मक 4 3 सभी प्रश्नों में आंतररक र्वकलप 12


प्रश्न उपलब्ध होगा

दो केस स्टडी आधाररत प्रश्न शालमल


लर्ुउिरात्मक 2 7 ककए िाएंगे। शेष पााँच प्रश्नों में , र्दो 14
प्रश्न प्रश्नों में आंतररक र्वकलप उपलब्ध
होंगे।
अतत 1 4 चार प्रश्नों में से एक प्रश्न में आंतररक 4
लर्उ
ु िरात्मक र्वकलप प्रदान ककया िाएगा।

प्रश्न
4 बहुर्वकलपीय प्रश्न
वथतुतनष्ठ प्रश्न 10 1 2 ररटत थिानों की पतू ति कीक्िए 10
(1x10) 2 सही/गलत
2 अलभकिन-कारण
कुल 15 40

1
9

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy