Upload Button Icon Add office photos
Engaged Employer

i

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

Devon Software Services Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Devon Software Services Interview Questions and Answers

Updated 5 Mar 2025
Popular Designations

9 Interview questions

A Senior Java Developer was asked 5mo ago
Q. Given an integer array, segregate odd and even numbers without using another array.
Ans. 

Segregate odd and even numbers in an integer array without using another array

  • Iterate through the array and maintain two pointers, one for odd numbers and one for even numbers

  • Swap elements at the odd and even pointers until all odd numbers are on one side and even numbers on the other

  • Example: Input array [3, 6, 8, 5, 4], Output array [6, 8, 4, 5, 3]

View all Senior Java Developer interview questions
A Senior Java Developer was asked 5mo ago
Q. Describe a scenario where you would use the microservice saga pattern.
Ans. 

The saga pattern manages distributed transactions in microservices, ensuring data consistency across services.

  • Saga pattern breaks a transaction into smaller, manageable steps across multiple services.

  • Each step is a local transaction that updates data and publishes an event.

  • If a step fails, compensating transactions are triggered to undo previous steps.

  • Example: In an e-commerce system, placing an order involves inv...

View all Senior Java Developer interview questions
A Full Stack Software Developer was asked 9mo ago
Q. Explain the Liskov Substitution Principle with examples.
Ans. 

Liskov Substitution Principle states that objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correctness.

  • Subtypes must be substitutable for their base types.

  • Derived classes should be able to extend the functionality of base classes without changing their behavior.

  • Violating this principle can lead to unexpected behavior in the program.

  • Example: If a Square cl...

View all Full Stack Software Developer interview questions
A Full Stack Software Developer was asked 9mo ago
Q. What is the importance of unit testing?
Ans. 

Unit testing is crucial in ensuring clean code by verifying the functionality of individual units of code.

  • Unit testing helps in identifying bugs and errors early in the development process.

  • It ensures that each unit of code works as expected in isolation.

  • Unit tests act as documentation for the codebase, making it easier for new developers to understand and modify the code.

  • It promotes code reusability and maintainab...

View all Full Stack Software Developer interview questions
A Senior Software Engineer and Lead was asked 11mo ago
Q. Explain POLYMORPHISM and other oops concepts.
Ans. 

Polymorphism is the ability of a single function or method to operate on different data types.

  • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

  • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

  • Example of compile-time polymorphism: function overloading in Java.

  • Example of runtime polymorphism: method overriding in Ja...

View all Senior Software Engineer and Lead interview questions
A Senior Software Developer was asked
Q. How do you connect your code to database? what kind of Repository you use? Will group By work with without having
Ans. 

I connect my code to the database using a repository pattern. Group By can work without having an explicit repository.

  • I use a repository pattern to abstract the database operations in my code.

  • I typically use Entity Framework as my ORM to connect to the database.

  • Group By can work without having an explicit repository by directly querying the database using LINQ or SQL.

View all Senior Software Developer interview questions
A Senior Software Developer was asked
Q. What is trigger Where is configuration available for you code
Ans. 

A trigger is a special type of stored procedure that is automatically executed when certain events occur in a database.

  • Triggers are used to enforce business rules, perform auditing, and maintain data integrity.

  • Configuration for triggers is typically available in the database management system where the trigger is created.

  • Examples of trigger events include INSERT, UPDATE, and DELETE operations on a table.

View all Senior Software Developer interview questions
Are these interview questions helpful?
A Scrum Master was asked 8mo ago
Q. Scrum principles and values
Ans. 

Scrum principles and values are the foundation of the Scrum framework, guiding teams to work collaboratively and adapt to change.

  • Scrum principles include transparency, inspection, and adaptation.

  • Scrum values include commitment, courage, focus, openness, and respect.

  • Examples of Scrum principles in action: Daily stand-up meetings for transparency and regular retrospectives for inspection and adaptation.

  • Examples of S...

View all Scrum Master interview questions
A Full Stack Software Developer was asked 9mo ago
Q. Importance of abstraction
Ans. 

Abstraction is crucial in software development to simplify complexity, improve readability, and promote reusability.

  • Abstraction helps in hiding unnecessary details and focusing on essential features.

  • It allows developers to work at a higher level of understanding without getting bogged down in implementation details.

  • Abstraction promotes code reusability by creating modular and reusable components.

  • It improves code r...

View all Full Stack Software Developer interview questions

Devon Software Services Interview Experiences

12 interviews found

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Scenario of microservice saga pattern
  • Ans. 

    The saga pattern manages distributed transactions in microservices, ensuring data consistency across services.

    • Saga pattern breaks a transaction into smaller, manageable steps across multiple services.

    • Each step is a local transaction that updates data and publishes an event.

    • If a step fails, compensating transactions are triggered to undo previous steps.

    • Example: In an e-commerce system, placing an order involves inventor...

  • Answered by AI
  • Q2. Given an integer array segregate odd and even numbers without using another array
  • Ans. 

    Segregate odd and even numbers in an integer array without using another array

    • Iterate through the array and maintain two pointers, one for odd numbers and one for even numbers

    • Swap elements at the odd and even pointers until all odd numbers are on one side and even numbers on the other

    • Example: Input array [3, 6, 8, 5, 4], Output array [6, 8, 4, 5, 3]

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

The problem statement was given to solve.

Round 2 - Technical 

(3 Questions)

  • Q1. Explain liskov substitution principle with examples?
  • Ans. 

    Liskov Substitution Principle states that objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correctness.

    • Subtypes must be substitutable for their base types.

    • Derived classes should be able to extend the functionality of base classes without changing their behavior.

    • Violating this principle can lead to unexpected behavior in the program.

    • Example: If a Square class i...

  • Answered by AI
  • Q2. Importance of abstraction
  • Ans. 

    Abstraction is crucial in software development to simplify complexity, improve readability, and promote reusability.

    • Abstraction helps in hiding unnecessary details and focusing on essential features.

    • It allows developers to work at a higher level of understanding without getting bogged down in implementation details.

    • Abstraction promotes code reusability by creating modular and reusable components.

    • It improves code readab...

  • Answered by AI
  • Q3. Importance of Unit testing in clean close
  • Ans. 

    Unit testing is crucial in ensuring clean code by verifying the functionality of individual units of code.

    • Unit testing helps in identifying bugs and errors early in the development process.

    • It ensures that each unit of code works as expected in isolation.

    • Unit tests act as documentation for the codebase, making it easier for new developers to understand and modify the code.

    • It promotes code reusability and maintainability...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain POLYMORPHISM and other oops concepts.
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different data types.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example of compile-time polymorphism: function overloading in Java.

    • Example of runtime polymorphism: method overriding in Java.

    • Po...

  • Answered by AI
  • Q2. Questions were asked on the work and responsibilities in my previous company.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How do you connect your code to database? what kind of Repository you use? Will group By work with without having
  • Ans. 

    I connect my code to the database using a repository pattern. Group By can work without having an explicit repository.

    • I use a repository pattern to abstract the database operations in my code.

    • I typically use Entity Framework as my ORM to connect to the database.

    • Group By can work without having an explicit repository by directly querying the database using LINQ or SQL.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is trigger Where is configuration available for you code
  • Ans. 

    A trigger is a special type of stored procedure that is automatically executed when certain events occur in a database.

    • Triggers are used to enforce business rules, perform auditing, and maintain data integrity.

    • Configuration for triggers is typically available in the database management system where the trigger is created.

    • Examples of trigger events include INSERT, UPDATE, and DELETE operations on a table.

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Entity framework
Interview experience
1
Bad
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 - HR 

(2 Questions)

  • Q1. What is your current salary
  • Ans. 

    I am unable to provide my current salary.

    • I am unable to disclose my current salary due to confidentiality agreements.

    • My current salary is subject to a non-disclosure agreement.

    • I prefer not to discuss my current salary during the interview process.

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

    I have 5 years of experience as a Software Developer.

    • Developed web applications using HTML, CSS, and JavaScript.

    • Worked with various programming languages such as Java, C++, and Python.

    • Experience in database management with SQL and NoSQL.

    • Familiar with Agile development methodologies.

    • Collaborated with cross-functional teams to deliver high-quality software solutions.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They have no clients, first they will hire you since there is no active client/opportunities you won't be able to perform because of that, then they will start question your performance and once you will complete your probation they will indirectly ask you to leave the company.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024.

Round 1 - Coding Test 

Fundamentals of Python programming.

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions related to advanced Python programming and the last project.

I applied via Naukri.com and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Direct F2F with Panel +Coding evaluation during the 1hour call
  • Ans. 

    Interview process includes direct face-to-face interaction with panel and coding evaluation.

    • Expect to have a video call with the interview panel

    • Be prepared to showcase your coding skills during the call

    • Ensure you have a stable internet connection and a quiet environment for the call

    • Practice coding problems beforehand to feel more confident

    • Be ready to explain your thought process and approach to problem-solving

  • Answered by AI
Round 2 - Coding Test 

Hands on evaluation to check on coding standards & practices, focus more on OOPS,Solid principles & should be strong in basics

Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round with the delivery lead- They will brief about the project & will be open to answer for any doubts

Interview Preparation Tips

Topics to prepare for Devon Software Services Dot Net Fullstack Developer interview:
  • OOPS
  • SOLID PRINCIPLES
  • Coding practices
Interview preparation tips for other job seekers - Commitment & Punctuality during the process is what they mainly focus on then comes the technical evaluations so please follow the same, Overall good interview experience.

Interview Questions & Answers

user image Anonymous

posted on 3 May 2024

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

I applied via Referral and was interviewed before May 2023. There were 5 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Not disclosing details
Round 2 - One-on-one 

(1 Question)

  • Q1. Not disclosing details
Round 3 - HR 

(1 Question)

  • Q1. Not disclosing details
Round 4 - Behavioral 

(1 Question)

  • Q1. Not disclosing details
Round 5 - Behavioral 

(1 Question)

  • Q1. Not disclosing details

Scrum Master Interview Questions & Answers

user image Anonymous

posted on 30 Sep 2024

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

I applied via Naukri.com and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Scrum principles and values
  • Ans. 

    Scrum principles and values are the foundation of the Scrum framework, guiding teams to work collaboratively and adapt to change.

    • Scrum principles include transparency, inspection, and adaptation.

    • Scrum values include commitment, courage, focus, openness, and respect.

    • Examples of Scrum principles in action: Daily stand-up meetings for transparency and regular retrospectives for inspection and adaptation.

    • Examples of Scrum ...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
1w
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 Devon Software Services?
Ask anonymously on communities.

Devon Software Services Interview FAQs

How many rounds are there in Devon Software Services interview?
Devon Software Services interview process usually has 1-2 rounds. The most common rounds in the Devon Software Services interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Devon Software Services 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 Devon Software Services. The most common topics and skills that interviewers at Devon Software Services expect are Azure, Python, AWS, Java and SQL.
What are the top questions asked in Devon Software Services interview?

Some of the top questions asked at the Devon Software Services interview -

  1. How do you connect your code to database? what kind of Repository you use? Will...read more
  2. Given an integer array segregate odd and even numbers without using another arr...read more
  3. Explain liskov substitution principle with exampl...read more
How long is the Devon Software Services interview process?

The duration of Devon Software Services 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.4/5

based on 11 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Junglee Games Interview Questions
3.1
 • 34 Interviews
Ganit Inc Interview Questions
3.8
 • 23 Interviews
11:11 Systems Interview Questions
3.7
 • 15 Interviews
Capace Software Interview Questions
4.3
 • 13 Interviews
Agilisium Interview Questions
3.1
 • 13 Interviews
View all

Devon Software Services Reviews and Ratings

based on 108 reviews

3.9/5

Rating in categories

3.8

Skill development

3.9

Work-life balance

3.9

Salary

3.4

Job security

4.0

Company culture

3.8

Promotions

3.7

Work satisfaction

Explore 108 Reviews and Ratings
Data Scientist

Bangalore / Bengaluru

3-7 Yrs

₹ 12-19 LPA

Data Engineer

Bangalore / Bengaluru

3-6 Yrs

₹ 9-18 LPA

Explore more jobs
Senior Architect
38 salaries
unlock blur

₹22 L/yr - ₹32.1 L/yr

Technical Architect
33 salaries
unlock blur

₹19 L/yr - ₹27 L/yr

Associate Architect
27 salaries
unlock blur

₹15 L/yr - ₹21 L/yr

Architect
19 salaries
unlock blur

₹15.2 L/yr - ₹19.9 L/yr

Senior Scrum Master
15 salaries
unlock blur

₹21.9 L/yr - ₹26 L/yr

Explore more salaries
Compare Devon Software Services with

JoulestoWatts Business Solutions

3.0
Compare

Thoughtsol Infotech

4.6
Compare

11:11 Systems

3.7
Compare

Innoplexus

4.0
Compare
write
Share an Interview