You are on page 1of 1

Indraprastha GLOBAL SCHOOL

Sector 93-B, Express Highway, Noida


Revision Worksheet for Half Yearly Examination
(Session 2022-2023)
Class – XI
Subject: Computer Science (083)

Q1. Define Software. What are the different categories of Software? Name them.
Q2. How Many Characters are supported in ASCII?
Q3. Expand DRAM and also, explain the term.
Q4. List any two differences between compiler and interpreter.
Q5. Why the following statement is not valid?
X+1=X
Q6. What do you mean by Logical errors with an example?
Q7. What is the role of a comment in a comment in a program ? Is it necessary to comment every line of
code?
Q8. Write a program to print area of a circle?
Q9. Write a program to convert temperature from degree to Fahrenheit.
Q10. Convert the following:
1. (1011010)2 to Hexadecimal
2. (723)8 to Decimal
Q11. Draw a flow chart to calculate factorial of a number.
Q12. State and prove the DeMorgan’s Theorem algebraically.
Q13. Draw a logic circuit diagram for the following Boolean expression:
X’.(Y’+Z)
Q14. What is Cache memory? How is it different from the primary memory?
Q15. Is Python a free and open source language? Explain.
Q16. How python is a cross platform language ?
Q17. Write any two advantages of python programming language.
Q18. Define keyword with example.
Q19. What are variables? How we can create variable in python give examples.
Q20. The following code is not giving desired output. We want to input value as 20 and obtain output as 40.Identifiy
the problem and do the required correction in the code :
x =input (“Enter number :”)
y = x*4
print(y)
Q21. What will be the output of the following code?
x=45
y=x+1
x=20,y+x
print(x,y)
Q22. Define identifiers. Identify the valid and invalid identifiers in the following list. [2]
i) x_y_z ii) x_abc@1 iii) 1abc_d3 iv) continue

Q23. Write a program in python to obtain the principal amount, rate and time and calculate the Simple Interest.
Q24. Explain the use of // (floor division) operator and = = operator with example.
Q25. Identify the type of following literals? [2]
i)45.789 ii) 23789 iii) “True” iv) 0XFACE

You might also like