Mostly C program based questions will be helpful for this interview process
Software Engineer Interview Questions
466,972 software engineer interview questions shared by candidates
hackerrank easy, basic java and web dev knowledge, sql
Given a dictionary of words and another word, return all the words in the dictionary that are anagrams of the given word
Given a two dimensional array of positive integers, write an algorithm that will find any initial indices that have a value of 0 and replace their entire row and column with zeroes.
If you have a sorted array that is initialized with size 100, the values stored would be for example 1, 2, 3,.... ect. Describe an algorithm that would check if there is a duplicate number and if so return it.
Came up with a program to take a string and printed the characters that appear more than once in the exact order as they are in the original string.
Given a tree where every right node is a leaf, meaning that it can only extend on the left side, invert it such that the leftmost node is now the root, and all of the previous left nodes are now on the right side. The former right nodes will be on the left side.
Given an array with duplicate elements give an algorithm to get the count of distinct elements in the array
Asked a question to determine the sum of an array of integers. Recursive problem.
Write a program that takes an integer and prints out all ways to multiply smaller integers that equal the original number, without repeating sets of factors. In other words, if your output contains 4 * 3, you should not print out 3 * 4 again as that would be a repeating set. Note that this is not asking for prime factorization only. Also, you can assume that the input integers are reasonable in size; correctness is more important than efficiency. PrintFactors(12) 12 * 1 6 * 2 4 * 3 3 * 2 * 2
Viewing 1181 - 1190 interview questions