Backend Software Engineer Interview Questions

9,093 backend software engineer interview questions shared by candidates

Implement a function - isSumPair(int[],sum) - which returns true/false if the given sum can be achieved from an addition on two integers in the given list (can appear more then one time and be positive/negative). Follow up - how to improve space complexity?
avatar

Backend Developer

Interviewed at Fiverr Inc.

4.1
Jul 18, 2020

Implement a function - isSumPair(int[],sum) - which returns true/false if the given sum can be achieved from an addition on two integers in the given list (can appear more then one time and be positive/negative). Follow up - how to improve space complexity?

Given an array with n integers, check if it could become non-decreasing by removing at most 1 element. Example: Input: [3,2,4,3], Output: false Input:[1, 4, 2, 3], Output: true Input:[4, 3, 2], Output: false Input:[1, 2, 3], Output: true
avatar

Software Engineer, Backend

Interviewed at Zalando

3.6
Jan 9, 2019

Given an array with n integers, check if it could become non-decreasing by removing at most 1 element. Example: Input: [3,2,4,3], Output: false Input:[1, 4, 2, 3], Output: true Input:[4, 3, 2], Output: false Input:[1, 2, 3], Output: true

Viewing 11 - 20 interview questions

Glassdoor has 9,093 interview questions and reports from Backend software engineer interviews. Prepare for your interview. Get hired. Love your job.