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

Clear (1)

e-Zest Odoo Python Developer Interview Questions, Process, and Tips

Updated 9 Oct 2024

e-Zest Odoo Python Developer Interview Experiences

1 interview 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?
  • 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
  • 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 questions from similar companies

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SOLID principals, oops, c# basics, SQL server, azure, design pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear basics of oops and design pattern

Interview Questionnaire 

1 Question

  • Q1. HTML, CSS, BOOTSTRAP, PHP. SQL

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself?basics on c , then about projects

I applied via Naukri.com and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What technical challenges have you faced in your work till now and how did you overcome it?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful and give detailed explanation of the issues and how it was resolved. Explain the severity of the problem and what blockage it had caused in your daily work. How did you chose a solution and how fast was it implemented.

I applied via LinkedIn and was interviewed before Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What's is different between c and c++
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports object-oriented programming while C does not.

    • C++ has classes and templates while C does not.

    • C++ has better support for function overloading and default arguments.

    • C++ has a standard library that includes many useful functions.

    • C++ allows for both procedural and object-oriented programming.

    • C++ is generally considered to be a more complex langu

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont show your weakness

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. About the plsql..like functions.cursors.pakages and like that

Interview Preparation Tips

Interview preparation tips for other job seekers - from my experience its some meaning ful interested one..but after got selected...they will not respond on any support..like joining or about the assets setup and not even the situvations...as per my experience i really have a bad experience with rmg and also hr team..ultimatix login and all are not that quick responsive...as per mine ..not prefer tcs..

I applied via Company Website and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I surprised with one question that is are u ready to do job in anywhere

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi guys I just suggest you that you have to focus on your resume and don't use the words which you don't know if you release a word which you don't know then hr will take that word so prepare well for TR and HR I hope my suggestion will helpful

I applied via Campus Placement and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Are you willing to relocate?
  • Q2. Why should I hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - My technical and Hr interview done at same place. It lasted about 40minutes. The interviewer test both my technical knowledge and communication skills. I tell most of the answer. They check patience level.He stressed on my final year project . Asking about range and specification of compotents which I heve used in my project. Finally ask some HR questions.
Contribute & help others!
anonymous
You can choose to be anonymous

e-Zest Interview FAQs

How many rounds are there in e-Zest Odoo Python Developer interview?
e-Zest interview process usually has 1 rounds. The most common rounds in the e-Zest interview process are Technical.
What are the top questions asked in e-Zest Odoo Python Developer interview?

Some of the top questions asked at the e-Zest Odoo Python Developer interview -

  1. write a SQL query to fetch second highest salary of the employee from the emplo...read more
  2. What is the difference between list and Ar...read more
  3. how we can trigger compute method every t...read more

Recently Viewed

SALARIES

DataMetica

SALARIES

Accenture

JOBS

RSquareSoft Technologies

No Jobs

SALARIES

Collabera Technologies

SALARIES

Microsoft Corporation

SALARIES

Brillio

SALARIES

VMware Software

JOBS

Zeomega Infotech

No Jobs

SALARIES

Teradata

SALARIES

Thomson Reuters

Tell us how to improve this page.

e-Zest Odoo Python Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 789 Interviews
NeoSOFT Interview Questions
3.9
 • 261 Interviews
View all
Softwaretest Engineer
555 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Software Engineer
294 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
221 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Software Quality Analyst
139 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Software Developer
114 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare e-Zest with

Persistent Systems

3.5
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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