Upload Button Icon Add office photos

Filter interviews by

Manisoft Solutions Odoo Python Developer Interview Questions and Answers

Updated 30 Oct 2024

Manisoft Solutions Odoo Python Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Newspaper Ad and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Find the highest and lowest number in an array

Round 2 - Technical 

(2 Questions)

  • Q1. Basic oops concepts
  • Q2. What is an interface in Java
  • Ans. 

    An interface in Java is a reference type, similar to a class, that can contain only constants, method signatures, default methods, static methods, and nested types.

    • Interfaces are used to define a contract for classes that implement them.

    • Classes can implement multiple interfaces in Java.

    • Interfaces can be used to achieve abstraction and multiple inheritance in Java.

    • Example: interface MyInterface { void myMethod(); }

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Questions related to python web framework
  • Q2. Real time python project problem solving questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. List & tuple diff
  • Q2. Pickling & unpickling

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was very easy and basic questions asked. I answered all of them correctly and also solved coding question but I got stuck in one question and interviewer told me she is done with interview. Next day, I called HR and asked her for feedback, she told me that the feedback was not positive. I'm not getting what went wrong as she told she didn't got detailed feedback just that it's not positive.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 coding Questions acording to your role

Round 2 - Technical 

(2 Questions)

  • Q1. Most Collison between particles
  • Ans. 

    The question is asking for the method to calculate the most collisions between particles.

    • Calculate the collision frequency by considering the speed and size of particles

    • Use mathematical formulas like the collision theory to predict collision rates

    • Consider factors like temperature, pressure, and concentration of particles

    • Simulate collisions using computer programs or mathematical models

  • Answered by AI
  • Q2. Select course acording to department
Round 3 - HR 

(2 Questions)

  • Q1. What is your name
  • Ans. 

    My name is John Doe.

    • Full name is John Doe

    • Common name used in English-speaking countries

    • No middle name provided

  • Answered by AI
  • Q2. What is your qualifications
  • Ans. 

    I have a Bachelor's degree in Computer Science and 5 years of experience in Python development.

    • Bachelor's degree in Computer Science

    • 5 years of experience in Python development

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com

Round 1 - Technical 

(3 Questions)

  • Q1. Pickling and Unpickling
  • Q2. Python basics and programs
  • Q3. Project and profile related questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between List vs tuple
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified, tuple cannot

    • List uses square brackets [], tuple uses parentheses ()

    • List is slower than tuple for iteration and indexing

  • Answered by AI
  • Q2. Sort a list containing duplicate numbers
  • Ans. 

    Sort a list with duplicate numbers using Python

    • Use the sorted() function to sort the list in ascending order

    • To maintain the duplicate numbers, use a lambda function as the key parameter in sorted()

    • Example: nums = [3, 1, 4, 1, 5, 9, 2, 6, 5], sorted_nums = sorted(nums, key=lambda x: (x, nums.index(x)))

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via campus placement at Shivraj College of Arts, Gadhinglaj and was interviewed in Sep 2023. There were 4 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 

Aptitude test is a questioning and answering like a objective questions

Round 3 - Group Discussion 

Two or more people be adding and creat ing the group and both of one subject matter to be the discus all the group member. Ex. My mother

Round 4 - Technical 

(2 Questions)

  • Q1. What is your perfect programming language
  • Ans. 

    My perfect programming language is one that is versatile, efficient, and has a strong community support.

    • Versatile - able to handle a wide range of tasks and projects

    • Efficient - optimized for performance and speed

    • Strong community support - active community for help and resources

    • Examples: Python, JavaScript, Java

  • Answered by AI
  • Q2. Whatever you are should have be clear the concept and develop your skills.
  • Ans. Yes my all concept is clear and I develop my skills
  • Answered by Shwetali Bhujang
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Sep 2023. There were 3 interview rounds.

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

(5 Questions)

  • Q1. Python questions
  • Q2. Programming test
  • Q3. What is python programming?
  • Ans. 

    Python programming is a high-level, interpreted, and general-purpose programming language known for its simplicity and readability.

    • Python is widely used for web development, data analysis, artificial intelligence, scientific computing, and more.

    • It emphasizes code readability and uses indentation to define code blocks.

    • Python supports multiple programming paradigms such as procedural, object-oriented, and functional prog...

  • Answered by AI
  • Q4. Python data type
  • Q5. Python operater
Round 3 - Coding Test 

Python coding test

Interview Preparation Tips

Topics to prepare for Amazon Python Developer Intern interview:
  • Fresher
Interview preparation tips for other job seekers - Yes

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. Can you have explain the ORM.?
  • Ans. 

    ORM stands for Object-Relational Mapping, a technique to map objects from an application to tables in a relational database.

    • ORM allows developers to interact with a database using objects instead of SQL queries.

    • It helps in abstracting the database interactions, making it easier to work with databases in an object-oriented way.

    • ORM frameworks like Django ORM in Python provide tools to define models that represent databas...

  • Answered by AI
  • Q2. How is Work MVC.?
  • Ans. The Model View Controller design pattern is used to create scalable and maintainable web applications. this pattern divides an application into three main logical components: model, view, controller. Each components plays a specific role in handling various aspects of the application's component.
  • Answered by Naveen
Round 3 - Coding Test 

How do you print the summation of all the numbers from 1 to 101...?

Round 4 - HR 

(1 Question)

  • Q1. Tell about gap in 2 years your Resume...?
  • Ans. I Haven face my family financial problems. so I will Join The Family business After year I am Intrest to join IT course and search the job Placements.
  • Answered by Naveen

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic of python and one requirement
  • Q2. Closure and its uses
  • Ans. 

    Closure is a function that retains the bindings of the free variables that exist when the function is defined.

    • Closure allows a function to access and manipulate variables outside of its scope.

    • It is commonly used in callback functions, event handlers, and decorators.

    • Example: defining a function within another function to access the outer function's variables.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Package discussion

Manisoft Solutions Interview FAQs

How many rounds are there in Manisoft Solutions Odoo Python Developer interview?
Manisoft Solutions interview process usually has 2 rounds. The most common rounds in the Manisoft Solutions interview process are Coding Test and Technical.
What are the top questions asked in Manisoft Solutions Odoo Python Developer interview?

Some of the top questions asked at the Manisoft Solutions Odoo Python Developer interview -

  1. What is an interface in J...read more
  2. Basic oops conce...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Mobile Application Developer
4 salaries
unlock blur

₹1.7 L/yr - ₹2.3 L/yr

Explore more salaries
Compare Manisoft Solutions with

TCS

3.7
Compare

Accenture

3.9
Compare

Cognizant

3.8
Compare

Infosys

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview