Nagarro Software Gurgaon Noida Bangalore & Pune Interview Questions: The most important part of preparing for an interview is practice. Knowing what job interview questions you might be asked is essential – that way, you can craft your answers well in advance, and feel confident in your responses when the pressure is on.
Wouldn’t it be great if you knew exactly what interview questions are asked for the Test Engineer, QA for Manual & Automation Positions, We can’t read minds, unfortunately, but we’ll give you the next best thing: a list of previously asked Nagarro interview questions and answers.
Post On: | Nagarro Interview Questions |
Post Type: | Interview Questions |
Published On: | www.softwaretestingo.com |
Applicable For: | Freshers & Experience |
Get Updates: | Software Testingo Telegram Group |
We have tried to share some of the manual testing interview questions, selenium interview questions & testing interview questions also, but we are recommending spending some quality time to get comfortable with what might be asked when you go for the Nagarro interview.
Still, we need you are love and support to make this platform more helpful to our fellow testers. So it would be great if you will share your recent interview questions and experience with us. You Can share those details by connecting us at softwaretestingo.com@gmail.com.
Nagarro Gurgaon Software Company Interview Questions
Company Location: Gurgaon, India
Updated on: 28.10.2021
Below are the Questions are asked in my 3 rounds of technical interviews:
- What are the different types of annotations used in TestNG? How to use the @Beforesuite and @AfterSuite annotations in TestNG?
- How do we achieve parallel execution in TestNG?
- What are the different arguments are passed along with @Test annotation in TestNG?
- How do we include and exclude the groups in the TestNG xml file?
- How to use the dataprovider in TestNG with an example?
- How do u identify the objects? In what scenarios these locators are used? Ex: name, id, xpath, linktext, csslocator, Partial linktext
- Difference between Datadriven and Hybrid Framework?
Java:
- What is Abstract class? Where we will use Abstract Class in java?
- What is an interface? Difference between Abstract class and interface?
- Difference between normal methods and Abstract methods in Java?
- Why we are using constructors in java?
- Difference between overloading and overriding?
- Explain the “static” keyword in java and its usage?
- Why multiple inheritance is not supported in java?
- Difference between “extend” and “implement” in java?
- Explain the access specifiers public, Private, protected, and default in java with their visibility and security?
- What is the difference between primitive and derived data types?
- Difference between final, finally and finalize methods in java?
- How do we handle the exceptions in java? and Exception hierarchy in java?
- Why we are using finally block in java?
- Can we handle the exception with try and without catch block?
- Write a java program for whether the given string is palindrome or not?
- Difference between String constant and String non-constant pools?
- Give the example for String immutable code?
- Difference between “==” and “equals()” in String class?
- How to compare the two strings in java?
- How do sort the elements in the Array? Syntax of the Array?
- What is Collections Framework in Java?
- What is the difference between Array and ArrayList in java? Give the examples for each?
- What is Set in the Collections? How to move from one element to another element in the Set?
- Usage of Iterator interface?
Nagarro Software Gurgaon Interview Questions
Company Name: Nagarro
Company Location: Gurgaon, India
Position: SDET Role
Interview Dated: May 8, 2021
Updated on: 27.06.2021
1st round (May 04, 2021)
- IQ Test – 30 questions 20 minutes – approx
2nd round (May 05, 2021)
- MCQ Test – 50 questions 45 Minutes (Technical)
3rd round (May 07, 2021) – Shani Garg Interview – Technical round 1
- How to handle alerts?
Ans: driver.switchTo().alert() — >> .accept(); | dismiss(); | getText(); | sendKeys(“Message”);, - How to take screenshots?
Ans:
File screenshot = ((TakesScreenshot) driver).getScreenshotAs(OutputType.FILE); FileUtils.copyFile(screenshot, new File("".//screenshot/"" + fileName));
- What is actions class? Write the syntax for it.
Ans:
WebElement link = driver.findElement(By.xpath("//button[text()='Double-Click Me To See Alert']")); Actions action = new Actions(driver); action.doubleClick(link).perform(); doubleClick() | dragAndDrop() | contextClick()
- How to capture broken links?
- What are the different types of waits? Can you write syntax for Implicit and Explicit wait?
Ans:
driver.manage().timeouts().implicitlyWait(implicitWait, TimeUnit.SECONDS); WebDriverWait explicitWait = new WebDriverWait(driver, 10); explicitWait.until( ExpectedConditions.visibilityOfElementLocated(By.xpath("//span[contains(text(),'applied ..!')]"))); Wait<WebDriver> fluentWait = new FluentWait<WebDriver>(driver).withTimeout(Duration.ofSeconds(30)) .pollingEvery(Duration.ofSeconds(3)).ignoring(NoSuchElementException.class);"
Scripts execution in HEADLESS mode? How many ways it is possible?
Ans:
ChromeOptions options = new ChromeOptions(); options.addArguments(""headless""); WebDriverManager.chromedriver().setup(); driver = new ChromeDriver(options);
Nagarro Software Noida Interview Questions
Company Name: Nagarro
Company Location: Noida, India
Position: SDET Role
Interview Dated: May 8, 2021
Updated on: 27.06.2021
IQ Test ( 1st round (Feb 23, 2021) – Trenauli )
- 12 minutes – 50 questions
- Logical reasoning aptitude and English
2nd round (Feb 23, 2021) – Trenauli
- MCQ Test
Selenium WebDriver Coding Round
- Disable plugins for Chrome using Selenium WebDriver
- Selenium components
- Selenium Grid – Default port, Hub and Node, the command to start
- SQL queries call using Java – ADO
- Types of Testing, Models
Nagarro Bangalore Software Interview Questions
Company Name: Nagarro
Company Location: Bangalore, India
Updated on: 17.03.2020
- Explain in detail the framework that you are using in your project?
- How will you rate yourself in Java?
- Explain Map and explain each type in detail?
- What are your project strategies?
- what are the challenges you faced in your project?
- Where you will store your test data.
- Explain your roles and responsibilities in your current project?
- Explain how effective is agile methodology in your project?
- How you will execute your code?
- What are your daily activities in your Project?
- What is a build tool?
- Are you working in End to End or only a part of selenium?
- In selenium how will you handle multiple browsers?
- At the end of the day, how will you send your report to your Project manager?
Nagarro Pune Interview Questions
Company Location: Pune, India
Updated on: 02.06.2020
Round 1: Aptitude test: 2 papers 40+6 questions
- 20 question was on reasoning (Moderate)
- 20+6 was maths questions (difficulty level was good)
Round 2: Telephonic round on the spot
- Tell me about yourself?
- Define the Automation framework?
- Difference between High severity and low severity with an example, what is important from a QA point of view?
- There one form where the username and password and remember-me field are given. Write the test scenarios?
- Around 5-6 more questions?
Round 3 :
- Automation architecture?
- Difference between class and interface?
- What is a static keyword?
- What are the different access modifiers, and what are their uses?
- Difference between interface and abstract?
- Write a program for a given login scenario using defined automation architecture?
- Take an array, store the numbers, and print the numbers using ArrayList?
Rounds 4:
- Solve the aptitude questions(2 – 3), and she wanted to see the approach?
- Make a 3*3 cube where you need to fill the numbers using 1-9, rows, columns, and the diagonal sum should be equal to 15
- One more puzzle?
- Write a test scenario for the download functionality of a song’s website?
- Difference between cache and cookies?
Coding Round: It consists of 4 questions.
- Input an array and then print the repeating characters??
Example:
Input:1,3,23,11,44,3,23,2,3.
Output:3,23 - Input an array and print the second minimum in an array??
Example
Input:34,45,21,12,54,67,15
Output:15 - Find the longest palendrom in a string?
Example
Input: abfgerccdedccfgfer
Output: ccdedcc - Input a number and then find the next higher number such that both the number (inputted and the next higher number) in binary representation contains an equal number of os ones.
Example:
Input:3(0000000000000011)
Output:5(0000000000000101)
Technical Interview:
- An array contains 6 different numbers, only 1 number is repeated 5 times. So now total 10 numbers in an array, Find that duplicate number in 2 steps only?
- Write a program to print elements of a linked list in reverse order by using the same single linked list?
- Questions on improving the complexity of questions given in the coding round.
- Html tags & ct their no of occurrence of each tag & also check whether it correct or not?
- Few questions were on database tables and SQL queries?
In This Post, we have shared the interview questions of Nagarro Software of Various locations like:
- Nagarro Software Gurgaon Interview Questions
- Nagarro Software Noida Interview Questions
- Nagarro Software Bangalore Interview Questions
- Nagarro Software Pune Interview Questions
But still, we are getting so many requests for different topics like Nagarro software glassdoor details and the Nagarro company careers details for getting the information like salary or salaries.
Leave a Reply