Write a buzz-fizz function (counts from 1-100, if number is divisible by 5 it prints buzz, if divisible by 3 prints fizz, if divisible by 15 it prints buzzfizz).
Intern Software Engineer Interview Questions
12,223 intern software engineer interview questions shared by candidates
Given an array of integers, determine how many sequences there are of numbers that increase to a point then decrease, with at least two on each side of the max value (example: 1, 4, 5, 3, 1)
Was asked to write a program to print 3 for all numbers less than 100 divisible by 3, 5 for all numbers less than 100 divisible by 5 and 3 and 5 for all numbers less than 100 divisible by both 3 and 5.
Given two sorted arrays and a number k, find the kth largest number in the union of the two arrays. Do it in place and in O(log n)
Find whether a string is a palindrome.
Find if there is a loop in a link list
The word problem posed by the interviewer was exceedingly simple; list all prime numbers between two positive integers, m and n. This was the easiest question I have been asked by a recruiter/interviewer so far.
What is the Software Development Life Cycle (SDLC)?
Create an application for android or iOS
Find an element on an array. Implement iterative version of Fibonacci function.
Viewing 541 - 550 interview questions