Premium Employer

i

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

Tietoevry Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Tietoevry Software Developer Interview Questions and Answers

Updated 9 Apr 2025

10 Interview questions

A Software Developer was asked 4mo ago
Q. How do you handle migrations in Entity Framework Core?
Ans. 

Migrations in Entity Framework Core manage database schema changes through code-based configuration and commands.

  • Use 'Add-Migration <MigrationName>' to create a new migration file that captures changes.

  • Run 'Update-Database' to apply pending migrations to the database.

  • Migrations can be customized by editing the generated migration files.

  • Use 'Remove-Migration' to delete the last migration if needed.

  • Migrations ...

A Software Developer was asked 4mo ago
Q. What are Middlewares in ASP.Net Core?
Ans. 

Middlewares in ASP.NET Core are components that handle requests and responses in the application pipeline.

  • Middlewares are executed in the order they are registered in the Startup class.

  • They can perform tasks such as logging, authentication, and error handling.

  • Example: Use 'app.UseRouting()' to enable routing capabilities.

  • Example: 'app.UseAuthentication()' to add authentication middleware.

  • Middlewares can short-circ...

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
A Software Developer was asked 4mo ago
Q. What is React?
Ans. 

React is a popular JavaScript library for building user interfaces, particularly single-page applications, using a component-based architecture.

  • Component-Based: React allows developers to create reusable UI components, making code more modular and maintainable.

  • Virtual DOM: React uses a virtual representation of the DOM to optimize rendering and improve performance.

  • Unidirectional Data Flow: Data in React flows in o...

A Software Developer was asked 4mo ago
Q. What is Java?
Ans. 

Java is a high-level, object-oriented programming language designed for portability and performance across platforms.

  • Developed by Sun Microsystems in 1995, now owned by Oracle.

  • Java is platform-independent due to the Java Virtual Machine (JVM).

  • It follows the principle of 'Write Once, Run Anywhere' (WORA).

  • Commonly used for web applications, mobile apps (Android), and enterprise software.

  • Example: Java code can be com...

A Software Developer was asked 11mo ago
Q. Write a function to reverse a string and optimize it for performance.
Ans. 

Reverse array of strings efficiently

  • Use two pointers approach to swap characters from start and end of each string

  • Optimize by using in-place reversal instead of creating new strings

  • Consider edge cases like empty strings or strings with only one character

What are the roles & responsibilities of a Software Developer at Tietoevry?

Development and Implementation

  • Develop and maintain software components
  • Design and prototype user interfaces
  • Integrate components into existing architecture

Read full roles & responsibilities

A Software Developer was asked 11mo ago
Q. How do you reverse a binary tree?
Ans. 

Reversing a binary tree involves swapping the left and right children of all nodes in the tree.

  • Use a recursive approach to traverse the tree.

  • Swap the left and right children of each node.

  • Example: For a tree with root 1, left child 2, and right child 3, after reversal, root 1 will have left child 3 and right child 2.

  • Base case for recursion: if the node is null, return.

  • This operation has a time complexity of O(n), w...

Tietoevry HR Interview Questions

6 questions and answers

Q. What was your job profile in your last organization?
Q. What interests you in this job?
Q. Tell me about your real-time project experience.
A Software Developer was asked
Q. What is the MuleSoft Anypoint Platform?
Ans. 

MuleSoft Anypoint Platform is a unified, flexible integration platform that solves the most challenging connectivity problems.

  • Anypoint Platform enables organizations to easily build, test, and deploy APIs, integrations, and applications.

  • It provides a range of tools and services for designing, building, and managing APIs and integrations.

  • Anypoint Platform includes features such as API management, data integration, ...

Are these interview questions helpful?
A Software Developer was asked
Q. What is Anypoint Runtime Fabric?
Ans. 

Anypoint Runtime Fabric is a container service that automates the deployment and scaling of Mule runtimes.

  • It provides a platform for deploying and managing Mule applications across on-premises, cloud, and hybrid environments.

  • It enables high availability, fault tolerance, and disaster recovery for Mule runtimes.

  • It supports Kubernetes as the underlying container orchestration platform.

  • It allows for centralized manag...

A Software Developer was asked
Q. What is cloudhub and maven
Ans. 

CloudHub is a cloud-based integration platform, while Maven is a build automation tool for Java projects.

  • CloudHub is used for integrating applications and services in the cloud.

  • It provides a platform for deploying, managing, and scaling integrations.

  • Maven is used for building and managing Java projects.

  • It automates the process of building and packaging Java applications.

  • Maven uses a project object model (POM) to m...

A Software Developer was asked
Q. What is any point design center
Ans. 

Any point design center is a software design tool used for creating and editing graphical user interfaces.

  • APDC is used for designing GUIs for desktop and mobile applications

  • It allows for easy drag-and-drop of UI elements

  • APDC supports multiple platforms and programming languages

  • It offers a variety of templates and themes to choose from

Tietoevry Software Developer Interview Experiences

6 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

DSA questions and programming concepts

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse string and optimize it
  • Ans. 

    Reverse array of strings efficiently

    • Use two pointers approach to swap characters from start and end of each string

    • Optimize by using in-place reversal instead of creating new strings

    • Consider edge cases like empty strings or strings with only one character

  • Answered by AI
  • Q2. Reverse binary tree
  • Ans. 

    Reversing a binary tree involves swapping the left and right children of all nodes in the tree.

    • Use a recursive approach to traverse the tree.

    • Swap the left and right children of each node.

    • Example: For a tree with root 1, left child 2, and right child 3, after reversal, root 1 will have left child 3 and right child 2.

    • Base case for recursion: if the node is null, return.

    • This operation has a time complexity of O(n), where ...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Joining location
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. What are Middlewares in ASP.Net Core?
  • Q2. How do you handle migrations in Entity Framework Core?
  • Ans. 

    Migrations in Entity Framework Core manage database schema changes through code-based configuration and commands.

    • Use 'Add-Migration <MigrationName>' to create a new migration file that captures changes.

    • Run 'Update-Database' to apply pending migrations to the database.

    • Migrations can be customized by editing the generated migration files.

    • Use 'Remove-Migration' to delete the last migration if needed.

    • Migrations can b...

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

I applied via Company Website and was interviewed in Feb 2023. 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 - Technical 

(2 Questions)

  • Q1. What is mulesoft any point platform
  • Ans. 

    MuleSoft Anypoint Platform is a unified, flexible integration platform that solves the most challenging connectivity problems.

    • Anypoint Platform enables organizations to easily build, test, and deploy APIs, integrations, and applications.

    • It provides a range of tools and services for designing, building, and managing APIs and integrations.

    • Anypoint Platform includes features such as API management, data integration, and a...

  • Answered by AI
  • Q2. What is cloudhub and maven
  • Ans. 

    CloudHub is a cloud-based integration platform, while Maven is a build automation tool for Java projects.

    • CloudHub is used for integrating applications and services in the cloud.

    • It provides a platform for deploying, managing, and scaling integrations.

    • Maven is used for building and managing Java projects.

    • It automates the process of building and packaging Java applications.

    • Maven uses a project object model (POM) to manage...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is any point design center
  • Ans. 

    Any point design center is a software design tool used for creating and editing graphical user interfaces.

    • APDC is used for designing GUIs for desktop and mobile applications

    • It allows for easy drag-and-drop of UI elements

    • APDC supports multiple platforms and programming languages

    • It offers a variety of templates and themes to choose from

  • Answered by AI
  • Q2. What is anypoint runtime fabric
  • Ans. 

    Anypoint Runtime Fabric is a container service that automates the deployment and scaling of Mule runtimes.

    • It provides a platform for deploying and managing Mule applications across on-premises, cloud, and hybrid environments.

    • It enables high availability, fault tolerance, and disaster recovery for Mule runtimes.

    • It supports Kubernetes as the underlying container orchestration platform.

    • It allows for centralized management...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thoroughly all the questions related to mulesoft

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

  • Q1. What is java
  • Q2. What is react
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Aptitude Test 

Used Mettl platform for test

I applied via Campus Placement and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. First, they ask me to introduce myself.
  • Q2. Project Related Question
  • Q3. As I am CR so they also asked about my Experience and which difficulties faced in College as a CR.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident and speak without afraid...
Interviewer sees your confidence and thinking technique whatever you think about when any problem asked by Interviewer just start speaking about your approach instead of just think in mind and then say answer....

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Tietoevry?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

We were supposed to give test in any time between 3 PM to 9 PM.

  • Q1. 

    Total Unique Paths Problem Statement

    You are located at point ‘A’, the top-left corner of an M x N matrix, and your target is point ‘B’, the bottom-right corner of the same matrix. Your task is to calcula...

  • Ans. 

    The problem involves finding the total number of unique paths from the top-left to bottom-right cell of a matrix by moving only right or down.

    • Use dynamic programming to solve the problem efficiently.

    • Create a 2D array to store the number of unique paths at each cell.

    • Initialize the first row and first column with 1 as there is only one way to reach them.

    • For each cell (i, j), the number of unique paths is the sum of paths...

  • Answered by AI
  • Q2. 

    Subtree Node Count Problem

    We are provided with a tree containing 'N' nodes, numbered from 0 to N-1. The objective is to determine the total number of nodes within each subtree of the provided tree. Speci...

  • Ans. 

    Given a tree with N nodes, find the number of elements in each subtree rooted at every node.

    • Traverse the tree using Depth First Search (DFS) to calculate subtree sizes for each node.

    • Use an array to store subtree sizes for each node, starting with leaf nodes having size 1.

    • The subtree size of a node is the sum of subtree sizes of its children plus 1 for the node itself.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 120 minutes
Round difficulty - Medium

Pair Programming Interview( this round is similar to machine coding round) it started around 11 AM

Focus Areas: Problem solving and implementation of extensions.

The pair coding round is focused on OOPS concepts. You are paired with a TWer for this round. They let you code first for an hour and in the next hour they review your code and suggest changes which would improve the code structure, readability and make it modular and reusable and functional.
 

  • Q1. 

    River Crossing: Help Ninja Cross Over

    Ninja stands at the start of a wooden bridge over a river. Some segments of the bridge are damaged. The undamaged segments, marked as 'safe', are listed in an array S...

  • Ans. 

    Check if Ninja can cross the river by jumping from one safe segment to another based on given constraints.

    • Iterate through the 'SAFE' array and check if Ninja can make the required jumps to reach the last safe segment.

    • Ensure that the next jump is either 'X' - 1, 'X', or 'X' + 1 units from the previous jump.

    • Return 'true' if Ninja can successfully cross the river, otherwise return 'false'.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 120 minutes
Round difficulty - Medium

Students who were shortlisted from Pair Programming round was selected for this round around 3 PM. In this round there were two interviewer.

  • Q1. 

    Middle of a Linked List

    You are given the head node of a singly linked list. Your task is to return a pointer pointing to the middle of the linked list.

    If there is an odd number of elements, return the ...

  • Ans. 

    Return the middle element of a singly linked list, or the one farther from the head if there are even elements.

    • Traverse the linked list with two pointers, one moving twice as fast as the other

    • When the fast pointer reaches the end, the slow pointer will be at the middle

    • Return the element pointed to by the slow pointer

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaIt was for 2020 undergraduateThought Works interview preparation:Topics to prepare for the interview - Object Oriented Programming, System Design, Operating System, DBMS, Data Structures and Algorithms (Dynamic Programming, Trees, LinkedList)Time required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Have good grasp on OOPS since they have a round named Pair Programming round which is focused upon this. 
Tip 2 : Write clean, modular and functional code.
Tip 3 : Practice Data Structures and Algorithms
Tip 4 : You should know breadth and depth of whatever is mentioned in your resume.
Tip 5 : Be loud and clear.

Application resume tips for other job seekers

Tip 1 : Make single page resume.
Tip 2 : Mention relevant things on resume.
Tip 3 : Do not put any false things on resume. Projects, internships you are mentioning be ready to answer questions related to it regarding what you solved, idea, databases, design.
Tip 4 : Contribute in open source, participate in hackathons.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Interview questions on .net technology

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

Interview Questionnaire 

2 Questions

  • Q1. Company policies and locations.
  • Ans. 

    Company policies and locations

    • Our company has strict policies regarding data privacy and security

    • We have multiple locations across the country and internationally

    • Each location has its own set of policies and procedures

    • Employees are expected to adhere to all company policies regardless of location

  • Answered by AI
  • Q2. Training and employee development

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics and be confident with your answer. Show your keenness to learn new things and also try to solve all question.

Interview Questionnaire 

7 Questions

  • Q1. Tell me about yourself?
  • Q2. Do you know anything about DBMS? Where is it used?
  • Ans. 

    DBMS stands for Database Management System. It is used to manage and organize data in a structured manner.

    • DBMS is used in various industries such as healthcare, finance, education, and more.

    • It helps in creating, modifying, and deleting data in a database.

    • DBMS provides security features to protect data from unauthorized access.

    • Examples of DBMS include MySQL, Oracle, Microsoft SQL Server, and PostgreSQL.

  • Answered by AI
  • Q3. Practical example of object
  • Ans. 

    An object is a self-contained entity that contains data and behavior.

    • Objects are instances of classes

    • They have attributes (data) and methods (behavior)

    • Objects can interact with each other through method calls

    • Example: A car object has attributes like color, make, and model, and methods like start and stop

  • Answered by AI
  • Q4. Practical implementation of sorting
  • Ans. 

    Sorting is the process of arranging data in a particular order.

    • Sorting can be done in ascending or descending order.

    • Common sorting algorithms include bubble sort, insertion sort, and quicksort.

    • Sorting can be done on various data types, including strings, numbers, and objects.

    • Sorting can be done using built-in functions in programming languages such as sort() in JavaScript.

    • Sorting can be optimized for performance by cho...

  • Answered by AI
  • Q5. Difference between C and C++
  • Ans. 

    C is a procedural programming language while C++ is an object-oriented programming language.

    • C++ supports classes and objects while C does not.

    • C++ has better support for polymorphism and inheritance than C.

    • C++ has a larger standard library than C.

    • C++ allows function overloading while C does not.

    • C++ supports exception handling while C does not.

  • Answered by AI
  • Q6. Tell me about yourself
  • Q7. Will your family allow you to move to Hyderabad
  • Ans. 

    Yes, my family is supportive of my career and relocation decisions.

    • My family understands the importance of career growth and is supportive of my decisions.

    • We have discussed the possibility of relocation and they are willing to make the necessary adjustments.

    • They trust my judgment and believe that this move will be beneficial for my career.

    • We have also considered the quality of life in Hyderabad and believe that it will...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Level was pretty high in case of Quant. You not only need a lot of practice but also practice of some really good questions.
Other than quant all the other sections are easy and direct.
Duration: 60 minutes
Total Questions: 45

Round: Group Discussion
Experience: They give 10 mins to think about the topic and 20 mins for discussion. Main purpose is to check your communication skills so keep on discussing . Even if you can't think of any new point repeat your points
Duration: 20 minutes

Round: Technical Interview
Experience: There were many other questions other than this but what they were emphasizing was whether you have done any practical implementation of IT or the coding skills. Tell them about your projects and how you implemented the coding part.They are much interested in logic than syntax.
Since I'm from ECE these were the main things I talked about.

Round: HR Interview
Experience: It was much of an interactive session.They again asked about projects-nothing technical only some basic idea. Lasted hardly 10 mins.

Round: Other Interview
Experience: In this round they mainly explained the salary structure. This one too was of 10 mins.

General Tips: Even if you don't have excellent coding knowledge do appear for the company. They are not looking for same qualities in each candidate. You should be willing enough to learn.
Skills: Aptitude, Communication Skills, Basic Technical Knowledge-mainly emphasized on the implementation part.
College Name: NIT Bhopal
Motivation: The company dates back to 1983 with locations in almost every US state. It is the 43rd company in Fortune 100 US companies. You have options to switch within the departments. Other than this the compensation is 6lpa.

Skills evaluated in this interview

Tietoevry Interview FAQs

How many rounds are there in Tietoevry Software Developer interview?
Tietoevry interview process usually has 2-3 rounds. The most common rounds in the Tietoevry interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Tietoevry Software Developer 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 Tietoevry. The most common topics and skills that interviewers at Tietoevry expect are Agile, C++, Html5, OWASP and Unit Testing.
What are the top questions asked in Tietoevry Software Developer interview?

Some of the top questions asked at the Tietoevry Software Developer interview -

  1. How do you handle migrations in Entity Framework Co...read more
  2. What is mulesoft any point platf...read more
  3. What is any point design cen...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 6 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 75%
2-4 weeks 25%
View more
Join Tietoevry We create purposeful technology that reinvents the world for good.
Tietoevry Software Developer Salary
based on 152 salaries
₹6 L/yr - ₹12.4 L/yr
17% less than the average Software Developer Salary in India
View more details

Tietoevry Software Developer Reviews and Ratings

based on 35 reviews

3.9/5

Rating in categories

3.7

Skill development

4.3

Work-life balance

3.3

Salary

4.0

Job security

4.1

Company culture

3.3

Promotions

4.0

Work satisfaction

Explore 35 Reviews and Ratings
Senior Software Engineer
1.2k salaries
unlock blur

₹14.9 L/yr - ₹27 L/yr

Software Engineer
903 salaries
unlock blur

₹5.9 L/yr - ₹14.6 L/yr

Softwaretest Engineer
336 salaries
unlock blur

₹3.5 L/yr - ₹7.4 L/yr

Lead Software Engineer
322 salaries
unlock blur

₹17.5 L/yr - ₹30.2 L/yr

Senior Test Engineer
215 salaries
unlock blur

₹11.4 L/yr - ₹20.7 L/yr

Explore more salaries
Compare Tietoevry with

Synechron

3.5
Compare

Movate

3.2
Compare

Sopra Steria

3.8
Compare

NCR Corporation

3.7
Compare
write
Share an Interview