You are on page 1of 2

S

m
i
t

M
a
j
i
t
h
i
a

Important Questions 1 to 5 Chapters


1
1. Draw a flow chart to find the maximum number out of three given number.
2. Draw a flow chart to do the sum of 10 elements read from user.
3. List out operators used in the C language and explain any four with example.
4. What do you mean by constants in C Language? Explain constants in detail.
5. Explain Conditional operators with small examples.
6. Find out the output of the following C code. Assume all libraries are included and code is
syntactically correct.

void main()
{
char name[30]=examination;
int ix=67584;
float fz=95.7658;
printf(%.6s\n,name);
printf(%7s\n,name);
printf(%010s\n,ix);
printf(%*.*f\n,7,2,fz);
printf(%e\n,fz);
printf(%12.4e\n,-fz);
}

7. State the difference between entry-controlled loop & exit-controlled loop.
8. Describe various types of computer languages and mention its advantage and disadvantage.
9. What is algorithm and flowchart? Explain both with some suitable example.
10. Compare algorithm and flowchart.
11. Define:
a. Token,
b. Identifiers
c. Constants
d. Keyword
12. Draw Block diagram of Computer and explain each block.
13. Draw the flowchart to solve following 1! + 2! + 3! + 4! + 5! + 6! + 7! + 8! .... + n!
14. Explain various types of loops available in C with example.
15. Find out the output of the following C Codes
a. void main()
{
int x = 7, y = 8, z = 9;
printf( \n %d %d %d, ++x, x, x++ );
printf( \n %d %d %d, z, z+x, z++ + x + y++ );
printf( \n %d %d %d, x, y, z );
}
16. What is type conversion? Explain implicit type conversion and explicit type conversion
with example.
S
m
i
t

M
a
j
i
t
h
i
a

Important Questions 1 to 5 Chapters


2
17. Explain break and continue with example

18. Define Following
a. Operating system
b. Computer
c. Application software
d. System Software
19. Explain operator precedence and associativity.
20. Explain various Symbols used in flowchart and Draw the flowchart for finding largest
number out of three given numbers.
21. Explain Nested if statements with example.
22. Explain Else if ladder with example.
23. Explain Switch Statements with example.
24. Explain different data types used in C language
25. Give names of loop statements. Explain a one loop statements with example.
26. Explain branching and looping with example.
27. Draw the flow chart to find factorial of given number.

You might also like