CBSE Class 12 Computer Science Old Compartment Question Paper Solved 2020

SECTION A [Only for candidates, who opted for C++] 1. (a) Identify the valid keywords in C++ from the following : (i) If (ii) for (iii) case (iv) Object (v) struct (vi) sub (vii) float (viii) My_class (b) Write the names of the correct header files, which must be included in…

CBSE Class 12 Computer Science Compartment Question Paper Solved 2020

SECTION A 1. (a) Which of the following is not a valid variable name in Python ? Justify reason for it not being a valid name.   (i) 5Radius   (ii) Radius_   (iii) _Radius   (iv) Radius   (b) Which of the following are keywords in Python ?   (i) break   (ii) check   (iii)…

CBSE Class 12 Computer Science Question Paper 2021 Set B

CBSE Class 12 Computer Science Question Paper 2021 Set B. Students can download the last year board exams question papers using the link below. Free download of examination question papers with solutions. Last 10 year question papers should be practised to get better marks in…

CBSE Class 12 Computer Science Question Paper 2021 Set A

CBSE Class 12 Computer Science Question Paper 2021 Set A. Students can download the last year board exams question papers using the link below. Free download of examination question papers with solutions. Last 10 year question papers should be practised to get better marks in…

CBSE Class 12 Computer Science Question Paper 2020 Set B

CBSE Class 12 Computer Science Question Paper 2020 Set B. Students can download the last year board exams question papers using the link below. Free download of examination question papers with solutions. Last 10 year question papers should be practised to get better marks in…

CBSE Class 12 Computer Science Question Paper 2021 Set D

1. a) Rewrite the following program after removing all syntactical error(s), if any. Underline each correction: #include<iostream.h> struct Display { int ROW, COL; } void Showpoint(Display D) { cout<< D.ROW << D.COL <<endl; } void main( ) { Display…