1 or 2 Technical questions that depend on what you've written in your resume. General behavioural questions. Do you mind working something that may be repetitive?
Internship Engineer Interview Questions
23,003 internship engineer interview questions shared by candidates
Interview question was given a grid of 9x9 sudoku with numbers filled in already, you have to check if it's a valid suoku.
Describe an algorithm that will take in a large input of English words that may contain duplicate. Then return only unique words from the input.
Given an array of character you must delete all the characters that got repeated 3 or more times consecutively and add '0' in the end of the array for every deleted character Example: "aabbbbcdddee" -> "aacee0000000" "22221" ->"00001 " The problem must be solved in: O(1) memory O(n) time And you can't overwrite a cell in the array more than once.
Given a value in a binary search tree, write an algorithm that returns the next greatest value. The tree is assumed to contain the given value.
what was a technical difficulty and how have you overcome it.
Behavioral: “Describe a time you were given conflicting information on about a project and you had to figure out what to do?“ “What is the worst bug in a program you have had to solve?” “What something that you used to have to do very repetitively in code but now have figured out a better way to go about it?” “Describe a time you had to give negative feedback and how was it taken?” “In context of new technology, describe a time you worked on something nights and weekends to implement or learn about something new.” (Show your interest in keeping up with new technology/code “Describe a time you tried to teach someone something but they were just not getting it”
Dynamic programming questions
Given two strings, find if they differ by exactly two letters.
How would you count the number of words in a string consisting of uneven number of spaces between words( not dictionary words)? With and without library functions.
Viewing 1 - 10 interview questions