Data structure questions. Arrays pointers linked lists, graphs, heaps, hashing trees AVL B-trees, etc
Software Development Engineer Test Interview Questions
5,413 software development engineer test interview questions shared by candidates
Easy - Medium Leetcode coding problems
Tell me about a time you had to stand up to your management chain.
Implement an insert method for a sorted circular linked list
Basic questions from internet
Write a program to find a missing number in 100gb of numbers in constant time.
If you have something in your resume that is out of the blue, the question will be definitely on that.
More behavioral questions are there.
Deep dive into each project on resume, checking design decisions such as user authentication.
Question 1: Setup: Assume primitive Facebook. FB has Members. class Member { String name; String email; List<Member> friends; } Question A: Code printSocialGraph(Member m). Direct friends of m are Level 1 friends. Friends of friends are level 2 friends.....and so on Print level 1 friends first. Then print level 2 friends....and so on Enumerate test cases to verify the implementation is correct. Question 2: Write a function that converts an int into its alpha-numeric equivalent represented as a null terminated string. The function should accept an int as input and return a string as output. For instance, calling the function with an int value of 324 would return a null terminated string containing "324". Ensure that your function checks for appropriate boundary conditions and edge cases. Assume you cannot use any standard libraries (for example, no itoa or sprintf). Write out test cases to verify your code is working correctly. Question 3: Let's say we're developing a vector graphics application. It will allow the user to create lines, rectangles, circles, text, etc. and manipulate them independently - move them, re-size them, etc. Design an object model for this application.
Viewing 1591 - 1600 interview questions