How would you implement a scoreboard for an online game? Concentrate on data structures you would use.
Software Development Internship Interview Questions
205 software development internship interview questions shared by candidates
I was given a scenario in which I was a restaurant manager and I had to create a software for managing reservations. I had to tell him the use cases and also which classes would I be using and I was told to code an example entity class.
Basic data structures questions regarding array, graph and trees and a code on LinkedList
BQ1: How did you overcome challenges in the fields that you have never known before? BQ2: What benefits can you bring to the company? BQ3: Don't remmber Coding: Determine the state of the game Tick-tac-toe
Given a string s, check whether this string is a palindrome.
Merge two linked lists in numerical order
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
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.
Some question like how to design a table?
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.
Viewing 81 - 90 interview questions