October 18, 2024

Functions

Question 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, 2024

Programming

Question 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, 2024

Functions

Question 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, 2024

Relational-Algebra

Question 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 […]
October 20, 2024

Algorithms

Question 1 The equality above remains correct if X is replace by A Only I B Only II C I or III or IV but not […]
October 20, 2024

GATE-2024-CS1(Forenoon)

Question 2 If two distinct non-zero real variables x and y are such that (x + y) is proportional  to (x — y) then the value […]
October 21, 2024

TIFR PHD CS & SS 2014

Question 2 A body at a temperature of 30 Celsius is immersed into a heat bath at 0 Celsius at time t = 0. The body […]
October 21, 2024

NTA UGC NET JUNE-2023 Paper-2

Question 33 Which of the following is not a property of a good system for representation of knowledge in a particular domain? A Presentation adequacy B […]
October 22, 2024

TIFR 2021

Question 11 How many numbers in the range f0; 1; : : : ; 1365g have exactly four 1’s in their binary representation? (Hint: 136510 is […]
October 23, 2024

Operating-Systems

Question 8 Consider the two functions incr and decr shown below. There are 5 threads each invoking incr once, and 3 threads each invoking decr once, […]
October 23, 2024

GATE-2024-CS1(Forenoon)

Question 11 Q11 A {−1, 1, 2} B {−2, −1, 1} C {0, 1} D {−1, 0, 1} engineering-mathematicsSets and Relations Correct Answer: D
October 23, 2024

Linear-Algebra

Question 8 The rank of the following (n + 1)×(n+1) matrix, where a is a real number is A 1 B 2 C n D Depends […]