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 Interview Questions and Answers

Updated 29 May 2025
Popular Designations

41 Interview questions

An Odoo Python Developer was asked 8mo ago
Q. How many types of inheritance are there in Odoo?
Ans. 

There are three types of inheritance in Odoo: model inheritance, view inheritance, and functional inheritance.

  • Model inheritance allows a new model to inherit fields and methods from an existing model.

  • View inheritance allows modifying existing views by adding or removing elements.

  • Functional inheritance involves extending the behavior of a method without modifying the original code.

  • Example: In model inheritance, a n...

View all Odoo Python Developer interview questions
An Odoo Python Developer was asked 8mo ago
Q. Is the onchange field value stored in the database?
Ans. 

No, onchange field value is not stored in the database.

  • Onchange field value is only temporarily stored in memory during the current session.

  • The value is not saved to the database until the record is saved.

  • Onchange methods are used to update the UI based on user input without saving to the database.

View all Odoo Python Developer interview questions
An Odoo Python Developer was asked 8mo ago
Q. What is the difference between a function and a method?
Ans. 

Functions and methods are both blocks of code that can be called to perform a specific task, but methods are functions that are associated with an object.

  • Functions are standalone blocks of code that can be called independently.

  • Methods are functions that are associated with a specific object or class.

  • Functions can be defined using the 'def' keyword, while methods are defined within a class.

  • Example: 'def my_function...

View all Odoo Python Developer interview questions
An Odoo Python Developer was asked 8mo ago
Q. What are server actions and scheduled actions in Odoo?
Ans. 

Server action and schedule action are tools in Odoo for automating tasks and actions within the system.

  • Server action is a predefined sequence of actions that can be triggered manually or automatically based on certain conditions.

  • Schedule action is a way to automate the execution of server actions at specific times or intervals.

  • Server actions can be used to perform tasks like sending emails, updating records, or ge...

View all Odoo Python Developer interview questions
An Odoo Python Developer was asked 8mo ago
Q. What is a lambda function?
Ans. 

Lambda function is an anonymous function in Python that can have any number of arguments, but can only have one expression.

  • Lambda functions are defined using the lambda keyword.

  • They are commonly used for small, one-time operations.

  • Lambda functions can be used as arguments to higher-order functions like map, filter, and reduce.

  • Example: lambda x: x*2 defines a lambda function that doubles the input x.

View all Odoo Python Developer interview questions
An Odoo Python Developer was asked 8mo ago
Q. How can we manage security in Odoo?
Ans. 

Security in Odoo can be managed through user roles, access rights, and authentication mechanisms.

  • Define user roles with specific access rights to restrict permissions.

  • Set up strong authentication mechanisms like two-factor authentication.

  • Implement secure coding practices to prevent common vulnerabilities like SQL injection or cross-site scripting.

  • Regularly update Odoo to patch security vulnerabilities and stay pro...

View all Odoo Python Developer interview questions
An Odoo Python Developer was asked 8mo ago
Q. How can we trigger the compute method every time?
Ans. 

You can trigger a compute method every time by setting the 'compute' attribute in the field definition.

  • Set the 'compute' attribute in the field definition to trigger the compute method every time the field is accessed.

  • Ensure that the compute method is properly defined to perform the desired computation.

  • Use the '@api.depends' decorator to specify the dependencies for the compute method.

  • Avoid using the 'store' attri...

View all Odoo Python Developer interview questions
Are these interview questions helpful?
An Odoo Python Developer was asked 8mo ago
Q. How can we create a new branch in Git?
Ans. 

To create a new branch in git, use the 'git checkout -b' command.

  • Use 'git checkout -b ' to create and switch to a new branch

  • Alternatively, use 'git branch ' to create a new branch and then 'git checkout ' to switch to it

  • Make sure to commit any changes before creating a new branch

View all Odoo Python Developer interview questions
An Odoo Python Developer was asked 8mo ago
Q. What are context and domain?
Ans. 

Context and domain are used in Odoo to filter records in views and models respectively.

  • Context is used to pass additional information to the server when performing actions like creating, updating, or deleting records.

  • Domain is used to filter records in models based on certain conditions.

  • Example: context={'lang': 'en_US'} will set the language to English for the current session.

  • Example: domain=[('field_name', '=', ...

View all Odoo Python Developer interview questions
An Odoo Python Developer was asked 8mo ago
Q. What is a property field in Odoo?
Ans. 

Property fields in Odoo are fields that are computed based on other fields or methods.

  • Property fields are not stored in the database but are computed on the fly when accessed.

  • They are defined using the @property decorator in Python.

  • Property fields are useful for displaying calculated values without storing them in the database.

  • Example: calculating the total price of a sale order based on the unit price and quantit...

View all Odoo Python Developer interview questions

e-Zest Interview Experiences

30 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(15 Questions)

  • Q1. How many types of inheritance in odoo
  • Ans. 

    There are three types of inheritance in Odoo: model inheritance, view inheritance, and functional inheritance.

    • Model inheritance allows a new model to inherit fields and methods from an existing model.

    • View inheritance allows modifying existing views by adding or removing elements.

    • Functional inheritance involves extending the behavior of a method without modifying the original code.

    • Example: In model inheritance, a new mo...

  • Answered by AI
  • Q2. What is odoo.sh
  • Ans. 

    Odoo.sh is a cloud platform for hosting and managing Odoo applications.

    • Odoo.sh allows developers to easily deploy, test, and manage Odoo instances in the cloud.

    • It provides features like automated testing, staging environments, and easy collaboration.

    • Developers can use Odoo.sh to streamline their development process and ensure smooth deployment of Odoo applications.

  • Answered by AI
  • Q3. Write a SQL query to fetch second highest salary of the employee from the employee table there have employee name and salary column.
  • Ans. 

    SQL query to fetch second highest salary from employee table

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT to fetch only the second row

    • Consider handling cases where there may be ties for the highest salary

  • Answered by AI
  • Q4. If i have a tuple there have some data inside the tuple how we can add some other data to the existing tuple?
  • Ans. 

    Tuples are immutable in Python, so you cannot add elements directly. Instead, create a new tuple with the desired elements.

    • Tuples are immutable, meaning you cannot change them after creation.

    • To 'add' elements, create a new tuple that combines the original and new elements.

    • Example: original = (1, 2, 3); new_element = 4; new_tuple = original + (new_element,)

    • You can also use tuple unpacking: new_tuple = (*original, new_el...

  • Answered by AI
  • Q5. What is the difference between list and Array
  • Ans. 

    Arrays are fixed in size and contain elements of the same data type, while lists are dynamic and can hold elements of different data types.

    • Arrays are fixed in size, while lists are dynamic and can grow/shrink as needed.

    • Arrays can only hold elements of the same data type, while lists can hold elements of different data types.

    • Arrays are more memory efficient compared to lists.

    • In Python, arrays are implemented using the '...

  • Answered by AI
  • Q6. What is depends and onchange
  • Ans. 

    In Odoo, 'depends' and 'onchange' are decorators used to manage field dependencies and trigger actions on field changes.

    • 'depends' is used to specify fields that a computed field depends on, ensuring it updates when those fields change.

    • Example: @api.depends('field1', 'field2') defines a computed field that recalculates when field1 or field2 changes.

    • 'onchange' is used to trigger a method when a field's value changes in t...

  • Answered by AI
  • Q7. How we can trigger compute method every time
  • Ans. 

    You can trigger a compute method every time by setting the 'compute' attribute in the field definition.

    • Set the 'compute' attribute in the field definition to trigger the compute method every time the field is accessed.

    • Ensure that the compute method is properly defined to perform the desired computation.

    • Use the '@api.depends' decorator to specify the dependencies for the compute method.

    • Avoid using the 'store' attribute ...

  • Answered by AI
  • Q8. How we can create new branch in git
  • Ans. 

    To create a new branch in git, use the 'git checkout -b' command.

    • Use 'git checkout -b ' to create and switch to a new branch

    • Alternatively, use 'git branch ' to create a new branch and then 'git checkout ' to switch to it

    • Make sure to commit any changes before creating a new branch

  • Answered by AI
  • Q9. What is the function and method
  • Ans. 

    Functions and methods are both blocks of code that can be called to perform a specific task, but methods are functions that are associated with an object.

    • Functions are standalone blocks of code that can be called independently.

    • Methods are functions that are associated with a specific object or class.

    • Functions can be defined using the 'def' keyword, while methods are defined within a class.

    • Example: 'def my_function():' ...

  • Answered by AI
  • Q10. What is property field in odoo
  • Ans. 

    Property fields in Odoo are fields that are computed based on other fields or methods.

    • Property fields are not stored in the database but are computed on the fly when accessed.

    • They are defined using the @property decorator in Python.

    • Property fields are useful for displaying calculated values without storing them in the database.

    • Example: calculating the total price of a sale order based on the unit price and quantity.

  • Answered by AI
  • Q11. What is context and domain
  • Ans. 

    Context and domain are used in Odoo to filter records in views and models respectively.

    • Context is used to pass additional information to the server when performing actions like creating, updating, or deleting records.

    • Domain is used to filter records in models based on certain conditions.

    • Example: context={'lang': 'en_US'} will set the language to English for the current session.

    • Example: domain=[('field_name', '=', 'valu...

  • Answered by AI
  • Q12. How we can manage security in odoo.
  • Ans. 

    Security in Odoo can be managed through user roles, access rights, and authentication mechanisms.

    • Define user roles with specific access rights to restrict permissions.

    • Set up strong authentication mechanisms like two-factor authentication.

    • Implement secure coding practices to prevent common vulnerabilities like SQL injection or cross-site scripting.

    • Regularly update Odoo to patch security vulnerabilities and stay protecte...

  • Answered by AI
  • Q13. Onchange field value is stored in database or not?
  • Ans. 

    No, onchange field value is not stored in the database.

    • Onchange field value is only temporarily stored in memory during the current session.

    • The value is not saved to the database until the record is saved.

    • Onchange methods are used to update the UI based on user input without saving to the database.

  • Answered by AI
  • Q14. What is server action and schedule action in odoo
  • Ans. 

    Server action and schedule action are tools in Odoo for automating tasks and actions within the system.

    • Server action is a predefined sequence of actions that can be triggered manually or automatically based on certain conditions.

    • Schedule action is a way to automate the execution of server actions at specific times or intervals.

    • Server actions can be used to perform tasks like sending emails, updating records, or generat...

  • Answered by AI
  • Q15. What is lambda function
  • Ans. 

    Lambda function is an anonymous function in Python that can have any number of arguments, but can only have one expression.

    • Lambda functions are defined using the lambda keyword.

    • They are commonly used for small, one-time operations.

    • Lambda functions can be used as arguments to higher-order functions like map, filter, and reduce.

    • Example: lambda x: x*2 defines a lambda function that doubles the input x.

  • Answered by AI

Skills evaluated in this interview

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

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. React common interview questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Managerial Round
Round 3 - HR 

(1 Question)

  • Q1. Salary and role discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Cicd process in your organisation?
  • Ans. 

    Our organization follows a CI/CD process to automate the software delivery pipeline.

    • Continuous Integration (CI) involves automatically building and testing code changes frequently.

    • Continuous Deployment (CD) automates the deployment of code changes to production.

    • We use tools like Jenkins, GitLab CI/CD, and Docker for CI/CD.

    • CI/CD helps in reducing manual errors, improving code quality, and speeding up the release process...

  • Answered by AI
  • Q2. What is k8 namespace n configmap?
  • Ans. 

    K8 namespace is a way to organize resources in Kubernetes, while configmap is used to store configuration data.

    • Kubernetes namespaces provide a way to divide cluster resources between multiple users or teams.

    • Configmaps are used to store non-sensitive configuration data in key-value pairs.

    • Configmaps can be mounted as volumes or used as environment variables in pods.

    • Example: kubectl create namespace my-namespace

    • Example: k...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for e-Zest Devops Engineer interview:
  • AWS
  • Azure
  • Docker
  • Kubernetes
  • AWS Devops
  • Azure DevOps

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What are joins in sql
  • Ans. 

    Joins in SQL are used to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables based on a related column

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
  • Q2. What do you know about analytical functions
  • Ans. 

    Analytical functions are used in SQL to perform calculations across a set of rows related to the current row.

    • Analytical functions operate on a group of rows and return a single result for each row.

    • They can be used to calculate running totals, moving averages, rank, percentiles, etc.

    • Examples of analytical functions include ROW_NUMBER(), RANK(), LAG(), LEAD(), SUM() OVER(), AVG() OVER().

  • Answered by AI
  • Q3. Tell me about yourself
  • Q4. Tell me about your project
  • Q5. Write distinct query
  • Ans. 

    Distinct query is used to retrieve unique values from a table.

    • Use SELECT DISTINCT column_name FROM table_name to retrieve unique values from a specific column.

    • You can also use SELECT DISTINCT * FROM table_name to retrieve unique rows from the entire table.

    • DISTINCT is often used in combination with other SQL clauses like WHERE, ORDER BY, and GROUP BY.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. About UX Design
  • Q2. Portfolio question

Interview Preparation Tips

Interview preparation tips for other job seekers - Good overall

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 12 Jun 2024

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 May 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Need to write sql query
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
-

I applied via Naukri.com and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is scrum of scrums
  • Ans. 

    Scrum of scrums is a scaled agile framework practice where representatives from multiple scrum teams meet to discuss inter-team dependencies and progress.

    • Scrum of scrums is a meeting where representatives from different scrum teams come together to discuss their work.

    • It helps in identifying and resolving inter-team dependencies and issues.

    • The meeting is usually facilitated by a Scrum Master or Agile Coach.

    • Each team pro...

  • Answered by AI
  • Q2. How do you handle changes in project in last time

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your answers as much as possible before hand.

Skills evaluated in this interview

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

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. Based Concept related your technologies
  • Q2. SQL queries , OOPS

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about e-Zest?
Ask anonymously on communities.

e-Zest Interview FAQs

How many rounds are there in e-Zest interview?
e-Zest interview process usually has 1-2 rounds. The most common rounds in the e-Zest interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for e-Zest 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 Javascript, Java, HTML, SQL and Angular.
What are the top questions asked in e-Zest interview?

Some of the top questions asked at the e-Zest interview -

  1. What are the types of Authentication and authorization used in API testi...read more
  2. if i have a tuple there have some data inside the tuple how we can add some oth...read more
  3. Write SQL queries to fetch some records based on some conditi...read more
How long is the e-Zest interview process?

The duration of e-Zest interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 27 interview experiences

Difficulty level

Easy 27%
Moderate 67%
Hard 7%

Duration

Less than 2 weeks 80%
2-4 weeks 13%
More than 8 weeks 7%
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.7
 • 376 Interviews
3i Infotech Interview Questions
3.4
 • 151 Interviews
Microland Interview Questions
3.5
 • 137 Interviews
Sify Technologies Interview Questions
3.8
 • 131 Interviews
Mastek Interview Questions
3.6
 • 127 Interviews
Maveric Systems Interview Questions
3.5
 • 124 Interviews
Sonata Software Interview Questions
3.4
 • 122 Interviews
View all

e-Zest Reviews and Ratings

based on 320 reviews

4.1/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

3.8

Salary

3.7

Job security

3.9

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 320 Reviews and Ratings
Marketing Analyst

Pune

4-9 Yrs

Not Disclosed

Business Analyst

Pune

5-10 Yrs

Not Disclosed

Explore more jobs
Softwaretest Engineer
583 salaries
unlock blur

₹2.5 L/yr - ₹7.8 L/yr

Software Engineer
286 salaries
unlock blur

₹2.4 L/yr - ₹14.9 L/yr

Senior Software Engineer
207 salaries
unlock blur

₹14.9 L/yr - ₹27.8 L/yr

Software Quality Analyst
137 salaries
unlock blur

₹3.4 L/yr - ₹5.8 L/yr

Software Developer
102 salaries
unlock blur

₹7.4 L/yr - ₹16.1 L/yr

Explore more salaries
Compare e-Zest with

ITC Infotech

3.7
Compare

3i Infotech

3.4
Compare

Sify Technologies

3.8
Compare

Microland

3.5
Compare
write
Share an Interview