CBSE Class 11 Computer Science Output Worksheet

Read and download free pdf of CBSE Class 11 Computer Science Output Worksheet. Download printable Computer Science Class 11 Worksheets in pdf format, CBSE Class 11 Computer Science Output Worksheet has been prepared as per the latest syllabus and exam pattern issued by CBSE, NCERT and KVS. Also download free pdf Computer Science Class 11 Assignments and practice them daily to get better marks in tests and exams for Class 11. Free chapter wise worksheets with answers have been designed by Class 11 teachers as per latest examination pattern

Output Computer Science Worksheet for Class 11

Class 11 Computer Science students should refer to the following printable worksheet in Pdf in Class 11. This test paper with questions and solutions for Class 11 Computer Science will be very useful for tests and exams and help you to score better marks

Class 11 Computer Science Output Worksheet Pdf

 TOPIC : OUTPUT QUESTIONS


1. Find the output of the following program. Assume all required header files are already being included in the program.

void Position(int &C1, int C2 = 3)
{ C1 += 2;
C2 += 1; }
void main()
{ int P1 = 20, P2 = 4;
Position(P1);
cout<< P1 << ", " << P2 <Position(P2, P1);
cout<< P1 << ", " << P2 <

2. Find the output of the following program. Assume all required header files are already being included in the program.

void Withdef(int HisNum = 30)
{ for (int I = 20; I <= HisNum; I += 5)
cout<< I << " ";
cout<void Control(int&MyNum)
{ MyNum += 10;
Withdef(MyNum); }
void main()
{
int YourNum = 20;
Control(YourNum);
Withdef();
cout<< "Number = " <

3. Find the output of the following program. Assume all required header files are already being included in the program.

void Encode(char Info[], int N);
void main()
{ char Memo[] = "Justnow";
Encode(Memo, 2);
cout<< Memo <void Encode(char Info[], int N)
{ for (int I = 0; Info[I] != '\0'; I++)
if (I % 2 == 0)
Info[I] = Info[I] - N;
else if (islower(Info[I]))

Info[I] = toupper(Info[I]);
else
Info[I] = Info[I] + N; }

4. Find the output of the following program. Assume all required header files are already being included in the program.

void ChangeIt(char Text[], char C)
{
for (int K = 0; Text[K] != '\0'; K++)
{ if (Text[K] >= 'F' && Text[K] <= 'L')
Text[K] = tolower(Text[K]);
else if (Text[K] == 'E' || Text[K] == 'e')
Text[K] = C;
else if (K % 2 == 0)
Text[K] = toupper(Text[K]);
else
Text[K] = Text[K - 1]; }
}
void main()
{ char oldText[] = "pOwERALone";
ChangeIt(oldText, '%');
cout<< "New TEXT:" <

5. Find the output of the following program. Assume all required header files are already being included in the program.

void Convert(char Str[], int Len)
{
for (int Count = 0; Count < Len; Count++)
{
if (isupper(Str[Count]))
Str[Count] = tolower(Str[Count]);
else if (islower(Str[Count]))
Str[Count] = toupper(Str[Count]);
else if (isdigit(Str[Count]))
Str[Count] = Str[Count] + 1;
Else Str[Count] = '*'; }
}
void main()
{
char Text[] = "CBSE Exam 2015";
int Size = strlen(Text);
Convert(Text, Size);
cout<< Text <for (int C = 0, R = Size - 1; C < Size / 2; C++, R--)
{ char Temp = Text[C];
Text[C] = Text[R];
Text[R] = Temp; }

cout<< Text <

6. Study the following program and select the possible output from it. Assume all required header files are already being included in the program.

void main()
{
randomize();
int Points,LIMIT=5;
Points = 100 + random(LIMIT);
for (int P = Points; P >= 100; P--)
cout<< P << "#";
cout<(i) 103#102#106#100# (ii) 100#101#102#103
(iii) 100#101#102#103#104# (iv) 104#103#102#101#100#

7. In the following C++ program what is the expected value of MyMarks from Options (i) to (iv) given below. Justify answer. Assume all required header files are already being included in the program.

void main()
{ randomize();
int Marks[] = { 99, 92, 94, 96, 93, 95 }, MyMarks;
MyMarks = Marks[1 + random(2)];
cout<(i) 99 (ii) 94 (iii) 96 (iv) None of the above

8. Go through the C++ code shown below, and find out the possible output or outputs from the suggested output options (i) to(iv). Also, write the least value and highest value, which can be assigned to the variable guess. Assume all required header files are already being included in the program.
void main()
{ randomize();
int Guess, High = 4;
Guess = random(High) + 50;
for (int C = Guess; C <= 55; C++)
cout<< C << "#"; }
(i) 50 # 51 # 52 # 54 # 55 # (ii) 52 # 53 # 54 # 55 #
(iii) 53 # 54 # (iv) 51 # 52 # 53 # 54 # 55

9. Observe the following program SCORE.CPP carefully, if the value of Num entered by the user is 5, choose the correct possible output(s) from the options from (i) to (iv), and justify your option. Assume all required header files are already being included in the program.

void main()
{ randomize();

intNum, Rndnum;
cin>>Num;
Rndnum = random(Num) + 5;
for (int N = 1; N <= Rndnum; N++)
cout<< N << ""; }
Output Options:
(i) 1 2 3 4 (ii) 1 2 (iii) 1 2 3 4 5 6 7 8 9 (iv) 1 2 3

10. void main()
{ int A[]={30, 40, 50, 20, 10, 5};
int split=3,k;
for(k=0; k<6; k++)
{ if(kA[k] +=k;
else A[k] *=k; }
for (int k=0; k<6; k++)
{ (k%2==0)? cout<

11. Answer the questions based on the following structure definition:

struct Product
{int code;
char itemname[20];
float price; };
Product P[ ]={ {111,”Tooth Paste”,30.50},{222,”Hair Brush”,78.60},{333,”Bath
Soap”,25.50},{444,”Shampoo”,43.45}};
Give the values of the following:
a) P[1].price b) P[1].itemname[3] c) P[2].price+15 d) P[3].itemname

12. Predict the output of the following program :

#include
void Change(int &x, int y, int z=12)
{int a=x+z;
x=x-y;
y=x*10;
cout<void main( )
{int g=7,k=20,p= -5;
Change(g,k);
cout<Change(k,p,g);
cout<

Please click on below link to download CBSE Class 11 Computer Science Output Worksheet

Chapter 05 Getting Started with Python
CBSE Class 11 Computer Science Python Modules Worksheet
z More Worksheets for Class 11 Computer Science
CBSE Class 11 Computer Science Boolean Logic Worksheet
CBSE Class 11 Computer Science Data Management Worksheet Set A
CBSE Class 11 Computer Science Data Management Worksheet Set B
CBSE Class 11 Computer Science Data Management Worksheet Set C
CBSE Class 11 Computer Science Data Management Worksheet Set D
CBSE Class 11 Computer Science Data Management Worksheet Set E
CBSE Class 11 Computer Science Data Representation Worksheet
CBSE Class 11 Computer Science If Else Statements Worksheet
CBSE Class 11 Computer Science Operation And Expressions Worksheet
CBSE Class 11 Computer Science Output Worksheet
CBSE Class 11 Computer Science Programming and Computational Thinking Worksheet Set A
CBSE Class 11 Computer Science Programming and Computational Thinking Worksheet Set B
CBSE Class 11 Computer Science Programming and Computational Thinking Worksheet Set C
CBSE Class 11 Computer Science Programming and Computational Thinking Worksheet Set D
CBSE Class 11 Computer Science Programming Methodology Worksheet
CBSE Class 11 Computer Science Programming Question Worksheet Set A
CBSE Class 11 Computer Science Programming Question Worksheet Set B
CBSE Class 11 Computer Science Vacation Assignment Worksheet
CBSE Class 11 Computer Science Worksheet Set A
CBSE Class 11 Computer Science Worksheet Set B
CBSE Class 11 Computer Science Worksheet Set C
CBSE Class 11 Computer Science Worksheet Set D
CBSE Class 11 Computer Science Worksheet Set E Solved
CBSE Class 11 Computer Science Worksheet Set F Solved
CBSE Class 11 Computer Science Worksheet Set G Solved
CBSE Class 11 Computer Science Worksheet Set H Solved
CBSE Class 11 Computer Science Worksheet Set I Solved
CBSE Class 11 Computer Science Worksheet Set J Solved

More Study Material

CBSE Class 11 Computer Science Output Worksheet

The above practice worksheet for Output has been designed as per the current syllabus for Class 11 Computer Science released by CBSE. Students studying in Class 11 can easily download in Pdf format and practice the questions and answers given in the above practice worksheet for Class 11 Computer Science on a daily basis. All the latest practice worksheets with solutions have been developed for Computer Science by referring to the most important and regularly asked topics that the students should learn and practice to get better scores in their examinations. Studiestoday is the best portal for Printable Worksheets for Class 11 Computer Science students to get all the latest study material free of cost.

Worksheet for Computer Science CBSE Class 11 Output

Teachers of studiestoday have referred to the NCERT book for Class 11 Computer Science to develop the Computer Science Class 11 worksheet. If you download the practice worksheet for the above chapter daily, you will get better scores in Class 11 exams this year as you will have stronger concepts. Daily questions practice of Computer Science printable worksheet and its study material will help students to have a stronger understanding of all concepts and also make them experts on all scoring topics. You can easily download and save all revision Worksheets for Class 11 Computer Science also from www.studiestoday.com without paying anything in Pdf format. After solving the questions given in the practice sheet which have been developed as per the latest course books also refer to the NCERT solutions for Class 11 Computer Science designed by our teachers

Output worksheet Computer Science CBSE Class 11

All practice paper sheet given above for Class 11 Computer Science have been made as per the latest syllabus and books issued for the current academic year. The students of Class 11 can be assured that the answers have been also provided by our teachers for all test paper of Computer Science so that you are able to solve the problems and then compare your answers with the solutions provided by us. We have also provided a lot of MCQ questions for Class 11 Computer Science in the worksheet so that you can solve questions relating to all topics given in each chapter. All study material for Class 11 Computer Science students have been given on studiestoday.

Output CBSE Class 11 Computer Science Worksheet

Regular printable worksheet practice helps to gain more practice in solving questions to obtain a more comprehensive understanding of Output concepts. Practice worksheets play an important role in developing an understanding of Output in CBSE Class 11. Students can download and save or print all the printable worksheets, assignments, and practice sheets of the above chapter in Class 11 Computer Science in Pdf format from studiestoday. You can print or read them online on your computer or mobile or any other device. After solving these you should also refer to Class 11 Computer Science MCQ Test for the same chapter.

Worksheet for CBSE Computer Science Class 11 Output

CBSE Class 11 Computer Science best textbooks have been used for writing the problems given in the above worksheet. If you have tests coming up then you should revise all concepts relating to Output and then take out a print of the above practice sheet and attempt all problems. We have also provided a lot of other Worksheets for Class 11 Computer Science which you can use to further make yourself better in Computer Science

Where can I download latest CBSE Practice worksheets for Class 11 Computer Science Output

You can download the CBSE Practice worksheets for Class 11 Computer Science Output for the latest session from StudiesToday.com

Can I download the Practice worksheets of Class 11 Computer Science Output in Pdf

Yes, you can click on the links above and download chapter-wise Practice worksheets in PDFs for Class 11 for Computer Science Output

Are the Class 11 Computer Science Output Practice worksheets available for the latest session

Yes, the Practice worksheets issued for Output Class 11 Computer Science have been made available here for the latest academic session

How can I download the Output Class 11 Computer Science Practice worksheets

You can easily access the links above and download the Class 11 Practice worksheets Computer Science for Output

Is there any charge for the Practice worksheets for Class 11 Computer Science Output

There is no charge for the Practice worksheets for Class 11 CBSE Computer Science Output you can download everything free

How can I improve my scores by solving questions given in Practice worksheets in Output Class 11 Computer Science

Regular revision of practice worksheets given on studiestoday for Class 11 subject Computer Science Output can help you to score better marks in exams

Are there any websites that offer free Practice test papers for Class 11 Computer Science Output

Yes, studiestoday.com provides all the latest Class 11 Computer Science Output test practice sheets with answers based on the latest books for the current academic session

Can test sheet papers for Output Class 11 Computer Science be accessed on mobile devices

Yes, studiestoday provides worksheets in Pdf for Output Class 11 Computer Science in mobile-friendly format and can be accessed on smartphones and tablets.

Are practice worksheets for Class 11 Computer Science Output available in multiple languages

Yes, practice worksheets for Class 11 Computer Science Output are available in multiple languages, including English, Hindi