Computer Chap # 01 10th class
Introduction
1. Describe the importance of computers?
2. Define computer program or software?
3. Define computer programming?
4. Who is programmer?
5. What is programing language?
6. which programming languages are commonly used?
7. who and when C language was developed?
Article 1.1 programming environment
8. Define the programming environment?
Article 1.1.1 integrated development environment IDE
9. What is integrated development environment IDE?
10. What do you know about graphical user interference (GUI)?
11. How IDE tools can help a programmer?
12. Write down IDEs available for C programming language?
Article 1.1.2 text editor
13. What is text editor?
Article 1.1.3 compiler
14. What is machine language?
15. What is compiler?
Article 1.2 programming basics
16. What is Syntax of the language?
17. What is syntax error?
Article 1.2.1 reserved words
18. What is mean by reserved words?
19. Write down any five reserved word in C language?
Article 1.2.2 structure of C program
20. What are the main parts of C program?
21. What is mean by header files?
22. Write down general structure of an include statement?
23. What is the difference between file Stdio.h and file math.h?
24. What do you know about main section of C language?
25. What is a body of maim0 function?
26. Which points must be kept in mind in order to write syntactically correct C language program?
27. What do you mean by C language is case sensitive?
Article 1.2.3 purpose and Syntax of comments in C program
28. What are comments?
29. Describe the purpose of writing comment?
30. Write different type of comments?
31. What is difference between Single line comment and multi line comments?
Article 1.3 constant and variables
32. What is character set?
33. Which character Set C programming language has included?
Article 1.3.1 constants
34. What is mean by constants give example?
35. How many constant are there in C language write name?
36. What is integer constant?
37. What do you know about real constant?
38. Describe Character constant?
39. Differentiate between character constant i.e '9' constant integer constant i.e '9'
1.3.2 variables
40. Define variable give example?
41. Define identifier?
42. How many data types are there in C language write names?
Article 1.3.3 data type of a variable
43. What is data type of a variable?
44. How many bytes of memory compilers use?
45. How many data types are there in C language write names?
46. What is integer-int(signed/unsigned)?
47. What do you know about floating point-float?
48. Describe character-char?
Article 1.3.4 name of variable
49. Which rules are used to name a available?
Article 1.3.5 variable declaration
50. What is variable declaration?
51. Which Syntax can be followed to declare a variable?
52. Write down some examples of valid variable declaration?
Article 1.3.6 variable initialization
53. Define variable initialization?
54. Write down general structure for initializing a variable?