C Softwareentwickler Interview Questions

1,011 c softwareentwickler interview questions shared by candidates

(technical interview) You have two arrays: A and B. A contains ints and B has pairs: (element from A, the number of elements that are larger than that element and to the right of it in A). for example: A = [4,3,5] B = [(5,0), (3,1), (4,1)] Given array B, recreate array A
avatar

Junior C++ Software Developer

Interviewed at Infinidat

3.9
Nov 8, 2020

(technical interview) You have two arrays: A and B. A contains ints and B has pairs: (element from A, the number of elements that are larger than that element and to the right of it in A). for example: A = [4,3,5] B = [(5,0), (3,1), (4,1)] Given array B, recreate array A

Some questions and practical examples were legitimate, like multithreading behavior leading to zombie processes. Some were rather synthetic or just examples of bad code that you should never see anyway, like what would this do: int i = 5; int x =10; i+++++j;
avatar

Middle Software Developer C++

Interviewed at Innowise Group

3.8
Aug 20, 2025

Some questions and practical examples were legitimate, like multithreading behavior leading to zombie processes. Some were rather synthetic or just examples of bad code that you should never see anyway, like what would this do: int i = 5; int x =10; i+++++j;

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)
Feb 27, 2018

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 951 - 960 interview questions

Glassdoor has 1,011 interview questions and reports from C softwareentwickler interviews. Prepare for your interview. Get hired. Love your job.