1. find seat for a family in the plane 2. find the max value in a specific column in a csv file 3. calculate transaction of a bank
C Software Developer Interview Questions
1,018 c software developer interview questions shared by candidates
remove duplicates from from linked list
.
Implement a card game in C# (initial project), where an input of a CSV is converted into a score. It must have 100% test coverage. It must meet specific initial demands. It is open book, you may use other resources. During the interview, an additional requirement of handling a CSV which contains "4-of-a-kind" scoring bonuses. This was open book as well, but limited to 30 minutes to implement.
Completely open question with no context such as "Who are you?"
what is subnet and find no. of subnets from Ip and mask
They asked where I had used multiprocessing and threading in my work.
The difference between thread and a process
Convert color from RGBA to BGRA in C
int main() { std::thread* threadHello = new std::thread(printHello); std::thread* threadThread = new std::thread(printThread); return 0; } void printHello() { std::cout << "Hello" << std::endl; } void printThread() { std::cout << "Thread" << std::endl; }
Viewing 761 - 770 interview questions