{"id":25914,"date":"2019-04-23T11:32:49","date_gmt":"2019-04-23T06:02:49","guid":{"rendered":"http:\/\/mycbseguide.com\/blog\/?p=25914"},"modified":"2019-04-23T11:41:34","modified_gmt":"2019-04-23T06:11:34","slug":"cbse-syllabus-for-class-12-old-computer-science-2019-20","status":"publish","type":"post","link":"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/","title":{"rendered":"CBSE Syllabus for Class 12 Old Computer science 2019-20"},"content":{"rendered":"<p><strong>CBSE Syllabus for Class 12 Old Computer science 2019-20<\/strong> contains all the topics of this session. myCBSEguide provides you latest Syllabus for Class 12. Computer science is the study of processes that interact with data and that can be represented as data in the form of programs. Student can Download Latest CBSE Syllabus for class 12 in PDF format is now available in <strong><a href=\"https:\/\/play.google.com\/store\/apps\/details?id=in.techchefs.MyCBSEGuide&amp;referrer=utm_source%3Dmycbse_bottom%26utm_medium%3Dtext%26utm_campaign%3Dmycbseads\">myCBSEguide mobile app.<\/a>\u00a0<\/strong>The curriculum for March 2020 exams is designed by CBSE, New Delhi as per NCERT textbooks for the session 2019-20.<\/p>\n<p style=\"text-align: center;\"><b>CBSE Syllabus for class 12\u00a0<strong>Computer science<\/strong>\u00a02019-20<\/b><\/p>\n<p style=\"text-align: center;\"><strong><a class=\"button\" href=\"https:\/\/mycbseguide.com\/downloads\/cbse-class-12-computer-science\/1851\/cbse-syllabus\/1\/\">Download as PDF<\/a><\/strong><\/p>\n<h2>CBSE Syllabus of Class 12 Old <b><strong>Computer science<\/strong><\/b>\u00a0\u2013 in PDF<\/h2>\n<p><strong>Duration: 3 hours<br \/>\nTotal Marks: 70<\/strong><\/p>\n<div>\n<table class=\"mobile\" border=\"1\" cellspacing=\"0\" cellpadding=\"3\">\n<thead>\n<tr>\n<th scope=\"col\">Unit No.<\/th>\n<th scope=\"col\">Unit Name<\/th>\n<th scope=\"col\">Marks<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>1<\/td>\n<td>OBJECT-ORIENTED PROGRAMMING IN C++<\/td>\n<td>30<\/td>\n<\/tr>\n<tr>\n<td>2<\/td>\n<td>DATA STRUCTURE<\/td>\n<td>14<\/td>\n<\/tr>\n<tr>\n<td>3<\/td>\n<td>DATABASE MANAGEMENT SYSTEM AND SQL<\/td>\n<td>8<\/td>\n<\/tr>\n<tr>\n<td>4<\/td>\n<td>BOOLEAN ALGEBRA<\/td>\n<td>8<\/td>\n<\/tr>\n<tr>\n<td>5<\/td>\n<td>COMMUNICATION TECHNOLOGIES<\/td>\n<td>10<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td>Total<\/td>\n<td>70<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p><strong>Unit 1: Object-Oriented Programming in C++ (50 Theory + 40 Practical) Periods<\/strong><br \/>\nReview: C++ covered in class XI,<br \/>\n<strong>Object-Oriented Programming:<\/strong>\u00a0Concept of Object Oriented Programming \u2013 Data hiding, Data encapsulation, Class and Object, Abstract class and Concrete class, Polymorphism (Implementation of polymorphism using Function overloading as an example in C++); Inheritance, Advantages of Object Oriented Programming over earlier programming methodologies.<br \/>\n<strong>Implementation of Object Oriented Programming concepts in C++:<\/strong>\u00a0Definition of a class, Member of a class \u2013 Data Members and Member Functions (methods), Using Private and Public visibility modes, default visibility mode (private); Member function definition: inside class definition and outside class definition using scope resolution operator (::); accessing members from object (s), Objects as function arguments\u2013pass by value and pass by reference.\u200b\u200b\u200b\u200b\u200b\u200b\u200b<br \/>\n<strong>Constructor and Destructor:<\/strong>\u00a0Constructor: special characteristics, declaration and definition of a constructor, default constructor, overloaded constructors, copy constructor, the constructor with default arguments.\u200b\u200b\u200b\u200b\u200b\u200b\u200b<br \/>\n<strong>Destructor:<\/strong>\u00a0Special Characteristics, declaration and definition of destructor;<br \/>\n<strong>Inheritance (Extending Classes):<\/strong>\u00a0Concept of Inheritances, Base Class, Derived classes, protected visibility mode; Single level inheritance, Multilevel inheritance and Multiple inheritances, Privately derived, publicly derived and Protectedly derived a class, accessibility of members from objects and within derived class (es);<br \/>\n<strong>Data File Handling:<\/strong>\u00a0Need for a data file, Types of data files \u2013 Text file and Binary file;<br \/>\n<strong>Text File:<\/strong>\u00a0Basic file operations on text file: Creating\/Writing text into file, Reading and Manipulation of text from an already existing text File (accessing sequentially).<br \/>\n<strong>Binary File:<\/strong>\u00a0Creation of file, Writing data into a file, Searching for required data from the file, Appending data to a file, Insertion of data in sorted file, Deletion of data from the file, Modification of data in a file;<br \/>\nImplementation of above-mentioned data file handling in C++;<br \/>\nComponents of C++ to be used with file handling: Header file:<br \/>\nfstream.h; ifstream, ofstream, classes;<br \/>\nOpening a text file in\u2014in, out, and app modes;<br \/>\nUsing cascading operators (&gt;&gt;,&lt;&lt;) for writing text to the file and reading text from the file; open (), get (), read (), put (), write(), getline() and close() functions;<br \/>\nDetecting end-of-file (with or without using eof() function), tellg(), tell(), seekg(), seekp();<br \/>\n<strong>Pointers:<\/strong><br \/>\n<strong>Introduction to Pointer<\/strong>, Declaration and Initialization of Pointer; Dynamic memory allocation\/deallocation operators:\u00a0<strong>new, delete;<\/strong>\u00a0Pointers and Arrays: Array of Pointers, Pointer to an array (1-dimensional array), Function returning a pointer, Reference variables and use of alias; Function call by reference. Pointer to structure: De-reference\/Deference operator: *, -&gt;; self referential structure;<\/p>\n<p><strong>Unit 2: Data Structures (42 Theory + 36 Practical) Periods<\/strong><br \/>\nIntroduction to data structure- array, stack queues primitive and non-primitive data structure, linear and non-linear structure, static and dynamic data structure.<br \/>\n<strong>Arrays:\u00a0<\/strong>One and two Dimensional arrays: Sequential allocation and address calculation;<br \/>\nOne dimensional array: Traversal, Searching (Linear, Binary Search), Insertion of an element in an array, deletion of an element from an array, Sorting (Insertion, Selection, Bubble)<br \/>\nTwo-dimensional arrays: Traversal Finding sum\/difference of two NxM arrays containing numeric values, Interchanging Row and Column elements in a two-dimensional array;<br \/>\n<strong>Stack (Array and Linked implementation of Stack):\u00a0<\/strong>Introduction to stack (LIFO: Last in First out Operations)<br \/>\nOperations on a stack (PUSH and POP) and its Implementation in C++, Converting expressions from INFIX to POSTFIX notation and evaluation of Postfix expression;<br \/>\n<strong>Queue: (Array and Linked Implementation):\u00a0<\/strong>Introduction to Queue (FIFO: First in First out operations)<br \/>\nOperations on Queue (Insert and Delete and its Implementation in C++, circular queue using array.<\/p>\n<p><strong>Unit 3: Database Management System and SQL<br \/>\n(20 Theory + 20 Practical) Periods<br \/>\nDatabase Concepts:<\/strong>\u00a0Introduction to database concepts and its need.<br \/>\n<strong>Relational data model:<\/strong>\u00a0Concept of the domain, tuple, relation, key, primary key, alternate key, candidate key;<br \/>\n<strong>Relational algebra:<\/strong>\u00a0Selection, Projection, Union and Cartesian product;<br \/>\n<strong>Structured Query<\/strong>\u00a0<strong>Language:<\/strong><br \/>\n<strong>General Concepts:<\/strong>\u00a0Advantages of using SQL, Data Definition Language and Data Manipulation Language;<br \/>\n<strong>Data Types:<\/strong>\u00a0NUMBER\/DECIMAL, CHARACTER\/VARCHAR\/VARCHAR2, DATE;<br \/>\n<strong>SQL COMMANDS:\u00a0<\/strong>CREATE TABLE, DROP TABLE, ALTER TABLE, UPDATE \u2026.SET\u2026., INSERT, DELETE; SELECT, DISTINCT, FROM, WHERE, IN, BETWEEN, GROUP BY, HAVING, ORDER BY;<br \/>\n<strong>SQL functions:<\/strong>\u00a0SUM ( ), AVG ( ), COUNT ( ), MAX ( ) AND MIN ( ); Obtaining results (SELECT query) from 2 tables using equi-join, Cartesian product and Union<br \/>\n<strong>Note:<\/strong>\u00a0Implementation of the above-mentioned commands could be done on any SQL supported software on one or two tables.<\/p>\n<p><strong>Unit 4: Boolean Algebra<br \/>\n(16 Theory + 0 Practical) Periods<br \/>\nRole of Logical Operations in Computing<\/strong>.<br \/>\nBinary-valued Quantities, Boolean Variable, Boolean Constant and Boolean Operators: AND, OR, NOT; Truth Tables; Closure Property, Commutative Law, Associative Law, Identity law, Inverse Law, Principle of Duality, Idempotent Law, Distributive Law, Absorption Law, Involution Law, DeMorgan\u2019s Law and their applications;<br \/>\nObtaining Sum of Product (SOP) and Product of Sum (POS) form the Truth Table, Reducing Boolean Expression (SOP and POS) to its minimal form, Use of Karnaugh Map for minimization of Boolean expressions (up to 4 variables);<br \/>\nApplication of Boolean Logic: Digital electronic circuit design using basic Logic Gates (NOT, AND, OR, NAND, NOR)<br \/>\nUse of Boolean operators (NOT, AND, OR) in SQL SELECT statements<br \/>\nUse of Boolean operators (AND, OR) in search engine queries.<\/p>\n<p><strong>Unit 5: Communication Technologies<br \/>\n(16 Theory + 3 Practical) Periods<br \/>\nEvolution of Networking:<\/strong>\u00a0ARPANET, Internet, Interspace Different ways of sending data across the network with reference to switching techniques (Circuit and Packet switching).\u00a0<strong>Data Communication terminologies:<\/strong>\u00a0Concept of Channel, Bandwidth (Hz, KHz, MHz) and Data transfer rate (bps, Kbps, Mbps, Gbps, Tbps).<br \/>\n<strong>Transmission media:<\/strong>\u00a0Twisted pair cable, coaxial cable, optical fiber, infrared, radio link, microwave link and satellite link.<br \/>\n<strong>Network devices:<\/strong>\u00a0Modem, RJ45 connector, Ethernet Card, Router, Switch, Gateway, wifi card.<br \/>\n<strong>Network Topologies and types:<\/strong>\u00a0Bus, Star, Tree, PAN, LAN, WAN, MAN.<br \/>\n<strong>Network Protocol:<\/strong>\u00a0TCP\/IP, File Transfer Protocol (FTP), PPP, SMTP, POP3 Remote Login (Talent), and Internet Wireless\/Mobile Communication protocol such as GSM, CDMA, GPRS, and WLL.<br \/>\n<strong>Mobile Telecommunication Technologies:<\/strong>\u00a01G, 2G, 3G and 4G; Mobile processors; Electronic mail protocols such as SMTP, POP3<br \/>\nProtocols for Chat and Video Conferencing VOIP<br \/>\nWireless technologies such as Wi-Fi and WiMax<br \/>\n<strong>Network Security Concepts:<\/strong>\u00a0Threats and prevention from Viruses, Worms, Trojan horse, Spams Use of Cookies, Protection using Firewall, https;<br \/>\nIndia IT Act, Cyber Law, Cyber Crimes, IPR issues, hacking.<br \/>\n<strong>Introduction To Web services:<\/strong>\u00a0WWW, Hyper Text Markup Language (HTML), Extensible Markup Language (XML); Hyper Text Transfer Protocol (HTTP); Domain Names; URL; Website, Web browser, Web Servers; Web Hosting, Web Scripting \u2013 Client side (VB Script, Java Script, PHP) and Server side (ASP, JSP, PHP), Web 2.0 (for social networking)<br \/>\nE-commerce payment transactions using online banking, mobile banking and payment apps and services.<\/p>\n<hr \/>\n<p style=\"text-align: center;\"><strong>Practical<\/strong><\/p>\n<p><strong>Duration: 3 Hours<br \/>\nTotal Marks: 30<\/strong><\/p>\n<ol>\n<li><strong>Programming in C++<\/strong><br \/>\nOne programming problem in C++ to be developed and tested in Computer during the examination. Marks are allotted on the basis of the following:<br \/>\nLogic: 6 Marks<br \/>\nDocumentation\/Indentation : 2 Marks<br \/>\nOutput presentation: 2 Mark<br \/>\n<strong>Notes: The types of problem to be given will be of application type from the following topics<\/strong><\/p>\n<ul>\n<li>Arrays (One dimensional and two dimensional)<\/li>\n<li>Class(es) and objects<\/li>\n<li>Stack using arrays and or linked implementation<\/li>\n<li>Queue using arrays (circular) and or linked implementation<\/li>\n<li>Binary File operations (Creation, Displaying, Searching and modification)<\/li>\n<li>Text File operations (Creation, Displaying and modification)<\/li>\n<\/ul>\n<\/li>\n<li><strong>SQL Commands<\/strong><br \/>\nFive Query questions based on a particular Table \/ Relation to be tested practically on Computer during the examination. The command along with the result must be written in the answer sheet.<\/li>\n<li><strong>Project Work<\/strong><br \/>\nThe project has to be developed in C++ language with Object Oriented Technology and also should have use of Data files. (The project is required to be developed in a group of 2-4 students)<\/p>\n<ul>\n<li>Presentation on the computer<\/li>\n<li>Project report (Listing, Sample Outputs, Documentations)<\/li>\n<li>Viva<\/li>\n<li>1 mark is for innovation while writing the programme.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Practical File<\/strong><br \/>\nMust have minimum 20 programs from the following topics<\/p>\n<ul>\n<li>Arrays (One dimensional and two dimensional, sorting, searching, merging, deletion &amp; insertion of elements)<\/li>\n<li>Class(es) and objects<\/li>\n<li>Stacks using arrays and linked implementation \uf0b7<\/li>\n<li>Queue using arrays &amp; linked implementation (circular also). \uf0b7<\/li>\n<li>File (Binary and Text) operations (Creation, Updation, Query) \uf0b7<\/li>\n<li>Any computational Based problems \uf0b7<\/li>\n<li>15 SQL commands along with the output based on any table\/relation:<\/li>\n<\/ul>\n<\/li>\n<li><strong>Viva Voce<\/strong><br \/>\nViva will be asked from syllabus covered in class XII and the project developed by the student.<\/li>\n<\/ol>\n<h2>Download CBSE\u00a0Syllabus of Class 12th<\/h2>\n<ul>\n<li><a href=\"http:\/\/mycbseguide.com\/downloads\/cbse-class-12-physics\/1251\/cbse-syllabus\/1\/\"><strong>Physics<\/strong><\/a><\/li>\n<li><strong><a href=\"http:\/\/mycbseguide.com\/downloads\/cbse-class-12-chemistry\/1267\/cbse-syllabus\/1\/\">Chemistry<\/a><\/strong><\/li>\n<li><strong><a href=\"http:\/\/mycbseguide.com\/downloads\/cbse-class-12-biology\/1298\/cbse-syllabus\/1\/\">Biology<\/a><\/strong><\/li>\n<li><a href=\"http:\/\/mycbseguide.com\/downloads\/cbse-class-12-mathematics\/1284\/cbse-syllabus\/1\/\"><strong>Mathematics<\/strong><\/a><\/li>\n<li><a href=\"http:\/\/mycbseguide.com\/downloads\/cbse-class-12-accountancy\/1315\/cbse-syllabus\/1\/\"><strong>Accountancy<\/strong><\/a><\/li>\n<li><a href=\"http:\/\/mycbseguide.com\/downloads\/cbse-class-12-economics\/1327\/cbse-syllabus\/1\/\"><strong>Economics<\/strong><\/a><\/li>\n<li><a href=\"http:\/\/mycbseguide.com\/downloads\/cbse-class-12-business-studies\/1727\/cbse-syllabus\/1\/\"><strong>Business studies<\/strong><\/a><\/li>\n<li><a href=\"http:\/\/mycbseguide.com\/downloads\/cbse-class-12-english-core\/1855\/cbse-syllabus\/1\/\"><strong>English core<\/strong><\/a><\/li>\n<li><a href=\"http:\/\/mycbseguide.com\/downloads\/cbse-class-12-hindi-core\/1865\/cbse-syllabus\/22\/\"><strong>Hindi core<\/strong><\/a><\/li>\n<li><a href=\"http:\/\/mycbseguide.com\/downloads\/cbse-class-12-history\/1869\/cbse-syllabus\/1\/\"><strong>History<\/strong><\/a><\/li>\n<li><a href=\"http:\/\/mycbseguide.com\/downloads\/cbse-class-12-political-science\/1879\/cbse-syllabus\/1\/\"><strong>Political science<\/strong><\/a><\/li>\n<li><a href=\"http:\/\/mycbseguide.com\/downloads\/cbse-class-12-geography\/1863\/cbse-syllabus\/1\/\"><strong>Geography<\/strong><\/a><\/li>\n<li><a href=\"http:\/\/mycbseguide.com\/downloads\/cbse-class-12-sociology\/1881\/cbse-syllabus\/1\/\"><strong>Sociology<\/strong><\/a><\/li>\n<li><a href=\"http:\/\/mycbseguide.com\/downloads\/cbse-class-12-home-science\/1871\/cbse-syllabus\/1\/\"><strong>Home science<\/strong><\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>CBSE Syllabus for Class 12 Old Computer science 2019-20 contains all the topics of this session. myCBSEguide provides you latest Syllabus for Class 12. Computer science is the study of processes that interact with data and that can be represented as data in the form of programs. Student can Download Latest CBSE Syllabus for class &#8230; <a title=\"CBSE Syllabus for Class 12 Old Computer science 2019-20\" class=\"read-more\" href=\"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/\" aria-label=\"More on CBSE Syllabus for Class 12 Old Computer science 2019-20\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1346,13,1443],"tags":[266,1734,1342,326],"class_list":["post-25914","post","type-post","status-publish","format-standard","hentry","category-cbse","category-cbse-syllabus","category-computer-science-cbse-class-12","tag-cbse-syllabus","tag-cbse-syllabus-for-class-12-old-computer-science-2019-20","tag-class-12","tag-computer-science"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>CBSE Syllabus for Class 12 Old Computer science 2019-20<\/title>\n<meta name=\"description\" content=\"CBSE Syllabus for Class 12 Old Computer science 2019-20 contains all the topics of this session. myCBSEguide provides you latest Syllabus.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CBSE Syllabus for Class 12 Old Computer science 2019-20\" \/>\n<meta property=\"og:description\" content=\"CBSE Syllabus for Class 12 Old Computer science 2019-20 contains all the topics of this session. myCBSEguide provides you latest Syllabus.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/\" \/>\n<meta property=\"og:site_name\" content=\"myCBSEguide\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/mycbseguide\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-04-23T06:02:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-04-23T06:11:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mycbseguide.com\/blog\/wp-content\/uploads\/2016\/09\/mycbseguide_n.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"599\" \/>\n\t<meta property=\"og:image:height\" content=\"242\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"myCBSEguide\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@mycbseguide\" \/>\n<meta name=\"twitter:site\" content=\"@mycbseguide\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"myCBSEguide\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/\"},\"author\":{\"name\":\"myCBSEguide\",\"@id\":\"https:\/\/mycbseguide.com\/blog\/#\/schema\/person\/f67796d5f5c5a468e8c680aaaad21519\"},\"headline\":\"CBSE Syllabus for Class 12 Old Computer science 2019-20\",\"datePublished\":\"2019-04-23T06:02:49+00:00\",\"dateModified\":\"2019-04-23T06:11:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/\"},\"wordCount\":1472,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/mycbseguide.com\/blog\/#organization\"},\"keywords\":[\"CBSE Syllabus\",\"CBSE Syllabus for Class 12 Old Computer science 2019-20\",\"class 12\",\"Computer Science\"],\"articleSection\":[\"CBSE\",\"CBSE Syllabus\",\"Computer Science\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/\",\"url\":\"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/\",\"name\":\"CBSE Syllabus for Class 12 Old Computer science 2019-20\",\"isPartOf\":{\"@id\":\"https:\/\/mycbseguide.com\/blog\/#website\"},\"datePublished\":\"2019-04-23T06:02:49+00:00\",\"dateModified\":\"2019-04-23T06:11:34+00:00\",\"description\":\"CBSE Syllabus for Class 12 Old Computer science 2019-20 contains all the topics of this session. myCBSEguide provides you latest Syllabus.\",\"breadcrumb\":{\"@id\":\"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/mycbseguide.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CBSE News\",\"item\":\"https:\/\/mycbseguide.com\/blog\/category\/cbse-news\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"CBSE Syllabus\",\"item\":\"https:\/\/mycbseguide.com\/blog\/category\/cbse-news\/cbse-syllabus\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"CBSE Syllabus for Class 12 Old Computer science 2019-20\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/mycbseguide.com\/blog\/#website\",\"url\":\"https:\/\/mycbseguide.com\/blog\/\",\"name\":\"myCBSEguide\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/mycbseguide.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/mycbseguide.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/mycbseguide.com\/blog\/#organization\",\"name\":\"myCBSEguide\",\"url\":\"https:\/\/mycbseguide.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/mycbseguide.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/mycbseguide.com\/blog\/wp-content\/uploads\/2016\/04\/books_square.png\",\"contentUrl\":\"https:\/\/mycbseguide.com\/blog\/wp-content\/uploads\/2016\/04\/books_square.png\",\"width\":180,\"height\":180,\"caption\":\"myCBSEguide\"},\"image\":{\"@id\":\"https:\/\/mycbseguide.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/mycbseguide\/\",\"https:\/\/x.com\/mycbseguide\",\"https:\/\/www.linkedin.com\/company\/mycbseguide\/\",\"http:\/\/in.pinterest.com\/mycbseguide\/\",\"https:\/\/www.youtube.com\/channel\/UCxuqSnnygFzwJG0pwogCNEQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/mycbseguide.com\/blog\/#\/schema\/person\/f67796d5f5c5a468e8c680aaaad21519\",\"name\":\"myCBSEguide\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CBSE Syllabus for Class 12 Old Computer science 2019-20","description":"CBSE Syllabus for Class 12 Old Computer science 2019-20 contains all the topics of this session. myCBSEguide provides you latest Syllabus.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/","og_locale":"en_US","og_type":"article","og_title":"CBSE Syllabus for Class 12 Old Computer science 2019-20","og_description":"CBSE Syllabus for Class 12 Old Computer science 2019-20 contains all the topics of this session. myCBSEguide provides you latest Syllabus.","og_url":"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/","og_site_name":"myCBSEguide","article_publisher":"https:\/\/www.facebook.com\/mycbseguide\/","article_published_time":"2019-04-23T06:02:49+00:00","article_modified_time":"2019-04-23T06:11:34+00:00","og_image":[{"width":599,"height":242,"url":"https:\/\/mycbseguide.com\/blog\/wp-content\/uploads\/2016\/09\/mycbseguide_n.jpg","type":"image\/jpeg"}],"author":"myCBSEguide","twitter_card":"summary_large_image","twitter_creator":"@mycbseguide","twitter_site":"@mycbseguide","twitter_misc":{"Written by":"myCBSEguide","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/#article","isPartOf":{"@id":"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/"},"author":{"name":"myCBSEguide","@id":"https:\/\/mycbseguide.com\/blog\/#\/schema\/person\/f67796d5f5c5a468e8c680aaaad21519"},"headline":"CBSE Syllabus for Class 12 Old Computer science 2019-20","datePublished":"2019-04-23T06:02:49+00:00","dateModified":"2019-04-23T06:11:34+00:00","mainEntityOfPage":{"@id":"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/"},"wordCount":1472,"commentCount":2,"publisher":{"@id":"https:\/\/mycbseguide.com\/blog\/#organization"},"keywords":["CBSE Syllabus","CBSE Syllabus for Class 12 Old Computer science 2019-20","class 12","Computer Science"],"articleSection":["CBSE","CBSE Syllabus","Computer Science"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/","url":"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/","name":"CBSE Syllabus for Class 12 Old Computer science 2019-20","isPartOf":{"@id":"https:\/\/mycbseguide.com\/blog\/#website"},"datePublished":"2019-04-23T06:02:49+00:00","dateModified":"2019-04-23T06:11:34+00:00","description":"CBSE Syllabus for Class 12 Old Computer science 2019-20 contains all the topics of this session. myCBSEguide provides you latest Syllabus.","breadcrumb":{"@id":"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/mycbseguide.com\/blog\/cbse-syllabus-for-class-12-old-computer-science-2019-20\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mycbseguide.com\/blog\/"},{"@type":"ListItem","position":2,"name":"CBSE News","item":"https:\/\/mycbseguide.com\/blog\/category\/cbse-news\/"},{"@type":"ListItem","position":3,"name":"CBSE Syllabus","item":"https:\/\/mycbseguide.com\/blog\/category\/cbse-news\/cbse-syllabus\/"},{"@type":"ListItem","position":4,"name":"CBSE Syllabus for Class 12 Old Computer science 2019-20"}]},{"@type":"WebSite","@id":"https:\/\/mycbseguide.com\/blog\/#website","url":"https:\/\/mycbseguide.com\/blog\/","name":"myCBSEguide","description":"","publisher":{"@id":"https:\/\/mycbseguide.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mycbseguide.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/mycbseguide.com\/blog\/#organization","name":"myCBSEguide","url":"https:\/\/mycbseguide.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mycbseguide.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/mycbseguide.com\/blog\/wp-content\/uploads\/2016\/04\/books_square.png","contentUrl":"https:\/\/mycbseguide.com\/blog\/wp-content\/uploads\/2016\/04\/books_square.png","width":180,"height":180,"caption":"myCBSEguide"},"image":{"@id":"https:\/\/mycbseguide.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/mycbseguide\/","https:\/\/x.com\/mycbseguide","https:\/\/www.linkedin.com\/company\/mycbseguide\/","http:\/\/in.pinterest.com\/mycbseguide\/","https:\/\/www.youtube.com\/channel\/UCxuqSnnygFzwJG0pwogCNEQ"]},{"@type":"Person","@id":"https:\/\/mycbseguide.com\/blog\/#\/schema\/person\/f67796d5f5c5a468e8c680aaaad21519","name":"myCBSEguide"}]}},"_links":{"self":[{"href":"https:\/\/mycbseguide.com\/blog\/wp-json\/wp\/v2\/posts\/25914","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mycbseguide.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mycbseguide.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mycbseguide.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/mycbseguide.com\/blog\/wp-json\/wp\/v2\/comments?post=25914"}],"version-history":[{"count":5,"href":"https:\/\/mycbseguide.com\/blog\/wp-json\/wp\/v2\/posts\/25914\/revisions"}],"predecessor-version":[{"id":25920,"href":"https:\/\/mycbseguide.com\/blog\/wp-json\/wp\/v2\/posts\/25914\/revisions\/25920"}],"wp:attachment":[{"href":"https:\/\/mycbseguide.com\/blog\/wp-json\/wp\/v2\/media?parent=25914"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mycbseguide.com\/blog\/wp-json\/wp\/v2\/categories?post=25914"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mycbseguide.com\/blog\/wp-json\/wp\/v2\/tags?post=25914"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}