October 18, 2024FunctionsQuestion 9 Let A and B be sets with cardinalities m and n respectively. The number of one-one mappings (injections) from A to B, when m < […]
October 18, 2024ProgrammingQuestion 5 The integer value printed by the ANSI-C program given below is_____ . #include int funcp(){ static int x = 1; x++; return x; } […]
October 18, 2024FunctionsQuestion 17 The time complexity of the following C function is (assume n>0) int recursive (int n) { if (n==1) return(1); else return(recursive (n-1) + recursive(n-1)); […]
October 19, 2024Relational-AlgebraQuestion 45 Read the following and Answer the questions: Consider the relational schema of sailors S, Reserves R and Boats B. A Both Q1 and Q2 […]