We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
PRACTICE QUESTIONS
COMPUTRE SCIENCE
CLASS-11
1. Explain the concept of problem-solving in computer science.
2. Write an algorithm and flowchart for the following problem: Problem: Given a list of numbers, find the largest number in the list. 3. Describe the concept of a "pseudocode". 4. What is the importance of data structures in problem-solving? 5. Explain the difference between an algorithm and a flowchart. 6. What are the different types of data handling techniques in Python? 7. Explain the use of slicing in Python. 8. Write a Python program to input a list of numbers and perform the following operations: Find the sum of all elements. Find the average of all elements. Print the maximum and minimum elements in the list. 9. Discuss the difference between mutable and immutable data types in Python. 10. What are Python modules? 11. Explain the difference between import module_name and from module_name import function_name. 12. Describe the use of the random module in Python. 13. Explain the basic components of a computer system. 14. Explain the basic components of a computer system. 15. Describe the functioning of the CPU. 16. What is an operating system? 17. What is the difference between a 32-bit and 64-bit computer architecture? 18. Explain the following data types in Python with examples: Integer, Float, String, Boolean, and Complex. 19. What is the difference between == and is operators in Python? 20. What is the purpose of indentation in Python?
21. What is a loop in Python?
22. What is a function in Python? 23. What is the purpose of the break and continue statements in Python? 24. What is the output of the following code: a = [1, 2, 3] b = [1, 2, 3]