HSC Maharashtra Board Computer Science Question Paper 2020 class 12

Maharashtra State Board Exam Question Papers for Computer Science Paper 1 and Computer Science paper 2 conducted in feb 2020 HSC Board. you can download these papers for HSC Maharashtra Board Computer Science Question Paper 2020 class 12 .

Solution for above MCQs https://www.youtube.com/watch?v=W8hSQEvXvNw

for above solution for program watch this video

Computer Science Question Paper 2 Maharashtra Board HSC 2020

for above solution of Mcqs watch this video

Maharashtra Board 2020 Computer Science Question Paper 1 free download

Maharashtra Board 2020 Computer Science Question Paper 2 free download

Maharashtra Board 2020 Electronics Question Paper 1 free download

Maharashtra Board 2020 Electronics Question Paper 2 free download

Maharashtra Board 2020 Physics Board Paper Solution free download

HSC New Syllabus 2021 Maharashtra Board – English Subjects

HSC New Syllabus 2021 Maharashtra Board – Physics Subjects

HSC New Syllabus 2021 Maharashtra Board – Chemistry Subjects

HSC New Syllabus 2021 Maharashtra Board – Maths Subjects

HSC New Syllabus 2021 Maharashtra Board – Biology Subjects

15 thoughts on “HSC Maharashtra Board Computer Science Question Paper 2020 class 12”

Pingback: HSC Physics board paper solution 2020 | Class 12

Pingback: Subject Codes HSC Maharashtra Board | Techniyojan

Pingback: 22 Computer Science Important questions for class 12th HSC | Techniyojan

Pingback: HSC Electronics class 12th Syllabus maharashtra board | Techniyojan

Pingback: HSC Electronics Board Question Paper 2020 class 12 | Techniyojan

Pingback: hsc MH board question papers with answers pdf 2020 | Techniyojan

Pingback: HSc physics new syllabus notes 2020 | Techniyojan

Pingback: 12th HSC Computer Science Paper Pattern Maharashtra Board

Pingback: HSC Electronics Reduced Syllabus 2020 class 11th 12th | Techniyojan

Sir please upload more clear pictures please

Pingback: 12th HSC Computer Science unit wise mark distribution | Techniyojan

Pingback: HSC 2020 Physics Board Question Paper | Techniyojan

Pingback: Question Bank Solutions Computer science Hsc Maharashtra Board class 12

Pingback: HSC Computer Science(CS) Reduced Syllabus 2020 class 11th 12th | Techniyojan

Leave a Comment Cancel Reply

Your email address will not be published. Required fields are marked *

Save my name, email, and website in this browser for the next time I comment.

Maharashtra HSC Board Computer Science Previous Year Question Paper

Maharashtra HSC Board Computer Science Previous Year Question Papers are a valuable resource for students who are preparing for the HSC exams. These papers provide a great opportunity for students to familiarize themselves with the format and style of questions that are likely to be asked in the actual exams.

The Maharashtra HSC Board Computer Science Previous Year Question Papers can be easily accessed online and are available in PDF format. These papers are typically organized by year and are available for download.

When using the Maharashtra HSC Board Computer Science Previous Year Question Papers, it is important for students to practice under exam-like conditions. This means setting aside a dedicated time to complete the papers and making sure to follow the time constraints that are specified in the papers.

By completing the Maharashtra HSC Board Computer Science Previous Year Question Papers, students can gain a better understanding of the topics that are covered in the exams and can identify areas where they may need to focus their studying. Additionally, practicing with these papers can help students develop their problem-solving skills and improve their time management abilities.

In conclusion, the Maharashtra HSC Board Computer Science Previous Year Question Papers are a valuable tool for students who are preparing for the HSC exams. These papers provide an opportunity for students to familiarize themselves with the format and style of questions that are likely to be asked in the exams and can help them improve their problem-solving skills and time management abilities.

Also Read: CBSE Class 12 Previous Year Question Papers [Download PDF]

Simply Coding

Sample Papers

computer science question paper 2020 state board

ISC Class 12 Computer Science previous year paper (2020)

  • Categories Sample Papers

PART I (20 Marks) Answer all questions

Question 1 [1 mark each].

(a) State the properties of zero in Boolean algebra.  (b) Find the complement of the following Boolean expression using De Morgan’s law:              F(P,Q,R) = P + (Q′ • R) (c) Find the dual of: (A′ + 0) • (B′ + 1) = A′  (d) State whether the following proposition is a tautology, contradiction or a contingency:               F = (P => Q) V (Q => ~P) (e) Study the diagram given below and answer the questions that follow: 

diagram 1

     (i) Name the basic gate which is represented by the diagram.      (ii) What will be the value of X when A=1 and B=0 ?

Question 2 [2 marks each]

(a) State the difference between a Binary Tree structure and a single Linked List.  (b) A matrix B[10][20] is stored in the memory with each element requiring 2 bytes of storage. If the base address at B[2][1] is 2140, find the address of B[5][4] when the matrix is stored in Column Major Wise. (c) Convert the following infix notation to prefix form:             (X + Y) / (Z * W / V) (d) State the best case and the worst case complexity for bubble sort algorithm.  (e) What is the significance of the keyword ‘new’ in Java? Mention the areas where it is used. Ans. (a) Binary Tree: A data structure in which each node has at most two sub nodes/children (left & right) Linked list: A linear collection of data elements whose order is not given by their physical placement in memory. Instead, each element points to the next. It is a data structure consisting of a collection of nodes which together represent a sequence. (b) Column Major Wise: B[i][j] = BA + W [ (j – lc)* row + (i – lr]       Putting the values: = 2140 + 2[ (4-1) * 10 + (5-2)]                                          = 2140 + 2[ 33 ]                                          = 2140 + 66                                          = 2206 (c) Infix to Prefix : (X + Y) / (Z * W / V)                    = +XY / ( * Z W / V )                    = +XY / /*ZWV                    = /+XY/*ZWV                    = /+XY/*ZWV (d) O(n): Best case for bubble sort algorithm.       O(n2 ): Worst case for bubble sort algorithm. (e) ‘new’ is a dynamic memory allocation operator, which is used to allot memory to non-primitive data types (example: class, array etc.).            Areas of use: To declare an object, to declare an array.

Question 3 [5 marks]

The following function check( ) is a part of some class. What will the function check( ) return when the value of (i) n=25 and (ii) n=10. Show the dry run/ working.

PART – II (50 Marks)

Answer six questions in this part, choosing two questions from section a, two from section b and two from section c., section – a answer any two questions., question 4 [marks in brackets ].

(a) Given the Boolean function: F(A, B, C, D) = Ʃ (0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 13,14).

  • Reduce the above expression by using 4-variable Karnaugh map, showing the various groups (i.e. octal, quads and pairs). [4]
  • Draw the logic gate diagram for the reduced expression. Assume that the variables and their complements are available as inputs. [1]

(b) Given the Boolean function: F(A, B, C, D) = π ( 3, 4, 6, 9, 11, 12, 13, 14, 15 ).

Ans. (a)(1)

F(A, B, C, D) = Ʃ (0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 13,14) 1

There are two octets and one quads:         Octet1 (m0+m1+m2+m3+m8+m9+m10+m11) =B′         Octet2 (m0+m1+m4+m5+m8+m9+m12+m13) = C′         Quad (m8+m10+m12+m14) = AD’               Hence F (A, B, C, D) = B’ + C’ + AD’

logic gate Q4 a

There are two quads and one pair: Quad 1 : ( M4M6M12M14) = B’ + D Quad 2 : ( M9M11M13M15) = A’ + D’ Pair : ( M3M11) = B + C’ + D’ Hence F(A, B, C, D) = ( B’ + D ) • ( A’ + D’ ) • ( B + C’ + D’ )

logic gate Q4 b 1

Question 5 [marks in brackets ]

(a) Draw the logic circuit diagram for an octal to binary encoder and explain its working when a particular digit is pressed. Also, state the difference between encoders and decoders. [5] (b) Draw the circuit of a two input XOR gate with the help of NOR gates. [3] (c) Convert the following expression to its cardinal SOP form: [2]              F(P,Q,R) = P′Q′R + P′QR + PQ′R′ + PQR′

Ans. (a) Circuit diagram of a octal to binary encoder:

octal to binary encoder

Working: It converts High Level to Low Level. Example: If input is (5)8 the output will be (101)2, i.e. binary value of 5 and so on. To convert the output signal to 1, a trigger is applied to the required gate otherwise it remains 0 as default. An encoder is a combinational circuit which inputs 2n or fewer lines and outputs ‘n’ lines. It converts HLL to LLL e.g. octal, decimal and hexadecimal to binary A decoder is a combinational circuit which inputs ‘n’ lines and outputs 2n or fewer lines. It converts LLL to HLL e.g. binary to octal, decimal and hexadecimal. (b) XOR gate using only NOR gates: Expression for XOR in POS : F = (A’+B’) • (A+B)

XOR gate using only NOR 1

(c) F(P,Q,R) = P’Q’R + P’QR + PQ’R’ + PQR’                         = 001 011 100 110 F(P,Q,R) = ∑( 1,3,4,6 )

Question 6 [marks in brackets ]

(a) A company intends to develop a device to show the high-status power load for a household invertor depending on the criteria given below: [5]           • If Air conditioner and Geyser are on                                          OR           • If Air conditioner is off, but Geyser and Refrigerator are on                                          OR           • If Geyser is off, but Air conditioner and Water purifier are on                                          OR           • When all are on     The inputs are:           INPUTS                     A : Air conditioner is on                     G : Geyser is on                     R : Refrigerator is on                     W : Water purifier is on (In all the above cases 1 indicates yes and 0 indicates no.)          Output: X [1 indicates high power, 0 indicates low power for all cases]          Draw the truth table for the inputs and outputs given above and write the SOP expression for X(A,G,R,W). (b) Draw the truth table and derive an SOP expression for sum and carry for a full adder. Also, draw the logic circuit for the carry of a full adder. [3] (c) Simplify the following expression using Boolean laws: [2]               F = [ (X′ + Y) • (Y′ + Z) ]′ + (X′ + Z)

full adder 1

(c) Simplify :[(X’+Y)•(Y’+Z)]’ + (X’+Z)                   = (X’+Y)’ + (Y’+Z)’ + (X’+Z)                  = XY’ + YZ’ + X’ + Z                  = X’ + XY’ + Z + YZ’                  = (X’+X)•(X’+Y’)+(Y+Z)•(Z+Z’)                  = X’+Y’+Z +Y                  = 1 as ( Y + Y’ =1)

SECTION – B Answer any two questions.

Question 7 [ 10 marks].

Specify the class Convert giving details of the constructor( ),void accept( ), void day_to_date( ) and voiddisplay( ). Define a main( ) function to create an object and call the functions accordingly to enable the task.

Question 8 [ 10 marks]

Question 9 [ 10 marks], section – c answer any two questions., question 10 [marks in brackets ].

(b) In linear queue structure the front index is always less or equal to rear index, whereas in Circular queue the front index may be greater than rear index.

Question 11 [5 marks]

Question 12 [marks in brackets ].

(a) A linked list is formed from the objects of the class Node. The class structure of the Node is given below:

Write an Algorithm OR a Method to find the product of the integer numbers from an existing linked list.     The method declaration is as follows:          void Product_Node( Node str ) [2] (b) Answer the following questions from the diagram of a Binary Tree given below:

Binary Tree Q12 b (1)

(i) Write the post-order traversal of the left subtree of the above structure. [1] (ii) State the degree of the Nodes E and H. [1] (iii) Mention the external nodes of the right subtree. [1] Ans.  (a) ALGORITHM:                Step 1. Start                Step 2. Set temporary pointer to the first node                Step 3. Repeat steps 4 and 5 until the pointer reaches null. Display product, exit                Step 4. Accumulate the product by accessing each node                Step 5. Move pointer to the next node                Step 6. End algorithm

(b) (i) G I D H F (ii) Degree of E = 0 and Degree of H = 2 (iii) E and J

User Avatar

Previous post

ISC Class 12 Computer Science previous year paper (2017)

Getting started in software engineering, you may also like.

ISC Class 12 2017

ISC Class 12 Computer Science previous year paper (2018)

Leave a reply cancel reply.

You must be logged in to post a comment.

Login with your site account

Remember Me

Not a member yet? Register now

Register a new account

I accept the Terms of Service

Are you a member? Login now

Namma Kalvi Header Logo

11th Public Exam Question Papers with Answer Key 2020

Tamil | தமிழ் : (04 March 2020)

  • Question Paper Review : Easy | Question Paper Toughness : 3 / 10
  • 11th Tamil Public Exam 2020 Question Paper – Public Exam 2020 Original Question Paper – Preview & Download (MAT.NO. 217873 )
  • 11th Tamil Public Exam Official Answer Key 2020 – Public Exam Government Answer Keys 2020 – Preview & Download (MAT.NO. 218816 )
  • 11th Tamil Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys | Sura Publications – Preview & Download (MAT.NO. 217906 )
  • 11th Tamil Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – Preview & Download (MAT.NO. 217876 )
  • 11th Tamil Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys | Mr. Neelakandan – Preview & Download (MAT.NO. 217875 )

Urdu : (04 March 2020) اردو

  • 11th Urdu Public Exam 2020 Question Paper – Public Exam 2020 Original Question Paper – Preview & Download (MAT.NO. 217874 )

Hindi : (04 March 2020) हिंदी

  • 11th Hindi Public Exam 2020 Question Paper – Public Exam 2020 Original Question Paper – Preview & Download (MAT.NO. 218064 )

English | ஆங்கிலம் : (06 March 2020)

  • Question Paper Review : Tough | Question Paper Toughness : 8 / 10
  • 11th English Public Exam 2020 Question Paper – Public Exam 2020 Original Question Paper – Preview & Download (MAT.NO. 217903 )
  • 11th English Public Exam Official Answer Key 2020 – Public Exam Government Answer Keys 2020 – Preview & Download (MAT.NO. 218815 )
  • 11th English Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys | Way to Success – Preview & Download (MAT.NO. 217916 )
  • 11th English Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys | Penguin Publications – Preview & Download (MAT.NO. 217905 )
  • 11th English Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – Preview & Download (MAT.NO. 217911 )

Maths | கணிதம் : (11 March 2020)

  • Question Paper Review : Moderate | Question Paper Toughness : 5 / 10
  • 11th Maths Public Exam 2020 Question Paper – Public Exam 2020 Original Question Paper [Type B] – Preview & Download (MAT.NO. 217949 )
  • Tamil Medium – Preview & Download (MAT.NO. 218808 )
  • English Medium – Preview & Download (MAT.NO. 218800 )
  • 11th Maths Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – English Medium – Preview & Download (MAT.NO. 218107 )
  • 11th Maths Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys [Type B] | Mr. K. Dinesh – English Medium – Preview & Download (MAT.NO. 217953 )

Commerce | வணிகவியல் : (11 March 2020)

  • 11th Commerce Public Exam 2020 Question Paper – Public Exam 2020 Original Question Paper – Preview & Download (MAT.NO. 217948 )
  • 11th Commerce Public Exam Official Answer Key 2020 – Public Exam Government Answer Keys 2020 – English Medium – Preview & Download (MAT.NO. 218813 )
  • 11th Commerce Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – Tamil Medium – Preview & Download (MAT.NO. 218108 )
  • 11th Commerce Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys | Mr. M. MuthuSelvam – Tamil Medium – Preview & Download (MAT.NO. 217951 )
  • 11th Commerce Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – English Medium – Preview & Download (MAT.NO. 218109 )
  • 11th Commerce Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys | Mr. K. D’Souza – English Medium – Preview & Download (MAT.NO. 217952 )

Zoology (Pure Science) | விலங்கியல் : (11 March 2020)

  • 11th Zoology Public Exam 2020 Question Paper – Public Exam 2020 Original Question Paper [Type A] – Preview & Download (MAT.NO. 217950 )
  • 11th Zoology Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – Tamil Medium – Preview & Download (MAT.NO. 218047 )
  • 11th Zoology Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys |   Mr. A. Bharathiraja  – English Medium – Preview & Download (MAT.NO. 218160 )
  • 11th Zoology Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | MedScore Academy – English Medium – Preview & Download (MAT.NO. 217976 )
  • 11th Zoology Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – English Medium – Preview & Download (MAT.NO. 218048 )

Computer Science | கணினி அறிவியல் : (13 March 2020)

  • 11th Computer Science Public Exam 2020 Question Paper – Public Exam 2020 Original Question Paper – Preview & Download (MAT.NO. 217978 )
  • 11th Computer Science Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys |   Mr. T. Thirumalai  – English Medium – Preview & Download (MAT.NO. 217993 )
  • 11th Computer Science Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – English Medium – Preview & Download (MAT.NO. 218003 )
  • 11th Computer Science Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys |   Mr. T. Parkunan  – English Medium – Preview & Download (MAT.NO. 218020 )
  • 11th Computer Science Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys | Mr. P. Sivakumar – English Medium – Preview & Download (MAT.NO. 217989 )

Computer Applications | கணினி பயன்பாடுகள் : (13 March 2020)

  • 11th Computer Applications Public Exam 2020 Question Paper – Public Exam 2020 Original Question Paper – Preview & Download (MAT.NO. 217977 )
  • 11th Computer Applications Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – Tamil Medium – Preview & Download (MAT.NO. 218002 )
  • 11th Computer Applications Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – English Medium – Preview & Download (MAT.NO. 218004 )
  • 11th Computer Applications Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys | Mr. P. Sivakumar – English Medium – Preview & Download (MAT.NO. 217990 )

Computer Technology | கணினி தொழில்நுட்பம் : (18 March 2020)

  • 11th Computer Technology Public Exam 2020 Question Paper – Public Exam 2020 Original Question Paper – Preview & Download (MAT.NO. 218817 )
  • Tamil Medium – Preview & Download (MAT.NO. 218812 )
  • English Medium – Preview & Download (MAT.NO. 218811 )

Physics | இயற்பியல் : (18 March 2020)

  • 11th Physics Public Exam 2020 Question Paper – Public Exam 2020 Original Question Paper [Type A] – Preview & Download (MAT.NO. 218041 )
  • Tamil Medium – Preview & Download (MAT.NO. 218809 )
  • English Medium – Preview & Download (MAT.NO. 218798 )
  • 11th Physics Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – Tamil Medium – Preview & Download (MAT.NO. 218061 )
  • 11th Physics Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – English Medium – Preview & Download (MAT.NO. 218062 )

Economics | பொருளியல் : (18 March 2020)

  • Question Paper Review : Moderate | Question Paper Toughness : 6 / 10
  • 11th Economics Public Exam 2020 Question Paper – Public Exam 2020 Original Question Paper – Preview & Download (MAT.NO. 218042 )
  • 11th Economics Public Exam Official Answer Key 2020 – Public Exam Government Answer Keys 2020 – Tamil Medium – Preview & Download (MAT.NO. 218801 )
  • 11th Economics Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – English Medium – Preview & Download (MAT.NO. 218060 )

Biology | உயிரியல் : (23 March 2020)

  • 11th Biology Public Exam 2020 Question Paper – Public Exam 2020 Original Question Paper [Type B] – Preview & Download (MAT.NO. 218087 )
  • 11th Biology Public Exam Official Answer Key 2020 – Public Exam Government Answer Keys 2020 – Tamil Medium – Preview & Download (MAT.NO. 218814 )
  • 11th Biology Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – Tamil Medium – Preview & Download (MAT.NO. 218097 )
  • 11th Biology Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | MedScore Academy – English Medium – Preview & Download (MAT.NO. 218106 )
  • 11th Biology Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – English Medium – Preview & Download (MAT.NO. 221545 )
  • 11th Biology Public Exam 2020 Answer Key – Public Exam 1 Mark Answer Keys [Type B] | TNTET Arts – Preview & Download (MAT.NO. 218089 )

Botany (Pure Science) | தாவரவியல் : (23 March 2020)

  • 11th Botany Public Exam 2020 Question Paper – Public Exam 2020 Original Question Paper [Type B] – Preview & Download (MAT.NO. 218088 )
  • 11th Botany Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – English Medium – Preview & Download (MAT.NO. 218099 )

Business Mathematics | வணிகக் கணிதம் : (23 March 2020)

  • 11th Business Maths Public Exam 2020 Question Paper – Public Exam 2020 Original Question Paper – Preview & Download (MAT.NO. 218096 )
  • 11th Business Maths Public Exam Official Answer Key 2020 – Public Exam Government Answer Keys 2020 – Tamil Medium – Preview & Download (MAT.NO. 218810 )
  • 11th Business Maths Public Exam 2020 Answer Key – Public Exam 2020 Answer Keys with Question Analysis | SVB School – English Medium – Preview & Download (MAT.NO. 218100 )
  • 11th Business Maths Public Exam 2020 Answer Key – Public Exam 1 Mark Answer Keys | Kugan Mathematics – Preview & Download (MAT.NO. 218095 )

History | வரலாறு : (23 March 2020)

  • 11th History Public Exam 2020 Question Paper – Public Exam 2020 Original Question Paper – Preview & Download (MAT.NO. 218091 )
  • 11th History Public Exam Official Answer Key 2020 – Public Exam Government Answer Keys 2020 – Tamil Medium – Preview & Download (MAT.NO. 218799 )
  • 11th History Public Exam 2020 Answer Key – Public Exam 1 Mark Answer Keys | TNTET Arts – Preview & Download (MAT.NO. 218090 )

There was a problem reporting this post.

Block Member?

Please confirm you want to block this member.

You will no longer be able to:

  • See blocked member's posts
  • Mention this member in posts
  • Invite this member to groups
  • Message this member

Please allow a few minutes for this process to complete.

Talk to our experts

1800-120-456-456

  • CBSE Class 12 Computer Science Question Paper 2020
  • Previous Year Question Paper

ffImage

Computer Science Question Paper for CBSE Class 12 - 2020

We provide CBSE Class 12 Computer Science question paper 2020 PDF at Vedantu to help you prepare for the upcoming 12 Board exam. Understanding the test pattern given by CBSE this year can be learned by reviewing the 2020 question paper. As a result, you'll have more confidence during exams. The Class 12 Board Exam is one of the most important exams a student will ever take. It is the most difficult exam at the secondary school level. Not only is it necessary to do well on the CBSE Class 12 Computer Science Board test, but it is also important to have a bright future.

Get Free CBSE MCQ Mock Rest 2021 at Vedantu

You may obtain the Free CBSE Revised MCQ Mock Test 2021 for all topics at Vedantu.  Vedantu's MCQ Test is based on the new CBSE Class Books, paper patterns, and syllabus for the year 2021. This mock test series includes a large number of important questions and answers. Candidates for the CBSE Board can use these free mock tests to prepare for their board examinations and identify areas where they need to improve.

arrow-right

FAQs on CBSE Class 12 Computer Science Question Paper 2020

1. What are the benefits of tackling the previous year's 2020 Computer Science question papers?

It is possible to prepare effectively for Class 12 Computer Science by solving previous year question papers. It assists students in becoming familiar with the paper design while also boosting their confidence. Vedantu uses this incentive to deliver solved Class 12 Computer Science previous year papers from the previous seven academic years. Solving previous year's Computer Science question papers allows students to judge their level of preparation for the exam. Previous year papers contain all of the questions that were asked in the previous year's exam, and students should practise them in order to get a good concept of the exam format.

2. What other study materials are available for CBSE Class 12 Computer Science besides question papers?

Students may access the detailed syllabus, sample papers, NCERT Solutions, Important Questions, chapter-wise NCERT Solutions, and revision notes on Vedantu in addition to solved question papers for Class 12 Computer Science. These study tools are incredibly useful for exam preparation and contain thorough subject knowledge. All of these materials are available for free download on Vedantu's website, allowing students to easily access them and prepare for the exam.

3. What are the possibilities that questions in the CBSE Class 12 Computer Science Board exam will be repeated?

There is a good likelihood that questions from the previous year's CBSE Class 12 Computer Science examinations will be repeated. As a result, it is recommended that students practise as many prior-year papers as possible in order to do well in exams. Similar types of questions appear frequently in the CBSE Class 12 Computer Science test. Solving previous year's question papers might help you comprehend the format of the exam and the types of questions you'll be asked. Practising prior-year papers has several advantages: it familiarises pupils with the paper's difficulty level and provides them with a sense of readiness.

4. Which website has answered CBSE Computer Science question papers for Class 12?

Many ed-tech solutions are recognised to supply CBSE Class 12 Computer Science answered previous year exam papers. Vedantu is an example of a portal that many students utilise to access previous year question papers. Subject area specialists with years of teaching expertise handle these problems. Exam guidelines and the CBSE curriculum are familiar to them. On Vedantu, students can get a free PDF of past year exam questions for Class 12 CBSE Computer Science (2014-20). They can refer to the solutions if they have any questions about how to solve the paper.

5. Is it necessary to study CBSE Sample Papers for Class 12? Is it true that CBSE/NCERT offers Class 12 Sample Papers on their official website?

Yes, sample papers are quite significant, and students must complete them in order to gain a thorough understanding of the nature of the exam, the paper format, and the marking scheme, among other things. Yes, the CBSE/NCERT publishes example practice papers for Class 10 and 12 along with the marking scheme on their official website every year.

Self Studies

  • Andhra Pradesh
  • Chhattisgarh
  • West Bengal
  • Madhya Pradesh
  • Maharashtra
  • Jammu & Kashmir
  • NCERT Books 2022-23
  • NCERT Solutions
  • NCERT Notes
  • NCERT Exemplar Books
  • NCERT Exemplar Solution
  • States UT Book
  • School Kits & Lab Manual
  • NCERT Books 2021-22
  • NCERT Books 2020-21
  • NCERT Book 2019-2020
  • NCERT Book 2015-2016
  • RD Sharma Solution
  • TS Grewal Solution
  • TR Jain Solution
  • Selina Solution
  • Frank Solution
  • ML Aggarwal Solution
  • Lakhmir Singh and Manjit Kaur Solution
  • I.E.Irodov solutions
  • ICSE - Goyal Brothers Park
  • ICSE - Dorothy M. Noronhe
  • Sandeep Garg Textbook Solution
  • Micheal Vaz Solution
  • S.S. Krotov Solution
  • Evergreen Science
  • KC Sinha Solution
  • ICSE - ISC Jayanti Sengupta, Oxford
  • ICSE Focus on History
  • ICSE GeoGraphy Voyage
  • ICSE Hindi Solution
  • ICSE Treasure Trove Solution
  • Thomas & Finney Solution
  • SL Loney Solution
  • SB Mathur Solution
  • P Bahadur Solution
  • Narendra Awasthi Solution
  • MS Chauhan Solution
  • LA Sena Solution
  • Integral Calculus Amit Agarwal Solution
  • IA Maron Solution
  • Hall & Knight Solution
  • Errorless Solution
  • Pradeep's KL Gogia Solution
  • OP Tandon Solutions
  • Sample Papers
  • Previous Year Question Paper
  • Value Based Questions
  • CBSE Syllabus
  • CBSE MCQs PDF
  • Assertion & Reason
  • New Revision Notes
  • Revision Notes
  • HOTS Question
  • Marks Wise Question
  • Toppers Answer Sheets
  • Exam Paper Aalysis
  • Concept Map
  • CBSE Text Book
  • Additional Practice Questions
  • Vocational Book
  • CBSE - Concept
  • KVS NCERT CBSE Worksheets
  • Formula Class Wise
  • Formula Chapter Wise
  • JEE Crash Course
  • JEE Previous Year Paper
  • Important Info
  • JEE Mock Test
  • JEE Sample Papers
  • SRM-JEEE Mock Test
  • VITEEE Mock Test
  • BITSAT Mock Test
  • Manipal Engineering Mock Test
  • AP EAMCET Previous Year Paper
  • COMEDK Previous Year Paper
  • GUJCET Previous Year Paper
  • KCET Previous Year Paper
  • KEAM Previous Year Paper
  • Manipal Previous Year Paper
  • MHT CET Previous Year Paper
  • WBJEE Previous Year Paper
  • AMU Previous Year Paper
  • TS EAMCET Previous Year Paper
  • SRM-JEEE Previous Year Paper
  • VITEEE Previous Year Paper
  • BITSAT Previous Year Paper
  • UPSEE Previous Year Paper
  • CGPET Previous Year Paper
  • CUSAT Previous Year Paper
  • AEEE Previous Year Paper
  • Crash Course
  • Previous Year Paper
  • NCERT Based Short Notes
  • NCERT Based Tests
  • NEET Sample Paper
  • Previous Year Papers
  • Quantitative Aptitude
  • Numerical Aptitude Data Interpretation
  • General Knowledge
  • Mathematics
  • Agriculture
  • Accountancy
  • Business Studies
  • Political science
  • Enviromental Studies
  • Mass Media Communication
  • Teaching Aptitude
  • NAVODAYA VIDYALAYA
  • SAINIK SCHOOL (AISSEE)
  • Mechanical Engineering
  • Electrical Engineering
  • Electronics & Communication Engineering
  • Civil Engineering
  • Computer Science Engineering
  • CBSE Board News
  • Scholarship Olympiad
  • School Admissions
  • Entrance Exams
  • All Board Updates
  • Miscellaneous
  • State Wise Books
  • Engineering Exam

Computer Science Model Question Paper Class 12 Karnataka Board (PDF Download)

The Computer Science Model Question Paper Class 12 Karnataka Board is a tool that helps 2nd PUC students to understand the latest exam pattern for Computer Science. With the help of Karnataka Class 12 Computer Science Model Question Paper students can collect several pieces of information that will help them later in the examination hall.

Keeping in mind the importance of Model Question papers here, we have provided the Computer Science Model Question Paper Class 12 Karnataka Board for free of cost. With the help of it, a Karnataka state board class 12 student can get many benefits such as an idea of Computer Science question paper and its difficulty, as well as a complete knowledge of Computer Science Exam Pattern.

Karnataka Class 12 Computer Science Model Question Paper Without Solutions

The Karnataka Class 12 Computer Science Model Question Paper that we are providing here is without solutions. The Karnataka board officials designed and prepared the 2nd PUC question papers so that appearing students can practise several questions before appearing in the board examination.

The Computer Science Model Question Papers without solutions help students do a self-analysis and prepare for the exam after finding the weak areas in the subject.

How to download Computer Science Model Question Paper Class 12 Karnataka Board?

Those who want to test themselves for the Computer Science paper can go through the Computer Science Model Question Paper Class 12 Karnataka Board as it will help them prepare for the exam and score maximum marks. The stepwise methods to download Computer Science Model Question Paper Class 12 Karnataka Board is mentioned below.

  • On your device (Mobile/Laptop), open Selfstudys.com
  • Go to the Navigation Button (Three horizontal lines) and tap on that.

Computer Science Model Question Paper Class 12 Karnataka Board, Class 12 Computer Science Model Question Paper Karnataka Board, Karnataka Board Computer Science Model Question Paper Class 12, Karnataka Board Class 12 Computer Science Model Question Paper, Karnataka Class 12 Computer Science Model Question Paper Without Solutions, How to download Computer Science Model Question Paper Class 12 Karnataka Board

  • It will expand where you need to tap on State Books and then Karnataka.

Computer Science Model Question Paper Class 12 Karnataka Board, Class 12 Computer Science Model Question Paper Karnataka Board, Karnataka Board Computer Science Model Question Paper Class 12, Karnataka Board Class 12 Computer Science Model Question Paper, Karnataka Class 12 Computer Science Model Question Paper Without Solutions, How to download Computer Science Model Question Paper Class 12 Karnataka Board

  • A new page will open, where you can choose class 12th to access the Karnataka Board Class 12th Model Paper.

Computer Science Model Question Paper Class 12 Karnataka Board, Class 12 Computer Science Model Question Paper Karnataka Board, Karnataka Board Computer Science Model Question Paper Class 12, Karnataka Board Class 12 Computer Science Model Question Paper, Karnataka Class 12 Computer Science Model Question Paper Without Solutions, How to download Computer Science Model Question Paper Class 12 Karnataka Board

  • Once, you found that tap on that, and it will let you download the PDF of Computer Science Model Question Paper Class 12 Karnataka Board.

The Impact of Computer Science Model Question Paper Class 12 Karnataka Board

The Computer Science model question paper Class 12 Karnataka Board impacts the board exam preparation of a student in various ways. A list of how the Karnataka 2nd PUC Computer Science model question papers affects students' preparation are mentioned below.

  • A Boost in Confidence: In the initial stage of exam preparation of Computer Science, students go through various sets of study resources such as revision notes, NCERT Class 12 Computer Science Solutions, reference textbooks, Karnataka Class 12 Previous Year Question Papers and many other study resources. However, students don’t feel much confidence till they solve Computer Science Model Question Paper of Karnataka Board 2nd PUC. It is so, because the model question papers are prepared based on the latest exam pattern and syllabus.
  • Deeper Understanding of Computer Science Question Paper Design: A better understanding of Computer Science Question Paper design helps students understand how they should make their own approaches to answer the questions asked in Karnataka Class 12 Computer Science Board examination. Thus, those students who solve and prepare for the annual exam using the Computer Science model question paper class 12 Karnataka Board get an idea of paper design and ability to perform better in the examination hall.
  • Gives an Idea of Important Topics: Since Computer Science Question Papers are prepared and released by Karnataka Board Exam authorities, solving the Class 12 Computer Science Model Question Papers helps students know about the important topics which have higher chances to be asked in the upcoming board examination. Although it is not 100% accurate, it helps the majority of time.

Tips for Writing Effective Answers of Computer Science Model Question Paper Class 12 Karnataka Board

Those who are wishing to write an accurate and most precise answers of questions that are asked in Computer Science Model Question Paper Class 12 Karnataka Board can take a look at the below-given tips:

  • Complete Syllabus: It is crucial for all the Karnataka Board Class 12 students to hold a strong command on the topics that are explained in the 2nd PUC Computer Science Textbooks. Having a good conceptual Understanding in Computer Science helps students to answer the majority of questions in one go.
  • Solve the questions from reference textbooks, if possible: Apart from prescribed Computer Science textbooks, it will be beneficial to try some Computer Science questions from reference textbooks. It is because the questions in reference Computer Science textbooks are prepared referring to the same syllabus. And solving Computer Science Questions from reference textbooks helps practise various questions which eventually assists students answering the questions with ease.
  • Revise the Computer Science Topics before solving the Class 12 Computer Science Model Question Papers Karnataka State Board: Revising the topics of Computer Science before solving the Class 12 Computer Science Model Question Papers create a sense of confidence in answering all the questions regardless of its difficulty. As well as it refreshes the overall conceptual understanding of Computer Science topics which help in answering the questions with ease.

Why is 2nd PUC Computer Science Model Question Paper of Karnataka Board Important?

There are a variety of reasons why 2nd PUC Computer Science Model Question Paper of Karnataka Board Important, list of a few reasons are mentioned below.

  • To Solve Board-Level Questions Before Board Exam: Those who are curious to know about the actual question papers of Karnataka Class 12 Computer Science before appearing in the board examination can use the Computer Science Model Question Paper Class 12 Karnataka Board. It is prepared based on the latest exam pattern by subject experts of Karnataka Board which help students to solve board-level questions before appearing in the board examination.
  • To Understand the Marking Scheme of 2nd PUC Computer Science Question Paper : Number of questions, their marking scheme as well as the topics which has higher weightage in the examination can be understood by referring to the Computer Science Model Question Paper Class 12 Karnataka Board and that is why it is important to use during the board exam preparation.
  • For Self-assessment: The Computer Science Model Question Paper Class 12 Karnataka Board is an ideal study resource for doing self-assessment because it contains the questions from the entire chapters of Computer Science. Solving Karnataka Class 12 Computer Science Model Question Papers earlier will help students to identify the weak areas in the subject where they need to pay more attention. Doing this also helps knowing the strongest areas in Computer Science which eventually allow students to be confident.

What Are the Benefits of Computer Science Model Question Paper Class 12 Karnataka Board?

Karnataka 2nd PUC Computer Science model question paper is one of the great study tools that not only help students to prepare for the exam but assists the students to level up their knowledge in Computer Science topics. Here are a few Benefits of Computer Science Model Question Paper Class 12 Karnataka Board.

  • A thorough revision of 2nd PUC Computer Science: Solving the Karnataka Class 12 Computer Science Model Question Paper is a great way to revise the topics of Computer Science because questions that are asked in the Model Question papers are prepared referring to the prescribed Karnataka 2nd PUC Syllabus . Although, students can use their revision notes to revise the studied topics of Computer Science. But Computer Science Model Question Paper Class 12 Karnataka Board provides much more benefits than revision notes. It is so because the Model question papers of Class 12 Karnataka Computer Science contains questions which help students to solve a variety of questions prepared referring to the whole syllabus of Computer Science.
  • Confidence to answer board level Computer Science Question Papers: Since, the Computer Science question papers of class 12 Karnataka board are prepared by subject experts of Karnataka Board, the questions are of high level or board exam level. Also, the aim of releasing the model question papers is to help students be ready for the board level questions which are easy to hard. Thus, those students who solve the Computer Science Model Question Paper Class 12 Karnataka Board gain confidence and are habituated to answer the board level Computer Science question papers.
  • Ability to deal with nervousness and exam fear: Solving the model question papers of Karnataka Class 12 Computer Science give students the ability to deal with exam fear and nervousness. This ability helps students solve the Computer Science questions with a calm mind which assists them to score higher marks in the board examination.

LPU University Admissions 2023 upto 100% Scholarship (All Pages)

  • NCERT Solutions for Class 12 Maths
  • NCERT Solutions for Class 10 Maths
  • CBSE Syllabus 2023-24
  • Social Media Channels
  • Login Customize Your Notification Preferences

computer science question paper 2020 state board

One Last Step...

computer science question paper 2020 state board

  • Second click on the toggle icon

computer science question paper 2020 state board

Provide prime members with unlimited access to all study materials in PDF format.

Allow prime members to attempt MCQ tests multiple times to enhance their learning and understanding.

Provide prime users with access to exclusive PDF study materials that are not available to regular users.

computer science question paper 2020 state board

IMAGES

  1. WB SET 2020 Question Paper 2 Computer Science and Applications

    computer science question paper 2020 state board

  2. Karnataka 2nd PUC Computer Science Model Question Paper 2023 (PDF)

    computer science question paper 2020 state board

  3. Computer Science Paper 2 CSS 2020 Past Paper

    computer science question paper 2020 state board

  4. Cbse Class 12 Computer Science Question Paper 2019 With Solutions / 2nd

    computer science question paper 2020 state board

  5. Maharashtra SSC Board Science 1 and 2 question paper 2023, 2022, 2020

    computer science question paper 2020 state board

  6. " COMPUTER SCIENCE " JAC Board Question Paper 2020 || Class 12th

    computer science question paper 2020 state board

VIDEO

  1. 12th Computer Science question paper 2024 JKBOSE

  2. Class 10 Computer Science Half Yearly 2023 Question Paper

  3. Pre Board Computer Science Practical Examination 2023 Solved Paper

  4. Computer Science 1 Board Exam Question Paper| HSC Board Exam 2024 #science #hsc #cs #viral #shorts

  5. Fundation Of Computer Science |Question Paper 2024 Sem-01

  6. Computer Science 1 Board Exam Answer Key

COMMENTS

  1. HSC Science (Computer Science) 12th Standard Board Exam

    Each of the HSC Science (Computer Science) question papers and answers is designed to offer you all the help you need. They focus mostly on showing off the results; you can also get some guidance on how everything can be done. You can prepare yourself with the solved previous years' Maharashtra State Board Examination question papers.

  2. HSC Maharashtra Board Computer Science Question Paper 2020 class 12

    Maharashtra State Board Exam Question Papers for Computer Science Paper 1 and Computer Science paper 2 conducted in feb 2020 HSC Board. ... HSC Maharashtra Board Computer Science Question Paper 2020 class 12. Computer Science Paper 2 class 12 hsc board 2020. for above solution of Mcqs watch this video.

  3. Maharashtra HSC Previous Year Paper with Solutions PDF

    Here at Selfstudys, The Maharashtra Board Previous Year Paper Class 12 PDFs with solutions of different subjects such as English, Physics, Chemistry, Biology, Geography, History, Computer Science, Political Science, Secretarial Practice, Economics, and Psychology for students of different streams. Although According to teh Maharasratsra Board ...

  4. AP Computer Science A Past Exam Questions

    If you are using assistive technology and need help accessing these PDFs in another format, contact Services for Students with Disabilities at 212-713-8333 or by email at [email protected]. The 2020 free-response questions are available in the AP Classroom question bank. Download free-response questions from past AP Computer Science A ...

  5. 12th Computer Science Question Paper 2020 State Board Tamil Nadu

    The 12th Computer Science question paper 2020 Tamil Nadu is a set of questions asked in a specific year. These +2 Computer Science questions are arranged according to the Samacheer Kalvi syllabus of the Directorate of Government Examination, Tamil Nadu (DGE TN).By solving class 12 Computer Science 2020 questions, you can easily determine the grades- A1, A2, B1, B2, C1, C2 and D.

  6. 11th Computer Science Question Paper 2020 State Board ...

    The frequency of the Class 11 Computer Science exam is once a year so before that you need to solve Tamil Nadu state board 11th Computer Science Question Papers 2020. Different time frames are given for different Questions in the Class 11 Computer Science 2020 Question Paper: VSA- 2 mins, SA-6 mins, LA-16 mins. Particulars.

  7. Tamil Nadu 12th Computer Science Model Question Papers 2020-2021

    Subject Matter Experts at SamacheerKalvi.Guide have created Samacheer Kalvi Tamil Nadu State Board Syllabus New Paper Pattern 12th Computer Science Model Question Papers 2020-2021 with Answers Pdf Free Download in English Medium and Tamil Medium of TN 12th Standard Computer Science Public Exam Question Papers Answer Key, New Paper Pattern of HSC 12th Class Computer Science Previous Year ...

  8. HSC Computer Science Question Paper I and II 2020 of class 12 ...

    HSC Computer Science Question Paper I and II 2020 of class 12 Maharashtra Board Computer Science Question Paper 2020 HSC Maharashtra Board ExamFor Computer ... CBSE Exam, class 12.

  9. Maharashtra HSC Board Computer Science Previous Year Question Paper

    1. Save. Download Post as PDF. Maharashtra HSC Board Computer Science Previous Year Question Papers are a valuable resource for students who are preparing for the HSC exams. These papers provide a great opportunity for students to familiarize themselves with the format and style of questions that are likely to be asked in the actual exams. Sr.

  10. PDF Class: XII Session: 2020-21 Computer Science (083) Sample Question

    4. Part - B is Descriptive Paper. 5. Part- B has three sections a. Section-I is short answer questions of 2 marks each in which two question have internal options. b. Section-II is long answer questions of 3 marks each in which two questions have internal options. c. Section-III is very long answer questions of 5 marks each in which one ...

  11. ISC Class 12 Computer Science previous year paper (2020)

    Answer all questions Question 1 [1 mark each] (a) State the properties of zero in Boolean algebra. ... If day number is 64 and the year is 2020, then the corresponding date would be: March 4, 2020 i.e. (31 + 29 + 4 = 64) ... ISC Class 12 Computer Science previous year paper (2017) August 28, 2021. Next post. Getting Started in Software Engineering.

  12. Tamil Nadu 12th Computer Science Model Question Papers 2019-2020

    Here we have given the Government of Tamil Nadu State Board 12th Computer Science Model Question Papers Tamil Medium with Answers 2019-20 Pdf. Students can view or download the Class 12th Computer Science New Model Question Papers 2020 Tamil Nadu English Medium Pdf for their upcoming Tamil Nadu HSC Board Exams.

  13. Question Papers

    1) For site security purposes and to ensure that this service remains available to all users, this Government computer system employs commercial software programs to monitor network traffic to identify unauthorized attempts to upload or change information, or otherwise cause damage.

  14. 12th Public Exam Question Papers with Answer Key 2020

    12th Accountancy Public Exam 2020 Answer Key - Public Exam 2020 Answer Keys Mr. E. A. Muhammed Javith - English Medium - Preview & Download (MAT.NO. 218138) 12th Accountancy Public Exam 2020 Answer Key - Public Exam 1 Mark Answer Keys Kalvi Imayam - Preview & Download (MAT.NO. 218105) Tamil | தமிழ் : (02 March 2020) Question ...

  15. Previous Year Question Paper for Maharashtra State Board 12th Standard

    H.S.C Computer Science question paper PDF download with the answer available on this page. Students can get solutions for the 12th Standard Board Exam Computer Science question paper. Previous Year's Computer Science 12th Standard Board Exam Question Papers for Maharashtra State Board are solved by experts.

  16. PDF AP Computer Science A 2020 Exam

    2020 Exam Sample Question 1. (Adapted from: AP® Computer Science A Course and Exam Description) Directions: SHOW ALL YOUR WORK. REMEMBER THAT PROGRAM SEGMENTS ARE TO BE WRITTEN IN JAVA. Notes: • Assume that the classes listed in the Java Quick Reference have been imported where appropriate. • Unless otherwise noted in the question, assume ...

  17. PDF Class: XII Session: 2022-23 Computer Science (083) Sample Question

    Computer Science (083) Sample Question Paper (Theory) Maximum Marks: 70 Time Allowed: 3 hours General Instructions: 1. This question paper contains five sections, Section A to E. 2. All questions are compulsory. 3. Section A have 18 questions carrying 01 mark each. 4. Section B has 07 Very Short Answer type questions carrying 02 marks each. 5.

  18. 11th Public Exam Question Papers with Answer Key 2020

    11th Maths Public Exam 2020 Question Paper - Public Exam 2020 Original Question Paper [Type B] - Preview & Download (MAT.NO. 217949) 11th Maths Public Exam Official Answer Key 2020 - Public Exam Government Answer Keys 2020. Tamil Medium - Preview & Download (MAT.NO. 218808)

  19. 12th Standard Board Exam Maharashtra State Board HSC Science (Computer

    Maharashtra State Board 12th Standard Board Exam HSC Science (Computer Science) has the above-listed subjects. you can select any subject to view Solved Question papers, Textbook Solutions, Important Solutions, Syllabus and Explanations in each subject. List of subjects for HSC Science (Computer Science) 12th Standard Board Exam Maharashtra ...

  20. Model Question Paper for 12th Computer 2020 Maharashtra Board

    Types of Questions: Model question paper includes all types of questions : multiple choice questions, short type questions, long type questions etc. Duration: Time limit given for model question paper for 12th Computer 2020 Maharashtra board in PDF is about 3 hours. Students need to complete the question in the given time limit.

  21. CBSE Class 12 Computer Science Question Paper 2020

    We provide CBSE Class 12 Computer Science question paper 2020 PDF at Vedantu to help you prepare for the upcoming 12 Board exam. Understanding the test pattern given by CBSE this year can be learned by reviewing the 2020 question paper. As a result, you'll have more confidence during exams. The Class 12 Board Exam is one of the most important ...

  22. Computer Science 2020 Model Question Paper Class 12 Karnataka Board

    The stepwise methods to download Computer Science 2020 Model Question Paper Class 12 Karnataka Board is mentioned below. On your device (Mobile/Laptop), open Selfstudys.com. Go to the Navigation Button (Three horizontal lines) and tap on that. It will expand where you need to tap on State Books and then Karnataka.

  23. 2024 AP Exam Dates

    AP coordinators are responsible for notifying students when and where to report for the exams. Early testing or testing at times other than those published by College Board is not permitted under any circumstances. Late-testing dates are available if students cannot test during the first two full weeks of May. See the late-testing schedule.

  24. Computer Science Model Question Paper Class 12 Karnataka Board (PDF

    The stepwise methods to download Computer Science Model Question Paper Class 12 Karnataka Board is mentioned below. On your device (Mobile/Laptop), open Selfstudys.com. Go to the Navigation Button (Three horizontal lines) and tap on that. It will expand where you need to tap on State Books and then Karnataka.