2023 2024 EduVark > Education Discussion > General Discussion


  #1  
June 16th, 2014, 05:07 PM
Super Moderator
 
Join Date: Mar 2012
CBSE Computer Science Solved Sample Question Paper

Here I am looking for the CBSE Class XII Board Computer Science Sample Question Paper, can you please provide me the same???

As you are am looking for the CBSE Class XII Board Computer Science Sample Question Paper, so here I am sharing the same with you

1.
(a) What is the difference between Global Variable and Local Variable?
(b) Write the names of the header files to which the following belong:
(i) strcmp() (ii) fabs()

(c) Rewrite the following program after removing the syntactical errors (if any). Underline each correction.

#include [iostream.h]
class PAYITNOW
{
int Charge;
PUBLIC:
void Raise(){cin>>Charge;}
void Show{cout<<Charge;}
};
void main()
{
PAYITNOW P;
P.Raise();
Show();
}

(d) Find the output of the following program:
#include <iostream.h>
struct PLAY
{ int Score, Bonus;};
void Calculate(PLAY &P, int N=10)
{
P.Score++;P.Bonus+=N;
}
void main()
{
PLAY PL={10,15};
Calculate(PL,5);
cout<<PL.Score<<”:”<<PL.Bonus<<endl;
Calculate(PL);
cout<<PL.Score<<”:”<<PL.Bonus<<endl;
Calculate(PL,15);
cout<<PL.Score<<”:”<<PL.Bonus<<endl;
}


Rest of the Questions are attached in below file which is free of cost

Last edited by Neelurk; April 1st, 2020 at 04:40 PM.
Similar Threads
Thread
UGC NET JRF Computer Science Paper II Solved Paper
KV PGT computer science sample paper
KV PGT computer science sample paper
DRDO Computer Science Exam Sample Question Paper
KVS PGT Computer Science last year solved paper
CBSE Board Accountancy Last years solved question paper
Diploma Computer Science Last Years Solved Question Paper
XII Computer Science Solved Question Papers
GATE for Computer Science Sample question paper
NET Computer Science Solved Question Paper
CBSE XII Last Years Solved Question Paper
UGC NET Computer Science Exam Solved Question Paper
UGC NET June Computer Science Exam Solved Question Paper
CBSE Class 12 Computer Science Exam Question Papers
CBSE Sample Paper of Computer of class 10



Quick Reply
Your Username: Click here to log in

Message:
Options



All times are GMT +5. The time now is 06:17 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Content Relevant URLs by vBSEO 3.6.0

1 2 3 4 5 6 7 8