Answer Posted / nisha nair
A data structure called heap is a binary tree with keys
assigned to its nodes provided it satisfies two
requirements:
1. Tree shape requirement.
2. Parental domainance requirement.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is pre-emptive data structure and explain it with example?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
Why is C language being considered a middle level language?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What is a c token and types of c tokens?
Write a program to reverse a given number in c language?
What is a scope resolution operator in c?
Can you mix old-style and new-style function syntax?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Why should I prototype a function?
What is data structure in c and its types?
program to convert a integer to string in c language'
How can I use a preprocessorif expression to ?
Explain low-order bytes.
Who is the founder of c language?