Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Synechron Team. If you also belong to the team, you can get access from here

Synechron Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 2.7k Reviews

Filter interviews by

Synechron Automation Tester Interview Questions and Answers

Updated 12 Nov 2022

Synechron Automation Tester Interview Experiences

1 interview found

I was interviewed in Oct 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Basic java questions
  • Q2. Difference between Arraylist vs linked list interface vs abstract locators
  • Ans. 

    Arraylist vs linked list, interface vs abstract, locators

    • ArrayList and LinkedList are both used to store collections of data, but ArrayList is faster for accessing elements while LinkedList is faster for adding or removing elements.

    • Interfaces are used to define a contract for a class to implement, while abstract classes can provide some implementation and cannot be instantiated.

    • Locators are used in test automation to i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics are important and topics related to locators and synchronizations

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Dont remember i dint remember the questions

Round 2 - Coding Test 

Dont remember i dont remember the coding details

Round 3 - HR 

(2 Questions)

  • Q1. How much flexible am i
  • Q2. Ready to relocate
  • Ans. 

    Yes, I am open to relocating for the right opportunity.

    • I am willing to relocate for the right job opportunity that aligns with my career goals.

    • I am open to exploring new cities and cultures through relocation.

    • I understand the importance of being flexible and adaptable in the job market.

    • I am excited about the prospect of starting fresh in a new location.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for UST Automation Tester interview:
  • Java
  • Selenium
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Walk-in and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java oops concepts, selenium coding
Round 2 - Technical 

(1 Question)

  • Q1. Selenium test script, Rest assured questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Hashmap code logic
  • Q2. Propertiy file , xpath ,excel file code
Round 2 - Behavioral 

(2 Questions)

  • Q1. Resume based question
  • Q2. Ci cd jenkin question

Interview Preparation Tips

Interview preparation tips for other job seekers - Best of luck
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Explain about yourself
  • Q2. What is exploratory testing and adhoc testing and how you used these in your project?
  • Ans. 

    Exploratory testing is a simultaneous learning, test design, and test execution approach. Adhoc testing is an informal testing approach without any predefined test cases.

    • Exploratory testing involves exploring the software, learning about it, and designing and executing tests on the fly.

    • Adhoc testing is unplanned and unstructured testing where testers randomly test the application without any specific test cases.

    • In my p...

  • Answered by AI
  • Q3. Roles and responsibilities in your previous projects
  • Q4. Difference between mobile and web testing?
  • Ans. 

    Mobile testing focuses on apps for smartphones and tablets, while web testing focuses on websites accessed through browsers.

    • Mobile testing involves testing apps on different devices and operating systems.

    • Web testing involves testing websites on different browsers and screen sizes.

    • Mobile testing includes testing for touch gestures and device-specific features.

    • Web testing includes testing for cross-browser compatibility ...

  • Answered by AI
  • Q5. Challenges faced in your last project?

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Questions on basic java, manual testing, coding best practices, automation testing

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain project & framework, selenium question, java ques
  • Q2. Automate a login page and explain it? Synchronisation handling and exception handling
  • Ans. 

    Automate a login page using Selenium WebDriver in Java with synchronization and exception handling.

    • Use Selenium WebDriver to locate the username and password fields, enter valid credentials, and click the login button.

    • Implement explicit and implicit waits for synchronization to handle dynamic elements and page loading.

    • Use try-catch blocks for exception handling to capture and handle any errors during the login process.

    • ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Difference b/w Hashmap vs HashTable and which one is faster on basis of performance!
  • Ans. 

    HashMap allows null values and keys, while HashTable does not. HashMap is not synchronized, making it faster in performance compared to HashTable.

    • HashMap allows null values and keys, while HashTable does not.

    • HashMap is not synchronized, making it faster in performance compared to HashTable.

    • HashMap is preferred for non-thread-safe applications, while HashTable is preferred for thread-safe applications.

  • Answered by AI
  • Q2. Why Stale Element Reference Exception!
  • Ans. 

    Stale Element Reference Exception occurs when an element is no longer attached to the DOM.

    • Occurs when an element is located in the DOM, but later becomes detached or deleted

    • Common in dynamic web applications where elements are frequently changing

    • Can be resolved by re-locating the element before interacting with it

  • Answered by AI
  • Q3. Diff between Collection VS Collections
  • Ans. 

    Collection is an interface in Java that represents a group of objects, while Collections is a utility class in Java that contains static methods for operating on collections.

    • Collection is an interface in Java, while Collections is a utility class.

    • Collection is used to represent a group of objects, while Collections is used for operations on collections like sorting, searching, etc.

    • Example: List is a Collection interfac...

  • Answered by AI
  • Q4. What is POM ? Why we need !
  • Ans. 

    POM stands for Page Object Model. It is a design pattern used in test automation to create reusable and maintainable code.

    • POM helps in separating the test scripts from the web elements, making the code more organized and easier to maintain.

    • It improves code reusability by creating separate classes for each web page, containing all the elements and actions related to that page.

    • POM reduces code duplication and enhances te...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Sql Quires related question.
  • Q2. Data ware house related question
  • Q3. What is entry criteria & exit criteria
  • Ans. 

    Entry criteria and exit criteria are conditions that must be met before and after testing, respectively.

    • Entry criteria are the conditions that must be fulfilled before testing can begin

    • Exit criteria are the conditions that must be fulfilled before testing can be considered complete

    • Entry criteria can include having test data ready, test environment set up, and test cases prepared

    • Exit criteria can include all test cases ...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. April 2024 Pune Location 1.Explain BDD in details 2.Why BDD 3.Explain Framework in details, with Project 4.How to handle dynamic element 5.If in a page you see button that is enabled only when you fill 5 m...
  • Ans. 

    BDD is a software development process that encourages collaboration between developers, QA, and non-technical stakeholders.

    • BDD stands for Behavior-Driven Development

    • It focuses on defining the behavior of the system through examples in plain text

    • Uses a common language (Gherkin syntax) to describe requirements and tests

    • Helps in improving communication and understanding between team members

    • Popular BDD tools include Cucumb

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have 6+ exp please prepare scenario based question

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Consists of 7 sections

Round 2 - One-on-one 

(3 Questions)

  • Q1. Questions on Oops concets
  • Q2. About the projects
  • Q3. Asked to write code
Round 3 - HR 

(2 Questions)

  • Q1. About my Strength
  • Q2. About my Weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to cover everything in your resume

Synechron Interview FAQs

How many rounds are there in Synechron Automation Tester interview?
Synechron interview process usually has 2 rounds. The most common rounds in the Synechron interview process are Resume Shortlist and Technical.
How to prepare for Synechron Automation Tester interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Synechron. The most common topics and skills that interviewers at Synechron expect are Automation Testing, Selenium, Java, Cucumber and Automation.
What are the top questions asked in Synechron Automation Tester interview?

Some of the top questions asked at the Synechron Automation Tester interview -

  1. Difference between Arraylist vs linked list interface vs abstract locat...read more
  2. Basic java questi...read more

Tell us how to improve this page.

Synechron Automation Tester Salary
based on 19 salaries
₹3.6 L/yr - ₹12 L/yr
30% more than the average Automation Tester Salary in India
View more details

Synechron Automation Tester Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-Life balance

1.0

Salary & Benefits

1.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
Technical Lead
2.8k salaries
unlock blur

₹11.3 L/yr - ₹38.5 L/yr

Senior Associate
1.9k salaries
unlock blur

₹8 L/yr - ₹27 L/yr

Senior Software Engineer
1.5k salaries
unlock blur

₹12.4 L/yr - ₹27 L/yr

Senior Associate Technology L1
1k salaries
unlock blur

₹8.8 L/yr - ₹29 L/yr

Associate Specialist
774 salaries
unlock blur

₹12.1 L/yr - ₹40 L/yr

Explore more salaries
Compare Synechron with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview