MCQ From Control Statement To Pointer-2019
MCQ From Control Statement To Pointer-2019
MCQ From Control Statement To Pointer-2019
Page 1 of 2
Multi Choice Objective Questions from Chapter “Control statement to Pointer”
25. If int i=0, expression is used such as: (i<10) and update like i+=2; then how many times ‘Hello’ will be
printed in output screen.
26. How many type of looping?
27. Write the syntax of while loop with flow chart?
28. How long the execution of the while block’s statement will be continue?
29. If user want to print 3 to 47 with the difference of 4, then what will be the initialization, condition &
update line should written by user on program?
30. What the main difference is between while & do…while loop?
31. If the expression is false in do…While, then how many time(s) statement is printed on output.
32. Write the flow chart of do…while loop?
33. In all four loop, which loop is simplest?
34. What will be the syntax of for loop?
35. If a ‘for loop’ contained another ‘for loop’ then it is called as _________.
36. In nested for loop, how many variables are taken in program.
37. What is the use of jump statement in C?
38. What happened, when complier finds break statement inside loop?
39. What is the work of Continue keyword in loop?
40. “Jumps from one point to another point” this line is done by _______ keyword in C.
41. Default value of variable is ___________.
42. Collection of similar values is known as __________.
43. Array is which kind of data type?
44. Why we are used array in our program?
45. What is the demerit of array?
46. Which symbol is specified a variable is array type?
47. What is the initialization syntax of array?
48. Array can hold ________ no. of elements at a time.
49. Array index starts form _________ to __________.
50. Int a[]={1,2,3,4};, in this example how many index is created by compiler.
Page 2 of 2