GATE Exam  >  GATE Questions  >   Consider the following function, to which a ... Start Learning for Free
Consider the following function, to which a pointer to the root node of the binary tree T is passed.
int Gradeup (Struct Node * root)
{
int a = 0, b = 0, c = 0;
if(root == NULL) return 0;
if(root → left == NULL && root → right == NULL) return 1;
a = Gradeup (root → left);
b = Gradeup (root → right);
c = 1 + max(a, b);
return c;
}
The above program computes,
  • a)
    The number of edges in the longest path from root to leaf in T
  • b)
    The number of nodes in the longest path from root to leaf in T
  • c)
    Number of leaves in T
  • d)
    Total number of nodes in T
Correct answer is option 'B'. Can you explain this answer?
Verified Answer
Consider the following function, to which a pointer to the root node ...
The above program computes the number of levels in T, Option (B) is actually the definition of the number of levels (or depth) of a tree. For example, if the tree T has only one node, it returns 1. So options (A) and (C) are eliminated, as if (A) was supposed to be true, it should have returned 0. Now the only dilemma is between (B) and (D), which can also be handled easily, as the line C = 1 + max (a, B. should have been c = 1 + a + b instead, but that's not the case and therefore it only computes the number of levels in T. All this explanation is given to help you solve the question in the exam quickly, but with a lot of practice, just by looking at the code you will be able to tell what the function can do and cannot do.
View all questions of this test
Explore Courses for GATE exam

Similar GATE Doubts

Consider the following function, to which a pointer to the root node of the binary tree T is passed.int Gradeup (Struct Node * root){int a = 0, b = 0, c = 0;if(root == NULL) return 0;if(root → left == NULL && root → right == NULL) return 1;a = Gradeup (root → left);b = Gradeup (root → right);c = 1 + max(a, b);return c;}The above program computes,a)The number of edges in the longest path from root to leaf in Tb)The number of nodes in the longest path from root to leaf in Tc)Number of leaves in Td)Total number of nodes in TCorrect answer is option 'B'. Can you explain this answer?
Question Description
Consider the following function, to which a pointer to the root node of the binary tree T is passed.int Gradeup (Struct Node * root){int a = 0, b = 0, c = 0;if(root == NULL) return 0;if(root → left == NULL && root → right == NULL) return 1;a = Gradeup (root → left);b = Gradeup (root → right);c = 1 + max(a, b);return c;}The above program computes,a)The number of edges in the longest path from root to leaf in Tb)The number of nodes in the longest path from root to leaf in Tc)Number of leaves in Td)Total number of nodes in TCorrect answer is option 'B'. Can you explain this answer? for GATE 2024 is part of GATE preparation. The Question and answers have been prepared according to the GATE exam syllabus. Information about Consider the following function, to which a pointer to the root node of the binary tree T is passed.int Gradeup (Struct Node * root){int a = 0, b = 0, c = 0;if(root == NULL) return 0;if(root → left == NULL && root → right == NULL) return 1;a = Gradeup (root → left);b = Gradeup (root → right);c = 1 + max(a, b);return c;}The above program computes,a)The number of edges in the longest path from root to leaf in Tb)The number of nodes in the longest path from root to leaf in Tc)Number of leaves in Td)Total number of nodes in TCorrect answer is option 'B'. Can you explain this answer? covers all topics & solutions for GATE 2024 Exam. Find important definitions, questions, meanings, examples, exercises and tests below for Consider the following function, to which a pointer to the root node of the binary tree T is passed.int Gradeup (Struct Node * root){int a = 0, b = 0, c = 0;if(root == NULL) return 0;if(root → left == NULL && root → right == NULL) return 1;a = Gradeup (root → left);b = Gradeup (root → right);c = 1 + max(a, b);return c;}The above program computes,a)The number of edges in the longest path from root to leaf in Tb)The number of nodes in the longest path from root to leaf in Tc)Number of leaves in Td)Total number of nodes in TCorrect answer is option 'B'. Can you explain this answer?.
Solutions for Consider the following function, to which a pointer to the root node of the binary tree T is passed.int Gradeup (Struct Node * root){int a = 0, b = 0, c = 0;if(root == NULL) return 0;if(root → left == NULL && root → right == NULL) return 1;a = Gradeup (root → left);b = Gradeup (root → right);c = 1 + max(a, b);return c;}The above program computes,a)The number of edges in the longest path from root to leaf in Tb)The number of nodes in the longest path from root to leaf in Tc)Number of leaves in Td)Total number of nodes in TCorrect answer is option 'B'. Can you explain this answer? in English & in Hindi are available as part of our courses for GATE. Download more important topics, notes, lectures and mock test series for GATE Exam by signing up for free.
Here you can find the meaning of Consider the following function, to which a pointer to the root node of the binary tree T is passed.int Gradeup (Struct Node * root){int a = 0, b = 0, c = 0;if(root == NULL) return 0;if(root → left == NULL && root → right == NULL) return 1;a = Gradeup (root → left);b = Gradeup (root → right);c = 1 + max(a, b);return c;}The above program computes,a)The number of edges in the longest path from root to leaf in Tb)The number of nodes in the longest path from root to leaf in Tc)Number of leaves in Td)Total number of nodes in TCorrect answer is option 'B'. Can you explain this answer? defined & explained in the simplest way possible. Besides giving the explanation of Consider the following function, to which a pointer to the root node of the binary tree T is passed.int Gradeup (Struct Node * root){int a = 0, b = 0, c = 0;if(root == NULL) return 0;if(root → left == NULL && root → right == NULL) return 1;a = Gradeup (root → left);b = Gradeup (root → right);c = 1 + max(a, b);return c;}The above program computes,a)The number of edges in the longest path from root to leaf in Tb)The number of nodes in the longest path from root to leaf in Tc)Number of leaves in Td)Total number of nodes in TCorrect answer is option 'B'. Can you explain this answer?, a detailed solution for Consider the following function, to which a pointer to the root node of the binary tree T is passed.int Gradeup (Struct Node * root){int a = 0, b = 0, c = 0;if(root == NULL) return 0;if(root → left == NULL && root → right == NULL) return 1;a = Gradeup (root → left);b = Gradeup (root → right);c = 1 + max(a, b);return c;}The above program computes,a)The number of edges in the longest path from root to leaf in Tb)The number of nodes in the longest path from root to leaf in Tc)Number of leaves in Td)Total number of nodes in TCorrect answer is option 'B'. Can you explain this answer? has been provided alongside types of Consider the following function, to which a pointer to the root node of the binary tree T is passed.int Gradeup (Struct Node * root){int a = 0, b = 0, c = 0;if(root == NULL) return 0;if(root → left == NULL && root → right == NULL) return 1;a = Gradeup (root → left);b = Gradeup (root → right);c = 1 + max(a, b);return c;}The above program computes,a)The number of edges in the longest path from root to leaf in Tb)The number of nodes in the longest path from root to leaf in Tc)Number of leaves in Td)Total number of nodes in TCorrect answer is option 'B'. Can you explain this answer? theory, EduRev gives you an ample number of questions to practice Consider the following function, to which a pointer to the root node of the binary tree T is passed.int Gradeup (Struct Node * root){int a = 0, b = 0, c = 0;if(root == NULL) return 0;if(root → left == NULL && root → right == NULL) return 1;a = Gradeup (root → left);b = Gradeup (root → right);c = 1 + max(a, b);return c;}The above program computes,a)The number of edges in the longest path from root to leaf in Tb)The number of nodes in the longest path from root to leaf in Tc)Number of leaves in Td)Total number of nodes in TCorrect answer is option 'B'. Can you explain this answer? tests, examples and also practice GATE tests.
Explore Courses for GATE exam
Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev