Given an arbitrary list of integers find the statistical mode returning them in a list.
Software Engineer Interviews
Software Engineer Interview Questions
Software engineers write programs to design and develop computer software. Interviews are highly technical, so come ready to work through coding problems and math brainteasers. The specific questions you are asked will depend on what type of programming position you are looking for. Try researching a specific software discipline such as web development, application development, or system development.
Top Software Engineer Interview Questions & How to Answer
Question #1: How would you describe your programming task process?
Question #2: Which programming languages do you know and prefer?
Question 3: What is an example of a successful project that you completed?
419,495 software engineer interview questions shared by candidates
1. find all the combinations of a string in lowercase and uppercase. For example, string "ab" -> "ab", "Ab", "aB", "AB". So, you will have 2^n (n = number of chars in the string) output strings. The goal is for you to test each of these string and see if it match a hidden string. 2. Implement a simple regex parser which, given a string and a pattern, returns a boolean indicating whether the input matches the pattern. By simple, we mean that the regex can only contain special character: * (star), . (dot), + (plus). The star means what you'd expect, that there will be zero or more of previous character in that place in the pattern. The dot means any character for that position. The plus means one or more of previous character in that place in the pattern.
You are given the start node of a linked list. Now you have to insert, delete, and search any given node in O(1) time complexity.
Consider, you are participating in an Olympic race, and after running for a while you crossed the person in the third position, now which position will you be in?
what is int in .....int x =1;?
Coding test question is same as previous exam ! I dont know why they dont change their question . First question was about center aligning string from a plain string Second question was about binary hierarchical tree that can make parent child relationship. If you can solve first problem ,but you cant write code for second problem they will not hire you . Make sure you can solve second problem . The question is same ,so you need to find answers from Ex- Enosis Employee at any how . A continious same tree problem can't judge you overall! Be patient, try another company if you cant hire by them One more tipis: They take coding interview in C# language with Visual Studio(Not Visual Studio Code). You need to complete a method function in class . You need to pass value to another method to show output .
You have a rectangular shape pie with some rectangular piece taken out. How would you cut it on two equivalent pieces by making a single knife cut?
return Last 3rd consonant character in a string
what is the color of the wall behind you?
Use a single array to implement 3 stacks.
Viewing 2061 - 2070 interview questions