EPAM Interview Questions | Real Time Interview Questions and Answers

preview_player
Показать описание
EPAM Manual Testing Interview Experience | Real Time Interview Questions and Answers
This video contains Java interview questions, Selenium interview questions, TestNG interview questions and Database interview questions that were asked as part of Interview Process.
#epaminterview Interview #EPAMAutomation #epaminterviewquestions #RDAutomationLearning
EPAM Automation Testing Interview Experience | Real Time Interview Questions and Answers
This video contains Java interview questions, Selenium interview questions, TestNG interview questions and Database interview questions, Rest API interview questions, Manual Testing interview questions that were asked as part of Fiserv Interview Process.

What if I have 50 test cases and how do I execute all those test cases?
What all Test Estimation Technique you know of? What Test estimation technique you applied in your project?
In my browser, I face security certificate violation how do I avoid that using TestNg script? What kind of desired capability you would be using it to avoid it?
How do you change your webdriver to run in remote machines?
Explain Framework Implementation in your project
What all the challenges you have faced in selenium
Draw the architecture diagram of selenium implementation in your project
Explain what SDLC model you are using in your project
How can you check whether a particular text present on a webpage? What are the predefined method in selenium for checking this

There are more than one ways to find it. We can use the getPageSource() method to fetch the full page source and then verify if the text exists there. This method returns content in the form of stri

We can also check if some text exists with the help of findElements method with xpath locator. Then we shall use the text() function to create a customized xpath. The findElements() method returns a list of elements. We shall use the size() method to verify if list size is greater than 0.
software testing,automation testing mock interview,automation testing interview questions and answers,deloitte interview experience,epam interview questions for automation testing,epam interview experience,epam interview questions,epam test automation engineer interview questions,epam test automation engineer exam pattern,epam testing interview questions,interview questions and answers,epam interview,interview experience

le or in hidden

man

What if the software is so buggy it can’t really be tested at all?
If the software is so buggy, the first thing we need to do is to report the bugs and categories them based on Severity. If the bugs are critical bugs then it severely affects schedules and indicates deeper problems in the software development process. So you need to let the manager know about the bugs with proper documentation as evidence.

what is static testing
Static Testing involves reviewing the documents to identify the defects in the early stages of SDLC. In static testing, we do code reviews, walkthroughs, peer reviews, and static analysis of a source code by using tools like StyleCop, ESLint, etc.,

What is Dynamic Testing?
Dynamic testing involves the execution of code. It validates the output with the expected outcome.
This Video is helpful for people who are looking for :

EPAM interview questions and answers
EPAM technical interview questions and answers
EPAM Telephonic Interview
EPAM online interview
EPAM java Interview Questions
EPAM interview questions
EPAM interview questions for freshers
EPAM interview india
EPAM interview experience
EPAM interview questions for experienced
EPAM interview questions for automation testing
EPAM automation testing interview questions
EPAM interview experience
EPAM interview questions and answers for freshers
EPAM interview questions geeksforgeeks
EPAM questions and answers
EPAM interview latest
EPAM testing interview questions
EPAM selenium automation testing interview questions
EPAM interview asked questions
EPAM interview call
EPAM qa automation interview questions
EPAM interview process quora
EPAM interview experience quora
EPAM mock interview
EPAM selenium interview questions
software testing,automation testing mock interview,automation testing interview questions and answers,deloitte interview experience,epam interview questions for automation testing,epam interview experience,epam interview questions,epam test automation engineer interview questions,epam test automation engineer exam pattern,epam testing interview questions
Accenture selenium interview questions for experienced
software testing,automation testing mock interview,automation testing interview questions and answers,software testing interview for experienced,manual testing interview for experienced,manual testing interview questions and answers for experienced,manual testing mock interview for experienced,testing interview questions for experienced,deloitte interview questions and answers,deloitte selenium interview questions for experienced,deloitte interview
Рекомендации по теме
Комментарии
Автор

Yes we can use hashmap also, we can take numbers as key and their count as value and then if value is ==1 then we will retrieve that key.

jnp
Автор

In hashmap the duplicate keys not allowed but duplicate values are allowed

zulminanahmed
Автор

Nice Interview Gourav I really like your and the way of answering the questions we started from Accenture Now all of us are doing good 🙂🙂🙂

aryan
Автор

sir i think u asked him to remove the duplicate elements right i mean even 6 should be removed from the new set right ?and indeed we can use it with Hashmap by taking integer value as key

subhojitbiswas
Автор

Hi sir please tell us how to handle this scenario recently asked :Q-Say your application is developed for England .now clients want to release their app in Europe. So they want the app to be developed in Spanish, German, n French. Functionality remains the same. Will you write a separate test case for each Lang? How many times will you execute the test cases for these three languages?

sweetthirty
Автор

we can put values in hasmap and just print map.keyset()

karanrathod
Автор

Hi Rakesh, IMO as per test design best practices, tests must be independent of each other. 

In this case, suppose 6th Test case might have failed due to say intermittent internet connection, and if other tests were dependent on the 6th TC, then the rest would not be executed, although the application was working fine after a while.

We usually keep all our test independent of each other. Also, we have our pipeline set up in such a way that once the execution is complete, all the failed tests are rerun automatically. Here as well independent test case design is very critical. Also during parallel tests execution.

What are your thoughts about this approach that we are following? Would love to hear your thoughts. Thanks!

AnirudhGarg
Автор

class Test {
public static void main(String[] args) {
int[] arr = {2, 2, 4, 6, 6, 5, 5};


HashMap<Integer, Boolean> map = new HashMap<>();
ArrayList<Integer> result = new ArrayList<>();


for (int num : arr) {
if (!map.containsKey(num)) {
map.put(num, true);
result.add(num);
}
}


int[] uniqueArray =


System.out.println("Array without duplicates: " +
}
}

by using HashMap i use like this for Removing the duplicates

yashwanthreddygowreddigari
Автор

Not even getting single call from past one month.

sowmya