Class 12 Computer Science Solved Model Papers: CBSE Class 12 Computer Science Sample Paper 2014 Set 02
Explore authentic exam practice materials through the CBSE Class 12 Computer Science Sample Paper 2014 Set 02. 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
View or download the dedicated CBSE Class 12 Computer Science Sample Paper 2014 Set 02 resource below. Engaging with these sample papers under timed conditions ensures continuous academic progress and mastery of the 2026-27 exam format.
1. (a) What is the difference between Global Variable and Local Variable? Also, give a suitable C++ code to illustrate both.
(b) Which C++ header file(s) will be essentially required to be included to run execute the following C++ code:
void main()
{
char Msg[ ]="Sunset Gardens";
for (int I=5;I<strlen(Msg);I++)
puts(Msg);
}
(c) Rewrite the following program after removing the syntactical errors (if any).
Underline each correction.
#include [iostream.h]
class MEMBER
{
int Mno;float Fees;
PUBLIC:
void Register(){cin>>Mno>>Fees;}
void Display{cout<<Mno<<" : "<<Fees<<endl;}
};
void main()
{
MEMBER M;
Register();
M.Display();
}
(d) Find the output of the following program:
#include <iostream.h>
struct GAME
{ int Score, Bonus;};
void Play(GAME &g, int N=10)
{
g.Score++;g.Bonus+=N;
}
void main()
{
GAME G={110,50};
Play(G,10);
cout<<G.Score<<":"<<G.Bonus<<endl;
Play(G);
cout<<G.Score<<":"<<G.Bonus<<endl;
Play(G,15);
cout<<G.Score<<":"<<G.Bonus<<endl;
}
(e) Find the output of the following program:
#include <iostream.h>
void Secret(char Str[ ])
{
for (int L=0;Str[L]!='\0';L++);
for (int C=0;C<L/2;C++)
if (Str[C]=='A' || Str[C]=='E')
Str[C]='#';
else
{
char Temp=Str[C];
Str[C]=Str[L-C-1];
Str[L-C-1]=Temp;
}
}
void main()
{
char Message[ ]="ArabSagar";
Secret(Message);
cout<<Message<<endl;
}
(f) In the following program, if the value of Guess entered by the user is 65, what will be the expected output(s) from the following options (i), (ii), (iii) and (iv)?
#include <iostream.h>
#include <stdlib.h>
void main()
{
int Guess;
randomize();
cin>>Guess;
for (int I=1;I<=4;I++)
{
New=Guess+random(I);
cout<<(char)New;
}
}
(i) ABBC
(ii) ACBA
(iii) BCDA
(iv) CABD
2. (a) What do you understand by Data Encapsulation and Data Hiding? Also, give a suitable C++ code to illustrate both.
(b) Answer the questions (i) and (ii) after going through the following class:
class Seminar
{
int Time;
public:
Seminar() //Function 1
{
Time=30;cout<<"Seminar starts now"<<end1;
}
void Lecture() //Function 2
{
cout<<"Lectures in the seminar on"<<end1;
}
Seminar(int Duration) //Function 3
{
Time=Duration;cout<<"Seminar starts now"<<end1;
}
~Seminar()
//Function 4
{
cout<<"Vote of thanks"<<end1;
}
};
i) In Object Oriented Programming, what is Function 4 referred as and when does it get invoked/called?
ii) In Object Oriented Programming, which concept is illustrated by Function 1 and Function 3 together? Write an example illustrating the calls for these functions.
Please click the link below to download full pdf file for CBSE Class 12 Computer Science Sample Paper 2014 Set B
Free study material for Computer Science
CBSE Class 12 Computer Science Sample Paper 2014 Set 02 & Sample Question Papers for Class 12 Computer Science
Class 12 Computer Science CBSE Class 12 Computer Science Sample Paper 2014 Set 02 PDF Download Guide
Access structured sample papers for Class 12 Computer Science. Solving the CBSE Class 12 Computer Science Sample Paper 2014 Set 02 provided above helps students understand official exam blueprints and tackle anticipated question formats with confidence.
Why Practice Class 12 Computer Science Sample Papers?
- Curriculum Insights: Clarify chapter-wise weightage rules and question trends across Class 12.
- Gap Analysis: Check performance drops across sets to isolate specific Class 12 Computer Science topics needing extra attention.
- Time Efficiency: Working through objective and descriptive problems builds critical pacing to finish exams comfortably.
How to Analyze Your Performance in CBSE Class 12 Computer Science Sample Paper 2014 Set 02
- Self-Evaluation: Score your answers using official guidance to track your academic progress.
- Mistake Correction: Class 12 pupils must re-solve questions answered incorrectly to master the correct method.
- Continuous Practice: Take additional Computer Science sample modules online to maximize preparedness for CBSE evaluations.
FAQs
You can download the complete PDF for CBSE Class 12 Computer Science Sample Paper 2014 Set 02 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 2014 Set 02 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 2014 Set 02 on your mobile device.