>
OJEE
>
Computer Science & Information Technology
List of top Computer Science & Information Technology Questions on Data Structures asked in OJEE
What is the value of the postfix expression: $6\ 12\ 2\ 4\ +\ /\ *\ ?$
OJEE - 2025
OJEE
Computer Science & Information Technology
Data Structures
Consider the following C function foo(int n). How many times does foo(2) get called on making the call foo(5)?
C Function:
float foo(int n){ if(n <= 2) return 1; else return (2*foo(n-1) + 3*foo(n-2)); }
OJEE - 2025
OJEE
Computer Science & Information Technology
Data Structures
Suppose you are given pointers to the first and the last nodes of a singly linked list, which one of the following operations would require traversal of the linked list?
OJEE - 2025
OJEE
Computer Science & Information Technology
Data Structures
What is the time complexity of the Bellman-Ford single-source shortest path algorithm on a completely connected weighted graph of $n$ vertices?
OJEE - 2025
OJEE
Computer Science & Information Technology
Data Structures
How many null links does an arbitrary binary tree with $n$ nodes have?
OJEE - 2025
OJEE
Computer Science & Information Technology
Data Structures
Which one of the following recurrence relations best represents the time complexity of the binary search algorithm running on an ordered array of $n$ elements?
OJEE - 2025
OJEE
Computer Science & Information Technology
Data Structures