1- Problem solving tests (scored better than 90%) 2- IQ test (scored better than 55% of candidates, bad IQ test too)
Senior C Software Developer Interview Questions
138 senior c software developer interview questions shared by candidates
What is smart pointer, and explain the benefit of smart pointer? Explain about Stack and Heap memory allocation Explain about protected, private and public variable in diffence class' permission Explain about derived class What is function overloading and function overriding? How important is constructor and desctructor? Give an example how to function call by reference and call by value 3 Algorithm question live coding easy level
OOP principles. C++ keywords. Big O complexity. 2 coding test
Design a cache algorithm with O(1) operations here and now in about 50 minutes.
Implement a system to publish pseudo-random position messages using zeromq and protobuf.
Knowledge on advanced C++ and DS
The lead described what they would be working on and asked what caught my interest
How to find the minimum of a function, given the range of an input number.
C++ Basics, Questions on syntax
Given an integer array and another number, find a pair whose sum is given number. Best solution is to use unordered map <int, int> then use this logic map[sum - a[i]] = a[i]; // O(n) then, for each a[i], if map[a[i]] present then that will be the answer. // O(n)
Viewing 121 - 130 interview questions