CBSERanker

Loading

C.S New Half Yearly-XI 

C.S New Half Yearly-XI 

Class : XI Subject: Computer Science (083)

Time Allowed : 3 Hours Maximum Marks: 70

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. Section C has 05 Short Answer type questions carrying 03 marks each. 

6. Section D has 03 Long Answer type questions carrying 05 marks each. 

7. Section E has 02 questions carrying 04 marks each. 

8. All programming questions are to be answered using Python Language only.

SECTION – A
1.Find the invalid identifier(s) from the following-my_name_mynamemy-namemy2name1
2Flash memory is a type of ……………….memory
i) primary            ii)  RAM        iii)secondary                iv) all of these         
1
3Which of the following are keywords in Python:Printinnot(iv) While1
4Expand the following terms:DVDPROM1
5Name any two operating system.1
6Which of the following is not a octal number:
i) 435                   ii)  786                iii)542                  iii) 236
1
7If the following code is executed , what will be the output-               st = “Mera#Bharat#Mahan”         print(st[ -12 :-6])           1
8What will be the result of following Python expression:2**3**2//201
9Find the output of following code: (if 8 is entered for x  and 3 is entered for y )x= input(‘Enter First Number ‘)y=int(input(“Enter second number”))       print(x*y)1
10Find the output of following expression-5* len(“2.25”) % 51
11According to boolean law : X+1 =?i)  X        ii )  1             iii) 0               iv) X 1
12The hexadecimal digits are 0 to 9  and A to ………….i) E                    ii)   F                    iii) G                     iv) D1
13Which of the following are jump statement :i) break       ii) while              iii) if                      iv)for1
14if    L= [“These”, [“are”,”a”,”few”,”words”],”that”,”we”,”will”,”use”] what does following expreseeion evaluate to?:        L[1:2] 1
15MS-Office is an example of-i) System Software   ii) Application Software iii) Utility Software   iv) Customized Software1
16What is the role of ALU in Computer .1
Q17 and 18 are ASSERTION AND REASONING based questions. Markthe correct choice as(a) Both A and R are true and R is the correct explanation for A(b)Both A and R are true and R is not the correct explanation for A(c) A is True but R is False(d)A is false but R is True
17Assertion: In Boolean algebra, the OR operation is commutative.Reasoning: The commutative property of addition holds true in Boolean algebra, which means that A + B is equal to B + A for any two Boolean variables A and B.1
18Assertion(A): List is an immutable data typeReasoning(R): When an attempt is made to update the value of an immutable variable, the old variable is destroyed and a new variable is created by the same name in memory.1
SECTION – B
19Explain infinite loop with example .2
20What do you understand by variable. Write a statement for  variable assignment.2
21Convert the following from given number system to required number system:(123)8  =  (?)16               (ii)  (ABC)16 = ( ?)82
22Sonu has written the code but the code is showing errors. Help Sonu and rewrite the code after making all necessary correction or change and underline each correction.





  
2
23Explain break statement with example.   OrExplain type casting with example .2
24Write Boolean expression for the following circuit C:\Users\HIRA IRSHAD\Downloads\images.png2
25Re-write the following FOR Loop code using WHILE Loop to get same output-     for i in range ( 20 , 10, -3) :             print( “hello”)2
SECTION – C
26Draw the logic circuit diagram for:  AB + ((B+C). BC)3
27Explain the  identity operators in python with example ?3
28Explain internal and external memory .3
29Write a program to input radius of a circle and find its area and perimeter .3
30Write a program in Python to check whether a string is Palindrome or not. A string is said to be a palindrome if the reverse of the string is the same as the string. For example, “radar” is a palindrome.3
SECTION – D
31What is list? Explain the difference between append () and extend() function with suitable example.2+2+1=5
32Write a Python program to print the following pattern.5432143213212115
33Write a python program which accept two times (in hour and minute) as input and displays the total time after adding both the entered times.  Sample Input:Enter Time 1 :Hour : 2Minute : 40Enter Time 2 :Hour : 1Minute : 35
Output:
Total Time  : 4  Hour & 16  Minute and  25 Second
5
SECTION – E
34State and Prove DeMorgans Theorem using Truth Table.4
35Write the output of following Python StatementsS=”GOOD MORNING”print(S.capitalize(),S.title())
L=[ ]for I in range(4): L.append(2*i+1)print(L)
4

******************************************************************************

Leave a Reply

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