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) 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) 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); Info[I] = toupper(Info[I]); 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) 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) 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() 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() 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. 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() intNum, Rndnum; 10. void main() 11. Answer the questions based on the following structure definition: struct Product 12. Predict the output of the following program : #include Please click on below link to download CBSE Class 11 Computer Science Output Worksheet
{ C1 += 2;
C2 += 1; }
void main()
{ int P1 = 20, P2 = 4;
Position(P1);
cout<< P1 << ", " << P2 <
cout<< P1 << ", " << P2 <
{ for (int I = 20; I <= HisNum; I += 5)
cout<< I << " ";
cout<
{ MyNum += 10;
Withdef(MyNum); }
void main()
{
int YourNum = 20;
Control(YourNum);
Withdef();
cout<< "Number = " <
void main()
{ char Memo[] = "Justnow";
Encode(Memo, 2);
cout<< Memo <
{ for (int I = 0; Info[I] != '\0'; I++)
if (I % 2 == 0)
Info[I] = Info[I] - N;
else if (islower(Info[I]))
else
Info[I] = Info[I] + N; }
{
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:" <
{
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 <
{ char Temp = Text[C];
Text[C] = Text[R];
Text[R] = Temp; }
{
randomize();
int Points,LIMIT=5;
Points = 100 + random(LIMIT);
for (int P = Points; P >= 100; P--)
cout<< P << "#";
cout<
(iii) 100#101#102#103#104# (iv) 104#103#102#101#100#
{ randomize();
int Marks[] = { 99, 92, 94, 96, 93, 95 }, MyMarks;
MyMarks = Marks[1 + random(2)];
cout<
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
{ randomize();
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
{ int A[]={30, 40, 50, 20, 10, 5};
int split=3,k;
for(k=0; k<6; k++)
{ if(k
else A[k] *=k; }
for (int k=0; k<6; k++)
{ (k%2==0)? cout<
{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
void Change(int &x, int y, int z=12)
{int a=x+z;
x=x-y;
y=x*10;
cout<
{int g=7,k=20,p= -5;
Change(g,k);
cout<
cout<
CBSE Class 11 Computer Science Python Modules Worksheet |
CBSE Class 11 Computer Science Strings Worksheet |
CBSE Class 11 Computer Science Lists Worksheet |
CBSE Class 11 Computer Science Dictionary And Sorting Worksheet |
CBSE Class 11 Computer Science Tuples Worksheet |
Output CBSE Class 11 Computer Science 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. Teachers of studiestoday have referred to the NCERT book for Class 11 Computer Science to develop the Computer Science Class 11 worksheet. 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. After solving these you should also refer to Class 11 Computer Science MCQ Test for the same chapter. 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.
You can download the CBSE Practice worksheets for Class 11 Computer Science Output for the latest session from StudiesToday.com
Yes, the Practice worksheets issued for Output Class 11 Computer Science have been made available here for the latest academic session
There is no charge for the Practice worksheets for Class 11 CBSE Computer Science Output you can download everything free
Regular revision of practice worksheets given on studiestoday for Class 11 subject Computer Science Output can help you to score better marks in exams
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