#1: We have a linked list, but it is special in that it can have pointers down, as well as next. Any node can have an arbitrary number of links down as well as across. Write a function that will "flatten" this linked list so that it does not have any down pointers, but all elements remain in order.
Software Developer 4 Interview Questions
96,240 software developer 4 interview questions shared by candidates
How C allocate a piece of free memory?
Why we need exception handling?
There is a Class A, which has some instance variables. One thread needs to do read and write on that variable, while another thread should not be able to access it at all. Asked me to design such a class.
Tell me about the algorithms and data structures you used to solve your problem.
What does a guy buy after painting his house in the hardware store which cost $1 for one, and $3 for 200.
What happens when you type an address into your browser and hit enter?
Given this code, what is the output? unsint8 x = 0; While( x < 255) { x = x + 2; Printf(x); }
Is Java pass by reference or pass by value?
Given a student's first and last name, give an SQL query to get that student's information from the table.
Viewing 861 - 870 interview questions