In the interviews following the initial screen and take-home assessment I was asked about prior experience, agile expertise & collaboration, as well as a technical problem that involved manipulating CSV data using Python.
Software Developer Iii Interview Questions
1,276 software developer iii interview questions shared by candidates
Given an english dictionary and an input word, create an algorithm that outputs all of the possible anograms
How to sync user shopping cart over multiple data centers.
Given an array A of integers and a key K, count the number of items in A which starts & ends with the key. ie. suppose the array contains 25425 2134 25456225 2525 2465 and the key is 25, then the output should be 3 (since 25425 25456225 2525 begins & ends with the key K). Second question was to print ';' (semicolon) without using it. Third was to check for brackets in the given expression.
Design an logging based alert system which sends emails on finding the matching patterns in configuration file. config file: pattern 1, frequency 1, emails to notify pattern 2, frequency 2, emails to notify the system should be scalable, highly available, fast and highly configurable.
Implement a Queue class: starting empty, it receives a list of jobs that return Promises, and has a capacity. Add jobs to the Queue until it is full. Once the jobs resolve, remove them and add more, if any. As a bonus, handle errors with a maximum number of retries.
What is your exposure to DO-178B?
Asked about something I was most proud of.
Round 1. Tweaked version of this - https://www.geeksforgeeks.org/problems/bottom-view-of-binary-tree/1 Given a tree, find bottom view - 1 / \ 3 2 / \ / \ 4 5 6 7 Expected output - 4 3 5 6 2 7 (Not 4 3 6 2 7)
What are some Hibernate annotations?
Viewing 61 - 70 interview questions