- 
					 Let Q denote a queue containing sixteen numbers and S be an empty stack. Head (Q) returns the element at the head of the queue Q without removing it from Q. Similarly Top (S) returns the element at the top of S without removing it from S. Consider the algorithm given below. 
 The maximum possible number of iterations of the while loop in the algorithm is _________.
- 
                        - 156
- 128
- 256
- None of these
 
Correct Option: C
∵  n = 16 
Therefore, maximum number of iterations will be n2 = 256 
 
	