c) depends on the compiler d) depends on the standard View Answer 16. Functions in C Language are always _________ a) Internal b) External c) Both Internal and External d) External and Internal are not valid te
23. Which of these are selection statements in Java? a) break b) continue c) for() d) if() View Answer24. What will be the output of the following Java program?class recursion { int func (int n) { int result; if (n == 1) return 1; result = func (n - 1); return ...
Answer: 4 In recursion, the type of data structure that finds its use is the Stack type of data structure. Q6 The data structure that allows the insertion, as well as the deletion from both the ends, are: String type of data structure Queue type of data structure Stack type of data ...