{"id":687,"date":"2021-04-01T23:09:05","date_gmt":"2021-04-01T17:39:05","guid":{"rendered":"https:\/\/cbsepython.in\/?p=687"},"modified":"2023-12-28T09:56:49","modified_gmt":"2023-12-28T04:26:49","slug":"11-computer-science-083-sample","status":"publish","type":"post","link":"https:\/\/cbsepython.in\/11-computer-science-083-sample\/","title":{"rendered":"CBSE Class 11 Computer Science (083) Sample Paper 2020-21"},"content":{"rendered":"<h2><span style=\"color: #000000;\">CBSE Class 11 Computer Science (083) Sample Paper<\/span><\/h2>\n<p><span style=\"color: #000000; font-size: 12pt;\">General Instructions:<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">1- This question paper contains two parts A and B. Each part is compulsory.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">2- Part-A has 2 sections:<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">a) Section &#8211; I is short answer questions, to be answered in one word or one line.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">b) Section &#8211; II has two case studies questions. Each case study has 4 case-based subparts.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">3- Part &#8211; B is Deseriptive Paper and has three sections. <\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">a) Section-I is short answer questions of 2 marks each.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">b) Section-II is long answer questions of 3 marks each.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">c) Section-III is very long answer questions of 5 marks each.<\/span><\/p>\n<p>&nbsp;<\/p>\n<p style=\"text-align: center;\"><span style=\"color: #000000; font-size: 12pt;\">Part-A <\/span><\/p>\n<p style=\"text-align: center;\"><span style=\"color: #000000; font-size: 12pt;\">(Section I)<\/span><\/p>\n<p style=\"text-align: left;\"><span style=\"color: #000000; font-size: 12pt;\">ALL QUESTIONS 1 TO 15 CARRIES 1 MARK EACH<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">1- Which of the following is not a valid variable name in Python ? Justify reason for it not being a valid name.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">i) 5 Radius<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">ii) Radius_<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">iii) _Radius<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">iv) Radius<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">2- Which of the following are keywords in Python ?<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">i) break<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">ii) check<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">iii) range<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">iv) while<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">3- Name the Python Library modules which need to be imported to invoke the following functions:<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">i) sqrt()<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">ii) randint()<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">4- Write the names of the immutable data objects from the following:<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">i) List<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">ii) Tuple<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">iii) String<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">iv) Dictionary<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">5- Write a Python statement to declare a Dictionary named Class Roll with Keys as 1,2,3 and corresponding values as &#8216;Reena&#8217;, &#8216;Rakesh&#8217;, &#8216;Zareen&#8217; respectively.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">6- Which of the options out of i) to iv) is the correct data type for the variable String as defined in the following Python statement ?<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">String (&#8216;H&#8217;, E&#8217;, &#8216;L&#8217;, &#8216;L&#8217;, &#8216;0&#8217;)<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">i) List<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">ii) Dictionary<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">iii) Tuple<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">iv) Array<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">7- Write the output of the following Python code: <\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">for I in range(1,7,2):<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">print( 1 * &#8216;#&#8217; )<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">8- The small memory providing units inside the CPU are called the&#8230;&#8230;..<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">9- Write the output of the code:<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"classic\">x-40\r\ny=x+1\r\nx=20,y + x\r\nprint (x,y)<\/pre>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">10- Write the output of the code:<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"classic\">x=45\r\nwhile x&lt;50:\r\n    print(x)<\/pre>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">11- Convert (654.5)<sub>8<\/sub> \u2192 ()<sub>10<\/sub><\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">12- &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.Are the programs that deliver unwanted ads to your computer.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">13- When you shop you always check the security of the Website before you enter personal and credit card information. Comment.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">14- To avoid the tracking by website and storing of cookies, the private browsing opens a website in&#8230;&#8230;. Mode.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">15- Write 2 advantages of blockchain technology ?<\/span><\/p>\n<p>&nbsp;<\/p>\n<p style=\"text-align: center;\"><span style=\"color: #000000; font-size: 12pt;\">Section-II<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\"><strong>Both the Case study based questions are compulsory. Each question carries 1 mark<\/strong><\/span><\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">16- Posing as someone else online and using his\/her personal\/financial information shopping online or posting something is a common type of cyber crime these days.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">i) What are such types of cyber crime collectively called ? <\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">ii) What measures can you take to stop these ?<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">iii) As a citizen of India. What advise you should give to others for e-waste disposal?<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">iv) It is an internet service for sending written messages electronically from one computer to another. Write the service name.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">17- The record of a student (Name, Roll No., Marks in five subjects and percentage of marks) is stored in the following list:<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">stRecord= [ Raman&#8217;, &#8220;A-36&#8242;,[56,98,99,72,69],78.8]<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">Write Python statements to retrieve the following information from the list stRecord.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">i) Percentage of the student<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">ii) Maximum marks of the student<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">iii) Marks in the fifth subject<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">iv) Change the name of the student from &#8216;Raman&#8217; to &#8216;Raghav&#8217;<\/span><\/p>\n<p style=\"text-align: center;\"><span style=\"color: #000000; font-size: 12pt;\">Part-B<\/span><\/p>\n<p style=\"text-align: center;\"><span style=\"color: #000000; font-size: 12pt;\">Section-I<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">18- Rewrite the following code in python after removing all syntax error(s), Underline 2 each corrections done in the code.<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\">250 = Number\r\nWHILE Number 1000:\r\n    If Number&gt;750: print Number\r\n    Number =Number+100\r\n    else:\r\n        print Number * 2\r\n        Number = + 50\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">19- Observe the following Python code and find out, which out of the given optionsi) to iv) are the expected correct output(s).Also assign the maximum and minimum value that can be assigned to the variable &#8220;T&#8221;.<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\">import random\r\nx= [100,75,10,125]\r\nT= random.randint(0,3)\r\nfor i in range(T):\r\n    print (X[i],\"$$\",end=\" \")\r\n<\/pre>\n<p><span style=\"color: #000000; font-size: 12pt;\">i) 100$$75$$<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">ii) 75$$10$S125$$<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">iii) 75$$10$$<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">iv) 10$$125$$100<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">20- Convert the following :<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">i) (7FD0)<sub>16<\/sub> \u2192 ()<sub>2<\/sub>\u2192 ()<sub>8<\/sub><\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">21- Write the following code using for loop to while loop :-<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\">for i in range(10,50,2):\r\n    if i % 2==0:\r\n        print (i)\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">22- How will you write following expression in Python.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">i) (A +B+ C)<sup>5<\/sup> \/4AC<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">ii)\u221a(a<sup>2<\/sup> + b<sup>2<\/sup> + c<sup>2<\/sup>)<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">23- The following is a message encoded in ASCII code. What is the message?<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">1010100\u00a0 1001111\u00a0 \u00a01010000\u00a0 0110101<\/span><\/p>\n<p>&nbsp;<\/p>\n<ol start=\"24\">\n<li><span style=\"color: #000000; font-size: 12pt;\">Consider the following string Mysubject :<\/span><\/li>\n<\/ol>\n<p><span style=\"color: #000000; font-size: 12pt;\">Mysubject = &#8220;Computer Science&#8221;<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">What will be the output for the following string operations:<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">i) print(Mysubject[::2])<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">ii) print(Mysubject*3)<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">iii) print(Mysubject.swapcase())<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">iv) print(Mysubject[4:len(Mysubject):3]<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">25- What is the dual of:<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">i) A+ (BC) + (0(D+1))<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">ii) X&#8217;Y+X&#8217;+XY = 0<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">26- Draw a logic circuit diagram for the Boolean expression:<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">X= A&#8217;BC(A + D)&#8217;<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">27- Given the Boolean Function (ZX + Y&#8217;) (XY + Z&#8217;). Obtain the truth table of the function.<\/span><\/p>\n<p style=\"text-align: center;\"><span style=\"color: #000000; font-size: 12pt;\">Section- II<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">28- State and verify Distributive Law in Boolean Algebra using truth table and algebraically.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">29- The formula E &#8211; me states that the equivalent energy (E) can be calculated as the mass (m) multiplied by the speed of light (e= about 3 x 108 m\/s) squared. Write a program that accepts the mass of an object and determines its energy<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">30- Write a program to input monthly income of an employee and calculates Anincome (Annual Income Taxpaid (Tax to be Paid) where Taxpaid is calculated on the basis of the following :-<\/span><\/p>\n<table style=\"border-collapse: collapse; width: 60.8436%; height: 217px;\">\n<tbody>\n<tr style=\"height: 21px;\">\n<td style=\"width: 31.8182%; height: 21px;\"><span style=\"color: #000000; font-size: 12pt;\">AnIncome<\/span><\/td>\n<td style=\"width: 31.5757%; height: 21px;\"><span style=\"color: #000000; font-size: 12pt;\">Taxrate (%)<\/span><\/td>\n<\/tr>\n<tr style=\"height: 25px;\">\n<td style=\"width: 31.8182%; height: 25px;\"><span style=\"color: #000000; font-size: 12pt;\">&gt;=600000<\/span><\/td>\n<td style=\"width: 31.5757%; height: 25px;\"><span style=\"color: #000000; font-size: 12pt;\">8<\/span><\/td>\n<\/tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 31.8182%; height: 23px;\"><span style=\"color: #000000; font-size: 12pt;\">&gt;=300000 and 600000<\/span><\/td>\n<td style=\"width: 31.5757%; height: 23px;\"><span style=\"color: #000000; font-size: 12pt;\">6<\/span><\/td>\n<\/tr>\n<tr style=\"height: 40px;\">\n<td style=\"width: 31.8182%; height: 40px;\"><span style=\"color: #000000; font-size: 12pt;\">&gt;150000 and &lt; 300000<\/span><\/td>\n<td style=\"width: 31.5757%; height: 40px;\"><span style=\"color: #000000; font-size: 12pt;\">2<\/span><\/td>\n<\/tr>\n<tr style=\"height: 40px;\">\n<td style=\"width: 31.8182%; height: 40px;\"><span style=\"color: #000000; font-size: 12pt;\">&lt;150000<\/span><\/td>\n<td style=\"width: 31.5757%; height: 40px;\"><span style=\"color: #000000; font-size: 12pt;\">0<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><span style=\"color: #000000; font-size: 12pt;\">31- Write a program to accept a list and arrange the numbers in ascending order using bubble sort.<\/span><\/p>\n<p>&nbsp;<\/p>\n<p style=\"text-align: center;\"><span style=\"color: #000000; font-size: 12pt;\">SECTION-III<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">32- Write programs for the following using nested loops.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">a) To print the sum of the following series is<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">S=1\/2! &#8211; 2\/4!+ 3\/6! &#8211; 4\/8! .. &#8230;.N\/2N!<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">b) To accept a string and print the string in the following format,<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">For example: &#8220;Mary&#8221;<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">Mary<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">Mar<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">Ma<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">M<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">33- Answer the following questions <\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">a) Draw a flowchart to find the sum of first 50 natural numbers.<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">b) What is the difference between Linker and Loader parts of a compiler?<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">c) What is application software? Why is it required? <\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">d) Describe following Cyber Crimes :i) Cyber Bullying ii) Cyber Trolls<\/span><\/p>\n<p><span style=\"color: #000000; font-size: 12pt;\">e) How are tuples different from lists when both are sequences? How can you say that a tuple is an ordered list of objects?<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>CBSE Class 11 Computer Science (083) Sample Paper General Instructions: 1- This question paper contains two parts A and B. Each part is compulsory. 2- Part-A has 2 sections: a) Section &#8211; I is short answer questions, to be answered in one word or one line. b) Section &#8211; II has two case studies questions. [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[20],"tags":[],"class_list":["post-687","post","type-post","status-publish","format-standard","hentry","category-cbse-computer-science-with-python-class-12"],"_links":{"self":[{"href":"https:\/\/cbsepython.in\/wp-json\/wp\/v2\/posts\/687","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cbsepython.in\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cbsepython.in\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cbsepython.in\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/cbsepython.in\/wp-json\/wp\/v2\/comments?post=687"}],"version-history":[{"count":0,"href":"https:\/\/cbsepython.in\/wp-json\/wp\/v2\/posts\/687\/revisions"}],"wp:attachment":[{"href":"https:\/\/cbsepython.in\/wp-json\/wp\/v2\/media?parent=687"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cbsepython.in\/wp-json\/wp\/v2\/categories?post=687"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cbsepython.in\/wp-json\/wp\/v2\/tags?post=687"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}