Teaching UGC NET Mock Test Series 2025 (Paper 1 & 2) Programming and Data Structure Programming in C
A program has the following code to define a node.
struct node {
int data;
struct node* left;
struct node* right;
}
This node type would belong to which type of a data structure?
1
Queues
2
Doubly linked list
3
Binary tree
4
Circular list