Explain the ternary tree?



Explain the ternary tree?..

Answer / Lalit Kumar Gautam

A ternary tree is a multiway tree where each node has three children. It is used to solve problems that require a larger number of branches than a binary tree can provide, such as certain kinds of search and sorting algorithms.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

hi any body pls give me company name interview conduct "c" language only

1 Answers  


Define function ?Explain about arguments?

2 Answers   Geometric Software, Infosys,


# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }

5 Answers  


What is #ifdef ? What is its application?

1 Answers   TCS,


How do you define a function?

1 Answers  


Explain how many levels deep can include files be nested?

1 Answers  


What is the difference between ++a and a++?

1 Answers  


Give the rules for variable declaration?

1 Answers  


#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }

1 Answers  


I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...

1 Answers  


errors in computer programmes are called

1 Answers   NET,


2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }

1 Answers   Wipro,


Categories