Given a Binary Tree, we know it's complete, but we don't know how many nodes are in the tree. Can you insert another node in less than O(n) complexity? Was able to do in (logn)^2.
Softwareentwickler Interview Questions
Softwareentwickler Interview Questions
Softwareentwickler sind besonders gefragt und diese Rolle kann auch sehr gute Verdienstmöglichkeiten und hohe Arbeitszufriedenheit bieten. Bei einem Vorstellungsgespräch für Softwareentwickler werden Ihnen wahrscheinlich Fragen zu Ihren Hard und Soft Skills sowie zum effizienten Projektmanagement gestellt.
Typische Bewerbungsfragen als Softwareentwickler (m/w/d) und wie Sie diese beantworten
Frage 1: Welche Art von Softwareentwicklung betreiben Sie derzeit?
Frage 2: Beschreiben Sie ein Entwicklungsproblem, das Sie hatten, und wie Sie es behoben haben.
Frage 3: Wie gehen Sie mit dem QA-Prozess um?
513,177 softwareentwickler interview questions shared by candidates
Write a regular expression pattern to match "525", "528", and "530" to "599" exclusively.
Given an arbitrary list of integers find the statistical mode returning them in a list.
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.
They asked about some software that I had never heard of that they used in their deployment process.
how do you write "2008" at the console using any language without any ?number in your code
Can you print the following pattern using a C program? 1 1 2 1 2 3 1 2 3 4
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;?
Viewing 2411 - 2420 interview questions