Trending ▼   ResFinder  

CBSE Class 12 Sample / Model Paper 2021 : Informatics Practices (with Marking Scheme / Solutions)

26 pages, 210 questions, 0 questions with responses, 0 total responses,    0    0
cbse12
  
+Fave Message
 Home > cbse12 > SAMPLE / MOCK Question Papers : CBSE Board Class 12 >   F Also featured on: cbse12

Instantly get Model Answers to questions on this ResPaper. Try now!
NEW ResPaper Exclusive!

Formatting page ...

Class XII INFORMATICS PRACTICES (065) SAMPLE QUESTION PAPER (2020 - 21) Max Marks: 70 Time: 3 hrs General Instructions: 1. This question paper contains two parts A and B. Each part is compulsory. 2. Both Part A and Part B have choices. 3. Part-A has 2 sections: a. Section I is short answer questions, to be answered in one word or one line. b. Section II has two case studies questions. Each case study has 4 case-based subparts. An examinee is to attempt any 4 out of the 5 subparts. 4. Part - B is Descriptive Paper. 5. Part- B has three sections a. Section-I is short answer questions of 2 marks each in which two questions have internal options. b. Section-II is long answer questions of 3 marks each in which two questions have internal options. c. Section-III is very long answer questions of 5 marks each in which one question has question has internal option. Part - A Section - I Attempt any 15 questions from questions 1 to 21 1 1 State whether True or False : i. A copyright is automatically granted to authors or creators of content. _________ ii. In FOSS source code is usually hidden from the users. _______________ 2 1 Fill in the blanks : The command used to give a heading to a graph is _________ a. plt.show() b. plt.plot() c. plt.xlabel() d. plt.title() Page 1 of 14 3. 4 5 Write the output of the following SQL command. select round(49.88); a. 49.88 b. 49.8 c. 49.0 d. 50 Given a Pandas series called Sequences, the command which will display the first 4 rows is __________________. a. print(Sequences.head(4)) b. print(Sequences.Head(4)) c. print(Sequences.heads(4) d. print(Sequences.Heads(4)) 1 Given the following Series S1 and S2: 1 S1 1 S2 A 10 A 80 B 40 B 20 C 34 C 74 D 60 D 90 Write the command to find the sum of series S1 and S2 6 1 Using Python Matplotlib _________ can be used to count how many values fall into each interval a. line plot b. bar graph c. histogram 7 To prevent unauthorized access to and / or from the network, a system known as ____________, can be implemented by hardware and / or software. 1 8 In a DataFrame, Axis= 1 represents the_____________ elements. 1 9 Which of the following is not a network topology : Star, Mesh , Tree, Bug , Bus 1 Page 2 of 14 10 For web pages where the information is changed frequently, for example, stock prices, weather information which out of the following options would you advise ? 1 a) Static web page b) Dynamic web page Justify your answer. 11 The avg() function in MySql is an example of ___________________. a. Math function b. Text function c. Date Function d. Aggregate Function The practice of taking someone else's work or ideas and passing them off as one's own is known as _____________ 1 13 In Pandas the function used to check for null values in a DataFrame is ________ 1 14 I can keep you signed in. I can remember your site preferences. I can give you locally relevant content. Who am I ? Which amongst the following is not an example of browser ? a. Chrome b. Firefox c. Avast d. Edge 1 16 A mail or message sent to a large number of people indiscriminately without their consent is called____________ 1 17 According to a survey, one of the major asian country generates approximately about 2 million tonnes of electronic waste per year. Only 1.5 % of the total e-waste gets recycled. Suggest a method to manage e-waste . 1 18 The ____________command can be used to makes changes in the rows of a 1 table in SQL. 12 15 1 1 Page 3 of 14 19 Write the SQL command that will display the current time and date 1 20 _________________ network device is known as an intelligent hub . 1 21. Receiving irreleavnt and unwanted emails repeatedly is an example of ______________. 1 Section -II Both the case study based questions (22 & 23 ) are compulsory. Attempt any four sub parts from each question. Each sub question carries 1 mark . 22 Consider the following DataFrame df and answer any four questions from (i)(v) rollno name 1 Prerna Singh 2 Manish Arora 3 Tanish Goel 4 Falguni Jain 5 Kanika Bhatnagar 6 Ramandeep Kaur (i) UT1 UT2 UT3 24 18 20 22 15 20 UT4 24 17 22 20 20 15 20 19 18 24 18 22 22 22 24 20 22 24 1 Write down the command that will give the following output. a. print(df.max) b. print(df.max()) c. print(df.max(axis=1)) d. print(df.max, axis=1) (ii) The teacher needs to know the marks scored by the student with roll number 4. Help her to identify the correct set of statement/s from the given options : a. df1=df[df[ rollno ]==4] print(df1) Page 4 of 14 1 b. df1=df[rollno==4] print(df1) c. df1=df[df.rollno=4] print(df1) d. df1=df[df.rollno==4] (iii) print(df1) Which of the following statement/s will give the exact number of values in each column of the dataframe? 1 i. print(df.count()) ii. print(df.count(0)) iii. print(df.count) iv. print(df.count(axis= index )) Choose the correct option: a. both (i) and (ii) b. only (ii) c. (i), (ii) and (iii) d. (i), (ii) and (iv) (iv) (v) Which of the following command will display the column labels of the DataFrame? a. print(df.columns()) b. print(df.column()) c. print(df.column) d. print(df.columns) Ms. Sharma, the class teacher wants to add a new column, the scores of Grade with the values, A , B , A , A , B , A ,to the DataFrame. Help her choose the command to do so: a. df.column=[ A , B , A , A , B , A ] b. df [ Grade ]=[ A , B , A , A , B , A ] c. df.loc[ Grade ]= [ A , B , A , A , B , A ] d. Both (b) and (c) are correct 23 Consider the table STUDENT given below: RollNo Name Class DOB Gender City Marks 1 2 3 4 5 Anand Chetan Geet Preeti Saniyal XI XII XI XII XII 6/6/97 7/5/94 6/5/97 8/8/95 8/10/95 M M F F M Agra Mumbai Agra Mumbai Delhi 430 460 470 492 360 6 Maakhiy XI F Dubai 256 7 Neha 12/12/9 4 8/12/95 F Moscow 324 X Page 5 of 14 1 1 8 (i) Nishant X 12/6/95 M Moscow 429 State the command that will give the output as : Name Anand Chetan Geet Preeti 1 select name from student where class= XI and class= XII ; ii. select name from student where not class= XI and class= XII ; iii. select name from student where city= Agra OR city= Mumbai ; iv. select name from student where city IN( Agra , Mumbai ); i. (ii) Choose the correct option: a. Both (i) and (ii). b. Both (iii) and (iv). c. Any of the options (i), (ii) and (iv) d. Only (iii) What will be the output of the following command? Select * from student where gender = F order by marks; 1 a. Rollno Name Class 4 3 7 Preeti Geet Neha XII XI X 6 Maakhiy XI DOB 8/8/95 6/5/97 8/12/9 5 12/12/ 94 Gende r F F F City Mumbai Agra Moscow Mar ks 492 470 324 F Dubai 256 b. Rollno 6 7 3 4 Name Maakhiy Neha Geet Preeti Class XI X XI XII DOB 12/12/94 8/12/95 6/5/97 8/8/95 Gender F F F F City Dubai Moscow Agra Mumbai Marks 256 324 470 492 c. Gender F F F F Marks 256 324 470 492 Page 6 of 14 d. Gender F F F F (iii) Marks 492 470 324 256 Prachi has given the following command to obtain the highest marks Select max(marks) from student where group by class; 1 but she is not getting the desired result. Help her by writing the correct command. a. b. c. d. (iv) Select Select Select Select max(marks) from student where group by class; class, max(marks) from student group by marks; class, max(marks) group by class from student; class, max(marks) from student group by class; State the command to display the average marks scored by students of each gender who are in class XI? 1 i. Select gender, avg(marks) from student where class= XI group by gender; ii Select gender, avg(marks) from student group by gender where class= XI ; iii. Select gender, avg(marks) group by gender from student having class= XI ; iv. Select gender, avg(marks) from student group by gender having class = XI ; Choose the correct option: a. Both (ii) and (iii) b. Both (ii) and (iv) c. Both (i) and (iii) d. Only (iii) (v) Help Ritesh to write the command to display the name of the youngest student? a. b. c. d. select select select select name,min(DOB) from student ; name,max(DOB) from student ; name,min(DOB) from student group by name ; name,maximum(DOB) from student; Page 7 of 14 1 Part - B Section I 24 2 Consider a given Series , M1: Term1 Term2 Term3 Term4 index Marks 45 65 24 89 Write a program in Python Pandas to create the series. 25 State any two differences between single row functions and multiple row functions. 2 OR What is the difference between the order by and group by clause when used alongwith the select statement. Explain with an example. 26 Consider the decimal number x with value 8459.2654. Write commands in SQL to: i. round it off to a whole number ii. round it to 2 places before the decimal. 2 27 Consider the following Series object, S_amt 2 Table Chair Sofa Stool 350 200 800 150 i. Write the command which will display the name of the furniture having rent>250. ii. Write the command to name the series as Furniture. 28 Anjali writes the following commands with respect to a table employee having fields, empno, name, department, commission. Command1 : Select count(*) from employee; Page 8 of 14 2 Command2: Select count(commission) from employee; She gets the output as 4 for the first command but gets an output 3 for the second command. Explain the output with justification. 29 Consider the following SQL string: Preoccupied 2 Write commands to display: a. occupied b. cup OR Considering the same string Preoccupied Write SQL commands to display: a. the position of the substring cup in the string Preoccupied b. the first 4 letters of the string 30 2 Consider the following DataFrame, classframe St1 St2 St3 St4 Rollno 1 2 3 4 Name Aman Preeti Kartikey Lakshay Class Section CGPA IX E 8.7 X F 8.9 IX D 9.2 X A 9.4 Stream Science Arts Science Commerce Write commands to : i. Add a new column Activity to the Dataframe ii. Add a new row with values ( 5 , Mridula ,X, F , 9.8, Science) 31 Expand the following terms related to Computer Networks: a. SMTP b. POP c. FTP d. VoIP 2 32 List any two health hazards related to excessive use of Technology. 2 Page 9 of 14 33 34 Priyanka is using her internet connection to book a flight ticket. This is a classic example of leaving a trail of web activities carried by her. What do we call this type of activity? What is the risk involved by such kind of activity? Section -II Cconsider two objects x and y. x is a list whereas y is a Series. Both have values 20, 40,90, 110. 2 3 What will be the output of the following two statements considering that the above objects have been created already a. print (x*2) b. print(y*2) Justify your answer. 35 What do you mean by Identity theft? Explain with the help of an example. 3 OR What do you understand by Net Ettiquetes? Explain any two such ettiquetes. 36 Consider the following graph . Write the code to plot it. 3 OR Draw the following bar graph representing the number of students in each class. Page 10 of 14 37 A relation Vehicles is given below : V_no AW125 J0083 S9090 M0892 W9760 R2409 Type Wagon Jeep SUV Mini van SUV Mini van Company Maruti Mahindra Mitsubishi Datsun Maruti Mahindra 3 Price 250000 4000000 2500000 1500000 2500000 350000 Qty 25 15 18 26 18 15 Write SQLcommands to: a. Display the average price of each type of vehicle having quantity more than 20. b. Count the type of vehicles manufactured by each company. c. Display the total price of all the types of vehicles. 38 Section -III Write a program in Python Pandas to create the following DataFrame batsman from a Dictionary: B_NO 1 2 3 4 Name Sunil Pillai Gaurav Sharma Piyush Goel Kartik Thakur Score1 90 65 70 80 Score2 80 45 90 76 Perform the following operations on the DataFrame : 1)Add both the scores of a batsman and assign to column Total 2)Display the highest score in both Score1 and Score2 of the DataFrame. Page 11 of 14 5 3)Display the DataFrame 39 Write the SQL functions which will perform the following operations: i) To display the name of the month of the current date . ii) To remove spaces from the beginning and end of a string, Panorama . iii) To display the name of the day eg, Friday or Sunday from your date of birth, dob. iv) To display the starting position of your first name(fname) from your whole name (name). v) To compute the remainder of division between two numbers, n1 and n2 5 OR Consider a table SALESMAN with the following data: SNO SNAME SALARY BONUS DATE OF JOIN 40. A01 Beena Mehta 30000 45.23 29-10-2019 A02 K. L. Sahay 50000 25.34 13-03-2018 B03 Nisha Thakkar 30000 35.00 18-03-2017 B04 Leela Yadav 80000 NULL 31-12-2018 C05 Gautam Gola 20000 NULL 23-01-1989 C06 Trapti Garg 70000 12.37 15-06-1987 D07 Neena Sharma 50000 27.89 18-03-1999 Write SQL queries using SQL functions to perform the following operations: a) Display salesman name and bonus after rounding off to zero decimal places. b) Display the position of occurrence of the string ta in salesman names. c) Display the four characters from salesman name starting from second character. d) Display the month name for the date of join of salesman e) Display the name of the weekday for the date of join of salesman A company in Mega Enterprises has 4 wings of buildings as shown in the diagram : Page 12 of 14 5 W1 W3 W2 W4 Center to center distances between various Buildings: W3 to W1 - 50m W1 to W2 - 60m W2 to W4 - 25m W4 to W3 - 170m W3 to W2 - 125m W1 to w4 - 90m Number of computers in each of the wing: W1 - 150 W2 - 15 W3 - 15 W4 - 25 Computers in each wing are networked but wings are not networked The company has now decided to connect the wings also. i. Suggest a most suitable cable layout for the above connections. ii. Suggest the most appropriate topology of the connection between the wings. iii. The company wants internet accessibility in all the wings. Suggest a suitable technology . iv. Suggest the placement of the following devices with justification if the company wants minimized network traffic a)Repeater b)Hub / switch v. The company is planning to link its head office situated in New Delhi with the offices in hilly areas. Suggest a way to connect it economically. Page 13 of 14 Page 14 of 14 Class XII INFORMATICS PRACTICES (065) SAMPLE QUESTION PAPER (2020 - 21) Marking Scheme Max. Marks: 70 Time: 3 hours Section A Questi on No. 1 2 i. ii. True False mark for each correct answer plt.title() Total 1 1 1 mark for correct answer 3. 50 1 1 mark for the correct answer 4 print(Sequences.head(4)) 1 1 mark for the correct usage of head() 5 print(S1+S2) 1 1 mark for the correct print() statement 6 histogram 1 1 mark for the correct answer 7 Firewall 1 1 mark for the correct answer Page 1 of 12 8 column 1 1 mark for the correct answer 9 Bug 1 1 mark for the correct answer 10 Dynamic web page 1 1 mark for the correct answer 11 Aggregate Function 1 1 mark for the correct answer 12 Plagiarism 1 1 mark for the correct answer 13 isnull() 1 1 mark for the correct answer 14 Cookies 1 1 mark for the correct answer 15 c. Avast 1 1 mark for the correct answer 16 1 spam 1 mark for the correct answer 17 Buy environmentally friendly electronics Donate used electronics to social programs Reuse , refurbish electronics Recycling e-waste Any other correct answer to be considered 1 1 mark for the correct answer Page 2 of 12 18 1 update 19 1 mark for the correct answer Select now(); 1 1 mark for the correct answer 20 Switch 1 1 mark for the correct answer 21 Spam or spamming 1 I mark for the correct answer 22.(i) (ii) b. print(df.max()) 4 1 mark for the correct answer a. df1=df[df[ rollno ]==4] print(df1) d. df1=df[df.rollno==4] print(df1) mark for mentioning option(a) mark for mentioning option(d) (iii) a. both (i) and (ii) 1 mark for stating option a as correct answer mark for staing option b as correct answer (iv) a. d. print(df.columns) 1 mark for the correct answer (v) b. df [ Grade ]=[ A , B , A , A , B , A ] 1 mark for the correct answer 23 (i) b. Both (iii) and (iv) 4 select name from student where city= Agra or city= Mumbai ; or Page 3 of 12 select name from student where city IN( Agra , Mumbai ); d. Only (iii) iii. select name from student where city= Agra or city= Mumbai ; 1 mark for stating option b as correct answer mark for stating d as correct answer (ii) b. Rollno 6 7 3 4 Name Maakhiy Neha Geet Preeti Class XI X XI XII DOB 12/12/94 8/12/95 6/5/97 8/8/95 Gender F F F F City Dubai Moscow Agra Mumbai Marks 256 324 470 492 1 mark for the correct answer (iii) d. Select class, max(marks) from student group by class; 1 mark for the correct answer (iv) b. Both (ii) and (iv) Select gender, average(marks) from student group by gender where class= XI ; or Select gender, average(marks) from student group by gender having class = XI ; 1 mark for the correct answer (v) b. select name,max(DOB) from student ; 1 mark for the correct answer Page 4 of 12 Section B 24 import pandas as pd m1=pd.Series([45,65,24,89],index=['term1','term2','t erm3','term4']) 25 mark mark mark mark 2 for import statement for usage of Series () for stating index as a list for creating object m1 Differences between single row functions and multiple row functions. (i) Single row functions work on one row only whereas multiple row functions group rows (ii) Single row functions return one output per row whereas multiple row functions return only one output for a specified group of rows. 2 OR The order by clause is used to show the contents of a table/relation in a sorted manner with respect to the column mentioned after the order by clause. The contents of the column can be arranged in ascending or descending order. The group by clause is used to group rows in a given column and then apply an aggregate function eg max(), min() etc on the entire group. (any other relevant answer) Single row v/s Multiple row functions 1 mark for each valid point Group by v/s Order by 1 mark for correct explanation 1 mark for appropriate example Page 5 of 12 26 27 i. select round(8459.2654); ii.select round(8459.2654,-2); 1 mark each for correct answer of part (i) , (ii) i. print(S_amt[S_amt>250]) ii. S_amt.name= 28 2 2 'Furniture' 1 mark each for correct answer of part (i) , (ii) This is because the column commission contains a NULL value and the aggregate functions do not take into account NULL values. Thus Command1 returns the total number of records in the table whereas Command2 returns the total number of non NULL values in the column commission. 29 2 2 a. select or select or select or select substr("Preoccupied", 4); substring("Preoccupied", 4); mid("Preoccupied",4); right(("Preoccupied" , 8); b. select substr("Preoccupied" ,6,3); or select substring("Preoccupied", 6,3); or select mid(("Preoccupied" ,6,3); OR a. select instr 'Preoccupied' , 'cup')); b. select left 'Preoccupied',4); 1 mark for each correct answer of part (a) , (b) 30 i. ii. classframe[ Activity ]=[ Swimming , Dancing , Cricket , Singing ] classframe.loc[ St5 ]=[1, Mridula , X , F , 9.8, Science ] 2 Page 6 of 12 1 mark for each correct answer 31 a. SMTP: Simple Mail Transfer Protocol b. POP: Point to Point Protocol c. FTP: File Transfer Protocol d. VoIP: Voice over Internet Protocol 2 marks for each correct full form 32 The continuous use of devices like smartphones, computer desktop, laptops, head phones etc cause a lot of health hazards if not addressed. These are: i. Impact on bones and joints: wrong posture or long hours of sitting in an uncomfortable position can cause muscle or bone injury. ii. Impact on hearing: using headphones or earphones for a prolonged time and on high volume can cause hearing problems and in severe cases hearing impairments. iii. Impact on eyes: This is the most common form of health hazard as prolonged hours of screen time can lead to extreme strain in the eyes. iv. Sleep problem: Bright light from computer devices block a hormone called melatonin which helps us sleep. Thus we can experience sleep disorders leading to short sleep cycles. 2 2 marks for any two correct points 33 We call this type of activity as Digital Footprints 2 Risk involved : It includes websites we visit emails we send, and any information we submit online, etc., along with the computer s IP address, location, and other device specific details. Such data could be used for targeted advertisement or could also be misused or exploited. 1 mark for naming the activity 1 mark for mentioning any one risk . 34 a. will give the output as: [20,40,90,110,20,40,90,110] 3 b. will give the output as Page 7 of 12 0 1 2 3 40 80 180 220 Justification: In the first statement x represents a list so when a list is multiplied by a number, it is replicated that many number of times. The second y represents a series. When a series is multiplied by a value, then each element of the series is multiplied by that number. 35 1 mark for output of list multiplication 1 mark for output of Series multiplication 1 mark for the justification Identity theft is the crime of obtaining the personal or financial information of another person for the sole purpose of assuming that person's name or identity to make transactions or use it to post inappropriate remarks , comments etc. Example: Alex likes to do his homework late at night. He uses the Internet a lot and also sends useful data through email to many of his friends. One Day he forgot to sign out from his email account. In the morning, his twin brother, Flex started using the computer. He used Flex s email account to send inappropriate messages to his contacts 3 Or any other relevant example 1 mark for explaining Identity theft 1 nark for suitable example OR Net Ettiquets refers to the proper manners and behaviour we need to exhibit while being online. These include : 1. No copyright violation: we should not use copyrighted materials without the permission of the creator or owner. We should give proper credit to owners/creators of open source content when using them. Page 8 of 12 2. Avoid cyber bullying: Avoid any insulting, degrading or intimidating online behaviour like repeated posting of rumours, giving threats online, posting the victim s personal information, or comments aimed to publicly ridicule a victim. Or any other relevant answer. 1 marks for deifition of Net Ettiquettes 1 mark eachfor the example with explanation. 36 import matplotlib.pyplot as plt plt.plot([2,7],[1,6]) plt.show() alternative answer import matplotlib.pyplot as plt a = [1,2,3,4,5,6] b = [2,3,4,5,6,7] plt.plot (a,b) 1 mark for the import statement 1 mark for appropriate usage of plot() 1 mark for show() 3 OR import matplotlib.pyplot as plt Classes = ['VII','VIII','IX','X'] Students = [40,45,35,44] plt.bar(classes, students) plt.show() 1 mark for the import statement 1 mark for appropriate usage of pie() 1 mark for show() 37 a. select Type, avg(Price) from Vehicle group by Type having Qty>20; b. select Company, count(distinct Type) from Vehicle group by Company; c. Select Type, sum(Price* Qty) from Vehicle group by Type; 3 Page 9 of 12 a. mark for the Select with avg(), mark for the having clause b. mark for the Select with count() , mark for group by clause c. mark for the Select with sum() , mark for the group by clause 38 5 import pandas as pd d1={'B_NO':[1,2,3,4], 'Name':["Sunil Pillai","Gaurav Sharma","Piyush Goel","Kartik Thakur"],'Score1':[90,65,70,80], 'Score2':[80,45,95,76] } df=pd.DataFrame(d1) print(df) df['Total'] = df['Score1']+ df['Score2'] Alternative Answer Scheme df['Total'] = sum(df['Score1'], df['Score2']) print(df) print("Maximum scores are : " , max(df['Score1']), max(df['Score2'])) 1 mark for import statement 2 marks for creating the dataframe 1 mark for creating column Total to hold the sum of scores 1 mark for displaying highest scores in Score1 & Score2 39 5 i) monthname(date(now())) ii) trim( Panaroma ) iii) dayname(date(dob)) iv)instr(name, fname) v) mod(n1,n2) 1 mark for each correct answer OR i) Select sname, round(bonus,0) from Salesman; Page 10 of 12 ii) Select instr(Sname, ta ) from Salesman; iii) Select mid(Sname,2,4) from Salesman; alternative answer iii) Select Substring(Sname,2,4) from Salesman; iv) Select monthname(DateofJoin) from Salesman; v) Select dayname(DateofJoin) from Salesman; 1/2 mark each 1/2 mark each 1/2 mark each 1/2 mark each 1/2 mark each for for for for for correct usage correct usage correct usage correct usage correct usage of of of of of Select Select Select Select Select and and and and and round() instr() substr() monthname() dayname() Note : Instead of substr() , substring() may be accepted as correct 40. i) Most suitable layout according to distance is : W1 W3 5 W2 W4 1 mark for an appropriate cable layout ii) Star Topology 1 mark for correct topology iii) Broadband. 1 mark for suggesting suitable technology Page 11 of 12 iv). a. Not required. Repeaters may be skipped as per above layout (because distance is less than 100 m) b. In every wing mark for placement of repeater mark for placement of hub / switch iv) Radio Waves 1 mark for the appropriate connectivity mode between HQ and other offices Page 12 of 12

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

Formatting page ...

 

  Print intermediate debugging step

Show debugging info


 


Tags : cbse, cbse papers, cbse sample papers, cbse books, portal for cbse india, cbse question bank, central board of secondary education, cbse question papers with answers, prelims preliminary exams, pre board exam papers, cbse model test papers, solved board question papers of cbse last year, previous years solved question papers, free online cbse solved question paper, cbse syllabus, india cbse board sample questions papers, last 10 years cbse papers, cbse question papers 2017, cbse guess sample questions papers, cbse important questions, specimen / mock papers 2018.  

© 2010 - 2025 ResPaper. Terms of ServiceContact Us Advertise with us

 

cbse12 chat