Got rejected in first round itself. Round 1:- Problem solving round You should be strong in DSA. Q1. Find the center element in linked list Q2. Explain HashMap Programs:- All these program questions they asked are from GeeksforGeeks P1:- A number will be given example 74. you have to find the prime numbers which produces that number when you add them. 3+71 = 74. P2:-Given an array and a value, find if there is a triplet in array whose sum is equal to the given value. If there is such a triplet present in array, then print the triplet and return true. Else return false. Input: array = {12, 3, 4, 1, 6, 9}, sum = 24; Output: 12, 3, 9 Explanation: There is a triplet (12, 3 and 9) present in the array whose sum is 24. Input: array = {1, 2, 3, 4, 5}, sum = 9 Output: 5, 3, 1 Explanation: There is a triplet (5, 3 and 1) present in the array whose sum is 9. P3:Given an array of distinct integers and a sum value. Find count of triplets with sum smaller than given sum value. The expected Time Complexity is O(n2). Input : arr[] = {-2, 0, 1, 3} sum = 2. Output : 2 Explanation : Below are triplets with sum less than 2 (-2, 0, 1) and (-2, 0, 3) Input : arr[] = {5, 1, 3, 4, 7} sum = 12. Output : 4 Explanation : Below are triplets with sum less than 12 (1, 3, 4), (1, 3, 5), (1, 3, 7) and (1, 4, 5)
Sdet Interview Questions
4,403 sdet interview questions shared by candidates
The technical interview was easy:- 1. Questions about java 2. Questions about BST AND DFS 3. Questions about my project 4. Questions about certification and a brief discussion on that topic. After Clearing the HR I was informed about the HR interview by the company 1. General Questions about the company 2. General Question about myself 3. Questions about my project and debates experience. 4. Questions about certification (HR type questions about the certificate grade etc)
Questions from leed code easy and medium . Data structure and algorithm
What's the folder structure in Maven
1. Hackerrank test 2. 3 rounds of technical interview Just a request if you have taken these many rounds of interview and have asked to share documents and said 'congratulations' please bother to update the person that you are not going ahead with him/her Anybody spends a lot of time, effort and hope in these procedures. Please be little sensitive
SQL QUERIES and 2 cosing questions
Questions around testing process and SDLC
2. Reverse a sinlgy linked list, without any use of built in collections or any dependencies.(Implement linked list on your own. do not use java.util package methods) Input : 9 -> 4 -> 2 -> 8 Ouput : 8 -> 2 -> 4 -> 9 3. Find the given two strings are anagrams. isAnagram("apple", "orange"); -> false isAnagram("worth", "throw"); -> true isAnagram("foo", "fun"); -> false 1.[7,1,4,2,0,5,2,9,3] Impl a quick sorting algorithm and explain its space and time complexities in detail
Can you describe CI CD process
Programming questions - Addition of two big integer numbers without carryover. Programs based on Arrays, Collections. Microservices testing. Backend testing. Tensorflow.
Viewing 3491 - 3500 interview questions