A DSA question related to strings.
Sdet Interview Questions
4,403 sdet interview questions shared by candidates
Find the common elements in two arrays
Explain the Implementation of hashmap in java
Coding test to automate logging in to their site.
postman,pom,selenium architecture (which she doesn't understand herself)
- Design a Automation framework for a API
1 Write a framework for API automation using rest-assured 2 How does Appium work 3 How does Selenium work 4 How to handle Web-view in Appium 5 Can UI Automator be used in scripting 6 How to handle scrolling in Appium 7 How to handle toast messages in Appium 8 How to handle app notifications in Appium 9 how to handle alerts in Selenium 10 how to perform drag drop in selenium 11 can multiple TestNG XML files run from a single XML file 12 what is the scope in maven dependencies 13 How many scopes are there 14 how to run TestNG file from the command line 15 have you used TestNG libraries in scripts 16 how to run some test cases as sanity and some as regression 17 What is before test and before method 18 what is POM 19 Have you used GRID infra in App testing 20 If I want to run the TestNG file from the command line, do I need to modify the framework 21 What is distributed load testing 22 where do you get perf data from 23 How to login to a remote server 24 How to find a process and kill it 25 What is CI/CD pipeline 26 Have you knowledge about AWS console
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)
Questions from leed code easy and medium . Data structure and algorithm
sql, core java, selenium, manual
Viewing 3481 - 3490 interview questions