Class 12 Computer Science Solved Model Papers: CBSE Class 12 Computer Science Sample Paper 2015 Set 01
Explore authentic exam practice materials through the CBSE Class 12 Computer Science Sample Paper 2015 Set 01. Tailored for Class 12 learners, utilizing these Computer Science sample papers ensures thorough preparation and strengthens time management skills before final CBSE evaluations.
Download Class 12 Computer Science Sample Paper PDF
Access the complete sample paper PDF for Class 12 Computer Science below. Regular practice with these targeted mock exams builds familiarity with expected question patterns and chapter weightage to help secure higher marks.
Q1.(i) Reusability of classes is one of the major properties of OOP’s. How is it implemented in C++. Explain.
(ii) Define a class OUTFIT with the following members :
Private Members : static member Total Price - float
Code, Type , Fabric – String
Size , Price - float
A InitPrice function to calculate and assign the Price as follows :
If Fabric is “ Denim “
Type Price
Trouser 1500
Jacket 2500
for any other Fabric the above price gets reduced by 25%
Public Members
A Constructor initializing all strings with the words “ Not Initialised” and Size and Price to 0
A function to input the data.
A static function to display the static data
A destructor to display the data of each object.
Write a program to input the information of 15 Brands . Print the information of all Denim items. Also print Total Price of all Jackets .
(iii) In the following program, find the correct possible output(s) from the options. Justify your answer.
#include<iostream.h>
#include<stdlib.h>
const int LOW = 15;
void main( )
{ randomize( );
int Point =5 , No;
for(int i=1; i<=4; i++)
{ No = LOW + random(Point);
cout<<No <<’;’;
Point--; } }
i. 19;16;15;18;
ii. 14;18;15;18;
iii. 19;16;14;18;
iv. 19;16;15;16; ( 2 + 5 + 3 )
Q2. (i) What is constructor overloading . How are different constructors called ?
(ii) Answer the questions given below after going through the following class:
class EMP { int EMPID;
char EMPName[20];
public: ~EMP( ) // Function 1
{ cout<<”Un-Allocated”<<endl; }
void status( ) // Function 2
{ cout<<EMPID<<”;”<<EMPName<<endl; }
EMP( ) // Function 3
{ EMPID=10;
EMPName[0]=’\0’; }
EMP(EMP & X) // Function 4
{ EMPID=X.EMPID+12;
strcpy(EMPName, X.EMPName ); } };
a) Which member function out of function1, function2, function3 and function4 shown in the above example of class EMP is called automatically, when the scope of an object gets over? What is this function called ?
b) EMP W; //Statement 1
EMP Y (W); //Statement 2
Which member function out of Function1, Function2, Function3 and Function4 will be called on execution of Statement 1 and Statement 2? What are these functions specifically known as ?
Please click the link below to download full pdf file for CBSE Class 12 Computer Science Sample Paper 2015 Set A
Free study material for Computer Science
Exam Preparation Sample Paper for Class 12 Computer Science CBSE Class 12 Computer Science Sample Paper 2015 Set 01
Access Sample Papers for Class 12 Computer Science
Access structured sample papers for Class 12 Computer Science. Solving the CBSE Class 12 Computer Science Sample Paper 2015 Set 01 provided above helps students understand official exam blueprints and tackle anticipated question formats with confidence.
Key Advantages of Solving CBSE Class 12 Computer Science Sample Paper 2015 Set 01
- Original Practice Material: Access unique questions for Computer Science designed to challenge your understanding.
- Self-Assessment: Evaluate scores per set to pinpoint weak zones in Class 12 Computer Science.
- Exam Completion Skills: Routine problem sets train you to manage test duration efficiently without stress.
Steps to Follow After Completing CBSE Class 12 Computer Science Sample Paper 2015 Set 01
- Verify Answers: Compare your responses against professional teacher solutions provided in the sample paper keys.
- Error Analysis: Class 12 learners must review incorrect answers carefully to understand underlying mistakes.
- Concept Reinforcement: Consult the official NCERT book for Class 12 Computer Science when stuck before re-attempting problems.
FAQs
You can download the complete PDF for CBSE Class 12 Computer Science Sample Paper 2015 Set 01 for free from StudiesToday.com. Our resources for Class 12 Computer Science are updated for the latest academic session and follow the official exam pattern.
Yes, CBSE Class 12 Computer Science Sample Paper 2015 Set 01 comes with detailed, teacher-verified solutions. We have provided step-by-step answers for Computer Science to help students of Class 12 understand correct methodology and marking scheme.
Practicing this Computer Science paper helps in time management and identifying important topics. For Class 12, solving mock papers is the best way to gain confidence and reduce exam-day anxiety.
Yes, all our study materials for Class 12 Computer Science are provided in a mobile-friendly PDF format. You can easily download CBSE Class 12 Computer Science Sample Paper 2015 Set 01 on your mobile device.