9 marbles riddle
Software Development Internship Interview Questions
212 software development internship interview questions shared by candidates
Some question like how to design a table?
Asked me to transpose a matrix. I had no idea what that meant at the time, but I looked it up later and it isn't very difficult.
Most unexpected was the last interview of the day. It seemed as though my interviewer had no plan at all for what to ask and just let questions develop so they took me off guard.
During the face to face interview it was very informal but in the majority it was a technical interview, wasnt once asked anything like 'Tell me a bit about yourself'. The closest I came to this question was, tell me about your computer, which I was able to answer like a breeze because I finished building it 1 month prior. During the 1 hour interview, we barely sat down. In the room was myself, the team leader and what I believe to be a developer currently on the team. We were all in a small conference room and I was being asked questions and being asked to write small code samples on a whiteboard. The questions elaborated upon my technical evaluation form which I completed at the start of the process. Going through my pieces of code, how could I improve it etc. The interview also had some abstract questions, I believe these were to assess my thought processes.
Given three strings s1, s2 and s3. Write a function that checks whether s3 is an interleaving of s1 and s2. s3 is said to be interleaving s1 and s2, if it contains all and only characters of s1 and s2 and order of all characters in individual strings is preserved. Input: s1 = “AB”, s2 = “C”, s3 = “ACB”, Output: true s3 has all characters of s1 and s2 and retains order of characters of s1. Input: s1 = “XXY”, s2 = “XXZ”, s3 = “XXXXZY”, Output: true The string BBAZXY has all characters of the other two strings and in the same order. Input: s1 = “YX”, s2 = “X”, s3 = “XXY” Output: false XXY is not interleaved of YX and X. The strings that can be formed are YXX and XYX
Basic interview questions as well as more specific questions about knowledge in excel
About yourself and your last experience related to position.
1. Given 2 strings, find if the 2nd string can be formed using the 1st string by applying at most one conversion at a time. In a conversion, you have to convert all occurrences of one Latin alphabet to another.
The project I did during my school time
Viewing 91 - 100 interview questions