Upload Button Icon Add office photos
Engaged Employer

i

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

Cybrosys Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cybrosys Technologies Odoo Python Developer Interview Questions and Answers

Updated 19 Mar 2025

Cybrosys Technologies Odoo Python Developer Interview Experiences

4 interviews found

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

I applied via Referral and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Pattern problem
  • Q2. Sum of n number
  • Ans. 

    The sum of n numbers is calculated by adding all the numbers together.

    • Create a variable to store the sum of the numbers.

    • Use a loop to iterate through the numbers and add them to the sum variable.

    • Return the final sum after all numbers have been added.

  • Answered by AI
  • Q3. Oops concept question theory
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Communication checking
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Pattern problem
  • Q2. Sum of n numbers
  • Ans. 

    The sum of n numbers can be calculated by adding all the numbers together.

    • Iterate through the list of numbers and add them together

    • Use a loop to sum up the numbers

    • Example: For numbers [1, 2, 3], the sum would be 6

  • Answered by AI

Odoo Python Developer Interview Questions Asked at Other Companies

Q1. In a complex inventory management project, I faced issues with in ... read more
Q2. Lists are mutable, allowing modification after creation, while tu ... read more
Q3. Which tag is used to display the text exactly as written in HTML?
Q4. How to add space between rows of a table in HTML?
Q5. Which tag is used to make a text blink in HTML?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic Python questions were asked, along with written test

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

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

  • Q1. Basic Python problem questions using the array Methods, and Looping methods
  • Q2. Sql function questions

Cybrosys Technologies interview questions for designations

 Odoo Developer

 (1)

Interview questions from similar companies

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

Interview Questionnaire 

4 Questions

  • Q1. To find if a number is Prime or not and optimise your written code.
  • Ans. 

    Check if a number is prime and optimize the code.

    • Start by checking if the number is less than 2, in which case it is not prime.

    • Iterate from 2 to the square root of the number and check if any of them divide the number evenly.

    • If a divisor is found, the number is not prime. Otherwise, it is prime.

  • Answered by AI
  • Q2. Css question related to flex box, Grid and cross browser compatibility
  • Q3. To call an API in react and optimise your written code.
  • Ans. 

    To optimise API calls in React, use asynchronous functions and caching techniques.

    • Use async/await to handle API calls

    • Implement caching to reduce network requests

    • Use memoization to avoid unnecessary re-renders

    • Consider using a state management library like Redux

    • Use performance profiling tools like React DevTools

  • Answered by AI
  • Q4. Questions on JS concepts like Objects and Prototype Inheritance.

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your basic concepts and prepare well for the interview.

Skills evaluated in this interview

I applied via Campus Placement

Round 1 - Coding Test 

Online Coding Test included some aptitude questions, technical questions followed by 3 coding questions

Round 2 - Technical 

(1 Question)

  • Q1. My technical interview included an introduction about myself followed by my background, projects I've made, internships I've done, and in which language I was comfortable. and the interviewer asked me to w...

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer confidently and give examples. and you can also connect the questions asked to your past projects.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. General fit to profile filtration
Round 2 - Technical 

(3 Questions)

  • Q1. To the profile applied for
  • Q2. Explain an actual component
  • Ans. 

    An actual component is a reusable and modular piece of software that performs a specific function within a larger system.

    • Components are often designed to be independent and can be easily integrated into different systems.

    • Examples of components include buttons, input fields, and dropdown menus in a user interface.

    • Components can have their own logic, styling, and functionality, making them versatile building blocks for s

  • Answered by AI
  • Q3. Design the architecture
  • Ans. 

    Designing the architecture for a software system involves planning the structure and components of the system.

    • Identify the key components of the system and their interactions

    • Choose appropriate technologies and frameworks for each component

    • Consider scalability, performance, security, and maintainability

    • Create a detailed diagram or documentation of the architecture

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Attitude towards work

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not bluff they will catch you immediately as even their management are hardcore coders

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Apr 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 - Aptitude Test 

25 MCQ questions online with time limit

Round 3 - Assignment 

Create webapp . Frontend, Backend , data encryption

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

I appeared for an interview in Oct 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Easy to medium
profit and loss questions
Permutation and combination

Round 3 - Aptitude Test 

Easy to medium
45 mins

Round 4 - Technical 

(4 Questions)

  • Q1. Basic concept of Oops Java basic
  • Q2. Constructor Overloading
  • Q3. Operator overloading in Java?
  • Ans. 

    Operator overloading allows operators to be redefined for user-defined types in Java.

    • Operator overloading is not supported in Java as it can lead to ambiguity and confusion.

    • Java does not allow custom operators to be defined or existing operators to be overloaded.

    • Instead of operator overloading, Java provides method overloading where methods with the same name but different parameters can be defined.

  • Answered by AI
  • Q4. Define java and it's features
  • Ans. 

    Java is a high-level, object-oriented programming language known for its platform independence and robust features.

    • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)

    • It is object-oriented, allowing for modular and reusable code

    • Java is known for its robust standard library, which includes tools for networking, I/O, and more

    • It supports multithreading, allowing for concurrent e...

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Introduction Present events

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Easy aptitude, 30 min with 20 question

Interview Preparation Tips

Interview preparation tips for other job seekers - learn OOPs concept and thorough about your project

Cybrosys Technologies Interview FAQs

How many rounds are there in Cybrosys Technologies Odoo Python Developer interview?
Cybrosys Technologies interview process usually has 1-2 rounds. The most common rounds in the Cybrosys Technologies interview process are HR and Coding Test.
What are the top questions asked in Cybrosys Technologies Odoo Python Developer interview?

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

  1. Sum of n numb...read more
  2. Sum of n num...read more
  3. Basic Python problem questions using the array Methods, and Looping meth...read more

Tell us how to improve this page.

Cybrosys Technologies Odoo Python Developer Interview Process

based on 4 interviews

Interview experience

3.3
  
Average
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.4
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 92 Interviews
Quantsapp Interview Questions
2.8
 • 35 Interviews
Appsierra Interview Questions
4.4
 • 32 Interviews
View all
Cybrosys Technologies Odoo Python Developer Salary
based on 14 salaries
₹1 L/yr - ₹4 L/yr
21% less than the average Odoo Python Developer Salary in India
View more details

Cybrosys Technologies Odoo Python Developer Reviews and Ratings

based on 3 reviews

3.2/5

Rating in categories

4.0

Skill development

2.3

Work-life balance

1.5

Salary

2.4

Job security

4.0

Company culture

1.5

Promotions

3.1

Work satisfaction

Explore 3 Reviews and Ratings
Odoo Python Developer
14 salaries
unlock blur

₹1 L/yr - ₹4 L/yr

Business Development Officer
5 salaries
unlock blur

₹1.2 L/yr - ₹1.8 L/yr

Odoo Developer
5 salaries
unlock blur

₹0.9 L/yr - ₹5.3 L/yr

Software Engineer
4 salaries
unlock blur

₹2 L/yr - ₹3.2 L/yr

Content Writer
4 salaries
unlock blur

₹2 L/yr - ₹2.6 L/yr

Explore more salaries
Compare Cybrosys Technologies with

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

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