PYQBOOK
Filter Questions
Found 475 question(s)
Q121
MCQ
GATE
CS
Easy
1 Mark
2024
DS → Linked Lists
Let SLLdel be a function that deletes a node in a singly-linked list given a pointer to the node and a pointer to the head of the list. Similarly, let DLLdel be another function that deletes a node in a doubly-linked list given a pointer to the node and a pointer to the head of the list. Let n denote the number of nodes in each of the linked lists. Which one of the following choices is TRUE about the worst-case time complexity of SLLdel and DLLdel?
Q122
NAT
GATE
CS
Medium
1 Mark
2024
DS → C Programming
What is the integer value printed by the ANSI-C program: int funcp() { static int x=1; x++; return x; } int main() { int x,y; x=funcp(); y=funcp()+x; printf('%d', x+y); return 0; }
Q123
MCQ
GATE
CS
Medium
1 Mark
2024
EM → Calculus
Let f: R → R be a function such that f(x) = max{x, x^3}, x ∈ R, where R is the set of all real numbers. The set of all points where f(x) is NOT differentiable is
Q124
NAT
GATE
CS
Medium
1 Mark
2024
EM → Calculus
The value of the definite integral ∫(from -3 to 3) ∫(from -2 to 2) ∫(from -1 to 1) (4x^2y - z^3) dz dy dx is
Q125
MCQ
GATE
CS
Medium
1 Mark
2024
EM → Calculus