Write a program to count no of words in a string?
Intern Interview Questions
248,963 intern interview questions shared by candidates
DSA question: I was given a list of elements to begin with. My task was to insert the elements in a binary search tree such that the height of the tree remains minimum.
If you were given a large amount of tasks and a short amount of time, how would you go about completing them
Nothing was difficult. They asked really basic probability questions. The one that was the most difficult: If the probability of seeing a shooting star over the course of an hour is .64, what is the probability of seeing a shooting star over the course of a half hour?
the difference between process and thread
Languages spoken
How would you reverse a string?
Given a binary tree with integer values at each node, verify that it is a binary search tree.
void fun1(struct node* head) { if(head == NULL) return; fun1(head->next); printf("%d ", head->data); }
Regarding digital advertising and business model
Viewing 1171 - 1180 interview questions