25. Which of the following is not possible statically in C language? a) Jagged Array b) Rectangular Array c) Cuboidal Array d) Multidimensional Array View Answer 26. Which of the following return-type cannot be
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 result; } } class Output { public static void main(String args[]) { recu...
Quick sort and merge sort algorithms are based on the divide and conquer algorithm which works in the recursive manner. Recursion is used in Quick sort and merge sort. In Quick sort and merge sort, the larger problem is divided into smaller problem then later after solving smaller problem we...
Data structures like Hash Tables, Trees, Graphs etc are some of the type of data structures easily found in the computer languages. MCQs (Multiple Choice Questions) Q1 Provide the format for the representation of string in the memory in C language? Represented as an array of characters Can ...