Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Home
»
Interview
»
Technology
A binary tree with 7 nodes will have how many null branches?
6
7
8
5
Correct Answer:
8
Explanation:
A binary tree with n nodes has exactly n+1 null nodes
← Previous Question
Next Question→
More Questions from
Technology
What are the methods are available in storing sequential files?
What could be the bucket size if collision and overlapping occur at same time?
Default constructor accepts how many arguments?
Where is the reference stored?
How variable declaration in c++ differs that in c?
What is friend function?
What is the output of this program? #include using namespace std; struct sec { int a; char b; }; int main() { struct sec s ={25,50}; struct sec *ps =(struct sec *)&s; cout << ps->a << ps->b; return 0; }
What are the mandatory part to present in function pointers?
What is the output of this program ? #include using namespace std; int n(char, int); int (*p) (char, int) = n; int main() { (*p)('d', 9); p(10, 9); return 0; } int n(char c, int i) { cout << c << i; return 0; }
which keyword is used to define the macros in c++?
Discussion & Comments
No comments yet. Be the first to comment!
Name:
Comment:
Post Comment
Join Discussion
Discussion & Comments