Round 1(WrittenTest):
Written Test with 4 Questions 5 marks each Question:
1. Test mobile app for navigation (example-google map).
2. Write a function to reverse a number.
3. Write probable cause and debugging scenarios - for a mobile app not getting installed in your PC.
4. Write a function to find maximum sum of a given number array. Should be continuous elements.
Eg: arr={ 03,-1,3, 10, -20, 9,10,8,-30,4,8} max-sum=27
Round 2(F2F):
1. Modify your 4th program to return maximum product (need not to be continuous): for above example it will be = 6000 (-30*-20*10)
2. You have a mp3 file which is not playing on your system, debug.
3. There is a website, working in US but not in India, why?
4. Puzzle - there is 1000bottle of juice, out of which 1 bottle has poison, you have to find how many rats you need and how much time to find given it takes 1hr to get killed after drinking...(Ans - 1hr, 10 rats, binary representation of 1000 is the solution, eatch bit will represent a rat)
Round 3 (F2F):
1. What are the type of testing you know?
2. Find all bugs for a given scenario...tricky answer you have to give-- you can not claim bug free product clear your concept in this area.
3. You have Photo uploader software works on both mobile or desktop, provide scenario to test.
Round 4 (F2F):
1. You are given two string of version no say(string1 - "45.232.1", string2 - "32.9.1.343.1"), write a function to get higher version among this two.
2. Write all possible test strings you are going to use to test this function.
Round 5 (F2F):
1. Give your detailed introduction about you and your work.
2. Number of question about my work and what i am doing, including architecture, process etc etc.
3. You are proud of which project and why?
4. If you had any fight with your manager to defend your view?
5. Google has decided to save all email attachment to save in amazon webserver using simple get and put method, you are responsible to test that end user is not getting affected due to this, test you will do? What will be strategy?
6. Write a function which will return i'th instance of a sub string in a given string. here will be function declaration
getIndexOfSubString(string OriginalString, string substringToFind, int index) //it should return index of original string.
eg: string = "abcdabcdefgabcdefgabchsdsdsbasabcdoereabcd"; substring-"abc", occurance index-3 find what is the index in main string -Ans-12 in this case.
Round 6 (F2F):
1. Give Intro.
2. Given a scenario -"2 Phone connected to LDAP server" - this is your SUT(software under test). Test.
3. Lots of question on project, leadership, values.
4. Questions on - Loadtesting, Performance Testing, Globalization, Localization, Scalability.
5. Where you want to be after 10yrs
6. Why you want to change job?
7. Why Amazon?
8. Write a function to Find if two given strings are anagram.