Upload Button Icon Add office photos
Engaged Employer

i

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

e-Zest Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

e-Zest Senior Automation Test Engineer Interview Questions, Process, and Tips

Updated 15 Jun 2024

e-Zest Senior Automation Test Engineer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(6 Questions)

  • Q1. Explain your roles and responsibilities in day to day activities carried out in Agile project model?
  • Q2. Explain difference between smoke, sanity and regression testing?
  • Ans. 

    Smoke testing is a quick test to check if the build is stable, sanity testing is a subset of regression testing focusing on specific areas, and regression testing is a comprehensive test to ensure no new bugs are introduced.

    • Smoke testing is a preliminary test to check if the critical functionalities work without major issues after a build is deployed.

    • Sanity testing is a subset of regression testing that focuses on spec...

  • Answered by AI
  • Q3. Explain the status codes used in API testing?
  • Ans. 

    Status codes in API testing indicate the outcome of the request made to the API.

    • 200 - OK: Request was successful

    • 201 - Created: Request resulted in a new resource being created

    • 400 - Bad Request: Request was invalid

    • 401 - Unauthorized: Request requires authentication

    • 404 - Not Found: Resource not found

    • 500 - Internal Server Error: Server encountered an error

  • Answered by AI
  • Q4. What are the types of Authentication and authorization used in API testing?
  • Ans. 

    Types of Authentication and authorization in API testing

    • Basic Authentication

    • OAuth

    • API Keys

    • JWT (JSON Web Tokens)

    • Digest Authentication

  • Answered by AI
  • Q5. Write SQL queries to fetch some records based on some conditions
  • Ans. 

    Use SQL queries to fetch records based on conditions

    • Use SELECT statement to fetch records

    • Add WHERE clause to specify conditions

    • Use operators like =, >, <, etc. to define conditions

    • Consider using JOIN for fetching records from multiple tables

  • Answered by AI
  • Q6. Scenario based questions on Testing

Interview Preparation Tips

Topics to prepare for e-Zest Senior Automation Test Engineer interview:
  • Functional Testing
  • Test Scenarios
  • API Testing
  • SQL
Interview preparation tips for other job seekers - Multiple rescheduling interview timings
Be patient
Speak with confidence and good communication skills
Prepare on scenario based questions
API Testing
SQL

Skills evaluated in this interview

Senior Automation Test Engineer Jobs at e-Zest

View all

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. 1. My interview it has been scheduled by one consultancy. I interviewed with ITC Infotech on June 9th 2018.
  • Q2. Interviewer was very cool and supportive guy. I maximum tried gave an answers for below questions.. 1. Interviewer asked me about SD. 2. About roles and responsibilities as a Senior automation test enginee...
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Reverse a string, find the repetition of characters, Fibonacci series, selenium web elements handling. Organizational workflows.

Round 2 - Assignment 

Selenium web automation for a web demo page.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic preparation is going to be good. But, practice logic building that wins game always.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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. Explain about Agile process?
  • Ans. 

    Agile process is a software development methodology that promotes adaptive planning, evolutionary development, early delivery, and continuous improvement.

    • Iterative and incremental development

    • Cross-functional teams

    • Regular feedback and adaptation

    • Customer collaboration

    • Time-boxed iterations (sprints)

    • Continuous integration and testing

  • Answered by AI
  • Q2. What is spark? what is legacy defect? find the xpath of given example how will you run the 1 test case multiple times in testng? if the some task will take 8 hours but your manager said that you should com...
  • Ans. 

    Spark is a fast and general-purpose cluster computing system. Legacy defect refers to a known issue in older versions of software. XPath is a way to navigate XML documents. TestNG allows running test cases multiple times. Approach to completing a task in less time involves prioritizing and optimizing.

    • Spark is a cluster computing system for big data processing.

    • Legacy defect is a known issue in older versions of software...

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. OOPs concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself.

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. More questions on which topic
  • Q2. Focus on c#, MVC and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well technically and scenario based questions also prepared.

I applied via Naukri.com and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. OOPS, collection, database
  • Q2. Method overload and overrding, interface, abstract class, one small program on string manipulation,database queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Have your core java basics revised and keep sound knowledge of your project

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Online test of 90 minutes at 5:30 pm

  • Q1. What are the basic concepts of Object-Oriented Programming, and how do they relate to data structures and algorithms?
  • Ans. 

    Object-Oriented Programming concepts include encapsulation, inheritance, and polymorphism, which are used to organize and manipulate data in data structures and algorithms.

    • Encapsulation: Bundling data and methods that operate on the data together in a single unit (object). Example: a class representing a car with properties like color and methods like drive().

    • Inheritance: Allowing a class to inherit properties and meth...

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Online coding interview of 45 minutes at 6:10PM.

  • Q1. 

    String Compression Problem Statement

    Implement a program that performs basic string compression. When a character is consecutively repeated more than once, replace the consecutive duplicates with the coun...

  • Ans. 

    Implement a program to compress a string by replacing consecutive duplicates with the count of repetitions.

    • Iterate through the string and keep track of consecutive characters and their counts.

    • Replace consecutive duplicates with the count of repetitions.

    • Handle the case where the count of repetitions is greater than 1 and less than or equal to 9.

  • Answered by AI
  • Q2. Can you explain queries related to insert, selection, and joins in a database management system?
  • Ans. 

    Explanation of insert, select, and join queries in a database management system.

    • Insert query is used to add new records to a table.

    • Select query is used to retrieve data from a table based on specified criteria.

    • Join query is used to combine rows from two or more tables based on a related column between them.

    • Examples: INSERT INTO table_name (column1, column2) VALUES (value1, value2); SELECT * FROM table_name WHERE condit...

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round of 30 minutes at 6pm

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in NoidaEligibility criteriaAbove 7 cgpaNewgen Software interview preparation:Topics to prepare for the interview - Data Structures and algorithms(arrays,strings,linked list,graphs,trees,recursion,backtrack),OOPS,Relational Database Management System, Operating SystemTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Be accurate in one language rather than doing more languages but not perfect in anyone
Tip 2 : Revise your concepts regularly and try to attempt 3-4 times a question which you cannot do in first time so that after that if u see question of that type u know how to approach 
Tip 3 : Do practice of quality questions not only quantity.

Application resume tips for other job seekers

Tip 1 : One page resume 
Tip 2 : Only mentioned that projects and skills in which you are really good don't write anything just to fulfill the space

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They asked the multiple questions regarding to my profile likr about the project , skills, domain and about your future expectations.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus to the fundamentals and be confident.
Stick with your resume

I applied via Recruitment Consultant and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on SDLC & STLC , system testing, regression testing, diff between functional and non functional testing, Smoke testing, Adhoc testing. Some simple SQL questions .

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to answer each amd every question correctly.

e-Zest Interview FAQs

How many rounds are there in e-Zest Senior Automation Test Engineer interview?
e-Zest interview process usually has 1 rounds. The most common rounds in the e-Zest interview process are Technical.
How to prepare for e-Zest Senior Automation Test Engineer 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 e-Zest. The most common topics and skills that interviewers at e-Zest expect are Automation Testing, Continuous Integration, Cypress, DevOps and Exploratory Testing.
What are the top questions asked in e-Zest Senior Automation Test Engineer interview?

Some of the top questions asked at the e-Zest Senior Automation Test Engineer interview -

  1. What are the types of Authentication and authorization used in API testi...read more
  2. Write SQL queries to fetch some records based on some conditi...read more
  3. Explain difference between smoke, sanity and regression testi...read more

Tell us how to improve this page.

e-Zest Senior Automation Test Engineer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 343 Interviews
NeoSOFT Interview Questions
3.6
 • 269 Interviews
3i Infotech Interview Questions
3.5
 • 145 Interviews
Microland Interview Questions
3.5
 • 134 Interviews
Sify Technologies Interview Questions
3.8
 • 125 Interviews
Mastek Interview Questions
3.5
 • 120 Interviews
Maveric Systems Interview Questions
3.5
 • 118 Interviews
View all
e-Zest Senior Automation Test Engineer Salary
based on 4 salaries
₹17 L/yr - ₹22 L/yr
30% more than the average Senior Automation Test Engineer Salary in India
View more details
Softwaretest Engineer
556 salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Software Engineer
293 salaries
unlock blur

₹2.7 L/yr - ₹17 L/yr

Senior Software Engineer
221 salaries
unlock blur

₹8.8 L/yr - ₹31.7 L/yr

Software Quality Analyst
139 salaries
unlock blur

₹3.4 L/yr - ₹5.8 L/yr

Software Developer
114 salaries
unlock blur

₹3.8 L/yr - ₹21.7 L/yr

Explore more salaries
Compare e-Zest with

ITC Infotech

3.6
Compare

3i Infotech

3.5
Compare

Sify Technologies

3.8
Compare

Microland

3.4
Compare
Did you find this page helpful?
Yes No
write
Share an Interview