Recent Post

ICT Grade 11 Quiz | Chapter 01 (Set -02) | English Medium

 

ICT Grade 11 Quiz

ICT Grade 11 Quiz

1. What is the first step in problem-solving as described in the chapter?

2. What is the result of converting input to output called?

3. Which of the following is an example of input for making a cup of tea?

4. In the example of preparing a letter, what can be interchanged?

5. What is the output in the problem of dividing books between siblings?

6. What is an algorithm?

7. Which control structure is used when steps are carried out in order?

8. What symbol is used to represent the start or end in a flowchart?

9. What does the diamond symbol in a flowchart represent?

10. What keyword is used to declare variables in Pascal?

11. Which of the following is a standard data type in Pascal?

12. Which operator is used for addition in Pascal?

13. What is the result of the expression 7 > 3?

14. In logical operators, what does the AND operator return if both expressions are true?

15. Which loop structure checks the condition at the beginning of the loop in Pascal?

16. Which type of language is Pascal considered?

17. What is a variable in Pascal?

18. Which of the following is a reserved word in Pascal?

19. What is the purpose of a pseudo code?

20. What is the output of the following pseudo code:
                IF 5 > 3 THEN
                  DISPLAY "True"
                ELSE
                  DISPLAY "False"
                

21. Which data type in Pascal can hold decimal numbers?

22. How do you declare a constant in Pascal?

23. What is the output when dividing 20 by 6 using DIV operator in Pascal?

24. Which of the following is a logical operator in Pascal?

25. What does the flowchart symbol for a process look like?

26. In the context of control structures, what does repetition mean?

27. What is an example of a high-level programming language mentioned in the chapter?

28. Which paradigm is associated with saying what you want rather than how to achieve it?

29. What type of program structure is used to divide a complex program into smaller sub-programs?

30. What is the purpose of a compiler in programming?

31. What is the main purpose of using a flowchart?

32. What is pseudo code primarily used for?

33. Which keyword is used in Pascal for declaring constants?

34. Which of the following is NOT a control structure in algorithms?

35. What is the symbol for input/output in a flowchart?

36. What is the correct syntax to declare a variable of type integer in Pascal?

37. Which of the following is a valid boolean value in Pascal?

38. What does the MOD operator in Pascal return?

39. Which control structure is used to perform repeated execution until a condition is met?

40. What is the output of the following Pascal code?
                var a: integer;
                begin
                    a := 5 MOD 3;
                    writeln(a);
                end.
                

41. What does the following pseudo code do?
                IF age >= 18 THEN
                    DISPLAY "Adult"
                ELSE
                    DISPLAY "Minor"
                ENDIF
                

42. Which Pascal reserved word is used to start the declaration of a subprogram that does not return a value?

43. What is the result of the following Pascal expression: 10 DIV 3?

44. In a flowchart, what does a rectangle represent?

45. Which of the following is a high-level programming language mentioned in the chapter?

46. What type of paradigm is associated with object-oriented programming?

47. What is the purpose of an interpreter in programming?

48. What does the term "iteration" refer to in programming?

49. Which control structure is used when steps need to be executed based on a condition?

50. What is the main difference between an array and a regular variable?

No comments