Upload Button Icon Add office photos
Engaged Employer

i

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

Flexsin Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Flexsin Technologies Odoo Python Developer Interview Questions and Answers

Updated 14 Apr 2023

Flexsin Technologies Odoo Python Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Type of ORM in odoo like create, write
  • Ans. 

    Odoo uses ORM (Object Relational Mapping) to interact with the database. It provides methods like create, write, unlink, etc.

    • ORM stands for Object Relational Mapping

    • Odoo uses ORM to interact with the database

    • ORM provides methods like create, write, unlink, etc.

    • create method is used to create a new record in the database

    • write method is used to update an existing record in the database

    • unlink method is used to delete a re...

  • Answered by AI
  • Q2. What is @api.onchange
  • Ans. 

    @api.onchange is a decorator in Odoo that triggers a function when a field value is changed.

    • Used to update other fields or perform some action when a field value is changed

    • Can be used to validate input or compute values

    • Can be used in combination with @api.depends to trigger a function when dependent fields are changed

  • Answered by AI

Skills evaluated in this interview

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 Flexsin Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Jul 2021. There were 2 interview rounds.

Round 1 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Why public static use
  • Ans. 

    public static use for accessing methods and variables without creating an object

    • Allows access to methods and variables without creating an object

    • Useful for utility classes where objects are not needed

    • Can be used to create global variables or constants

    • Example: Math class in Java has only static methods and constants

  • Answered by AI
  • Q2. Why static is use.Pattern question,hshshdhdhxhxhxhxhdhhxjdjdjdjdjnjsjs

Interview Preparation Tips

Topics to prepare for 360 Degree Cloud Technologies Software Developer interview:
  • Java
Interview preparation tips for other job seekers - Learn Java in depth.Also prepare more in communication skills.

Skills evaluated in this interview

Odoo Python Developer Interview Questions Asked at Other Companies

Q1. Lists are mutable, allowing modification after creation, while tu ... read more
Q2. In a complex inventory management project, you faced issues with ... read more
asked in e-Zest
Q3. If you have a tuple with data, how can you add more data to the e ... read more
Q4. Which tag is used to display the text exactly as written in HTML?
Q5. How can we add an element to a tuple, given that tuples are immut ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Regrading Self join query
  • Ans. 

    A self join query is used to join a table to itself in a SQL query.

    • Self join is used when a table needs to be joined with itself to compare rows within the same table.

    • It requires aliasing the table with different names to distinguish between the two instances of the same table.

    • Commonly used in hierarchical data structures or when comparing related rows in a table.

  • Answered by AI
  • Q2. Group by query per catagory
  • Ans. 

    Group by query is used to group data based on a specific category.

    • Use the GROUP BY clause in SQL to group data based on a specific column

    • Aggregate functions like COUNT, SUM, AVG can be used with GROUP BY to perform calculations on grouped data

    • Example: SELECT category, COUNT(*) FROM products GROUP BY category

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jun 2022. There were 3 interview rounds.

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 - Coding Test 

Basic coding excercise , linux platform.file handling

Round 3 - HR 

(2 Questions)

  • Q1. Simpe question , family baground,
  • Q2. Strength , weakness,

Interview Preparation Tips

Interview preparation tips for other job seekers - just be confident
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

It was a MCQ + Coding test

Round 3 - Technical 

(2 Questions)

  • Q1. Questions on DSA
  • Q2. Questions on CS Fundamentals
Round 4 - Technical 

(2 Questions)

  • Q1. Questions on Linux commands
  • Q2. Questions related to oops and CS is
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It was around 2 hrs with 2 coding questions and some mcq questions on fundamentals

Round 2 - Technical 

(2 Questions)

  • Q1. Print some numbers in a tree format
  • Ans. 

    Print numbers in a tree format

    • Use recursion to print numbers in a tree structure

    • Start with the root node and recursively print child nodes

    • Use indentation to represent levels in the tree

    • Example: 1 --2 ----3 --4

  • Answered by AI
  • Q2. Factorial of a number, both iterative and recursive
  • Ans. 

    Factorial of a number can be calculated using both iterative and recursive methods.

    • Iterative method involves using a loop to multiply numbers from 1 to n.

    • Recursive method involves calling the function with n-1 until n reaches 1.

    • Example: Factorial of 5 using iterative method: 5! = 5*4*3*2*1 = 120

    • Example: Factorial of 5 using recursive method: 5! = 5 * 4!

    • Example: Factorial of 4 using recursive method: 4! = 4 * 3!

  • Answered by AI

Skills evaluated in this interview

Round 1 - Technical 

(2 Questions)

  • Q1. To write any code in any programming language
  • Ans. 

    This code demonstrates a simple Python function to calculate the factorial of a number using recursion.

    • Define a function named 'factorial' that takes one argument 'n'.

    • Check if 'n' is less than or equal to 1; if so, return 1.

    • Otherwise, return 'n' multiplied by 'factorial(n-1)'.

    • Example: factorial(5) returns 120.

  • Answered by AI
  • Q2. About the project work that i have done
Round 2 - Technical 

(2 Questions)

  • Q1. Time was 3:15 in the clock write an code to find the angle between the hour and minute hand
  • Ans. 

    Calculate the angle between the hour and minute hands of a clock at 3:15.

    • Each hour on the clock represents 30 degrees (360 degrees / 12 hours).

    • Each minute represents 6 degrees (360 degrees / 60 minutes).

    • At 3:15, the hour hand is at 97.5 degrees (3 hours * 30 + 15 minutes * 0.5).

    • The minute hand is at 90 degrees (15 minutes * 6).

    • The angle between the hands is the absolute difference: |97.5 - 90| = 7.5 degrees.

  • Answered by AI
  • Q2. About the project work

Interview Preparation Tips

Interview preparation tips for other job seekers - just try and try don’t loose hope
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2022. There were 2 interview rounds.

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 - One-on-one 

(2 Questions)

  • Q1. Implement a linked list
  • Ans. 

    A linked list is a data structure that consists of a sequence of nodes, each containing a reference to the next node.

    • Each node has a data field and a next field that points to the next node

    • Insertion and deletion can be done efficiently

    • Traversal starts from the head node and continues until the end node is reached

  • Answered by AI
  • Q2. Questions on JAVA

Interview Preparation Tips

Topics to prepare for Truminds Software Systems Software Developer interview:
  • Linked Lists
Interview preparation tips for other job seekers - It is an easy to crack company

Skills evaluated in this interview

Interview experience
4
Good
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 - Coding Test 

It placed in hackerRank.question difficulty level was medium.

Round 3 - Technical 

(1 Question)

  • Q1. The difficulty depends upon who is taking your interview. But mostly asked questions were related to string and hashmap.
Round 4 - HR 

(1 Question)

  • Q1. It was more like a little bit technical and hr round. Mostly talk about personal profile like education,family background, hobbies and etc.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Medium level leetcode

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basics of linked list. How to delete without head and address of current node is given?
  • Q2. Simple join queries on 2 to 3 tables?
  • Ans. 

    Join queries are used to combine data from multiple tables based on a related column between them.

    • Use JOIN keyword to combine tables based on a common column

    • Specify the columns to select from each table

    • Use WHERE clause to specify the join condition

  • Answered by AI

Skills evaluated in this interview

Flexsin Technologies Interview FAQs

How many rounds are there in Flexsin Technologies Odoo Python Developer interview?
Flexsin Technologies interview process usually has 2 rounds. The most common rounds in the Flexsin Technologies interview process are Resume Shortlist and Technical.
What are the top questions asked in Flexsin Technologies Odoo Python Developer interview?

Some of the top questions asked at the Flexsin Technologies Odoo Python Developer interview -

  1. Type of ORM in odoo like create, wr...read more
  2. What is @api.oncha...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
JMR Infotech Interview Questions
4.2
 • 33 Interviews
PC Solutions Interview Questions
3.7
 • 18 Interviews
Bankai Infotech Interview Questions
3.3
 • 14 Interviews
View all
Software Developer
31 salaries
unlock blur

₹2.8 L/yr - ₹7 L/yr

Programmer
31 salaries
unlock blur

₹3 L/yr - ₹9.5 L/yr

Software Engineer
28 salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Senior Programmer
21 salaries
unlock blur

₹4 L/yr - ₹8.5 L/yr

Senior Software Engineer
19 salaries
unlock blur

₹7 L/yr - ₹13.4 L/yr

Explore more salaries
Compare Flexsin Technologies with

PC Solutions

3.7
Compare

JMR Infotech

4.2
Compare

RNF Technologies

3.3
Compare

Ahana Systems & Solutions

3.7
Compare
write
Share an Interview