Implement an insert method for a sorted circular linked list
Test Development Engineer Interview Questions
5,610 test development engineer interview questions shared by candidates
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.
On site interviews are not that difficult, but they ask you or they expect from you the definitions from the book. Working for few years, you can explain them but not all things that you study are used and this should be understood.
Did you have experience in database administration
Generate all permutation of a given string: string: abc Output: abc acb bac bca cab cba
Viewing 1651 - 1660 interview questions