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 terms for functions View Answer 17. Which of following is not accepted in C? a) ...
This set of Python Multiple Choice Questions & Answers (MCQs) focuses on “Regular Expressions”. 1. Which module in Python supports regular expressions? a) re b) regex c) pyregex d) none of the mentioned View Answer 2. Which of the following creates a pattern object? a) re.create(str)...
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 ...
c) Data structure like queue or stack cannot be implemented d) There are chances of wastage of memory space if elements inserted in an array are lesser than the allocated size View Answer 3. Which data structure is used for implementing recursion?
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 ...