December 8, 2023

Question 8139 – Programming

Consider the following program: int f(int *p, int n) { if (n <= 1) return 0; else return max (f(p+1,n-1),p[0]-p[1]); } int main() { int a[] […]
December 8, 2023

Question 1255 – Data-Structures

The catalan number for generating different binary trees is given by: Correct Answer: A Question 307 Explanation:  → In combinatorial mathematics, the Catalan numbers form a […]
December 8, 2023

Question 16144 – Programming

What is printed by the following ANSI C program? #include int main(int argc, char *argv[]){ char a = ‘P’; char b = ‘x’; char c = […]
December 8, 2023

Question 3418 – Environment

The dominant source of pollution due to oxides of nitrogen (NO x ) in urban areas is Correct Answer: A A Road transport B Commercial sector […]
error: Alert: Content selection is disabled!!