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

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Tietoevry Software Developer Trainee Interview Questions, Process, and Tips

Updated 30 Dec 2022

Top Tietoevry Software Developer Trainee Interview Questions and Answers

Tietoevry Software Developer Trainee Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Basic Aptitude and Computer fundamental questions.
Round 2 - Group Discussion 

2nd round was GD which was not an elimination round.

Round 3 - Technical 

(1 Question)

  • Q1. Final tech+hr interview

Interview Preparation Tips

Interview preparation tips for other job seekers - OOPS and SQL and your projects are mostly asked in the interview.

I applied via Campus Placement and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Group Discussion 

Group discussion on advantages of facebook vs WhatsApp

Round 2 - Technical 

(5 Questions)

  • Q1. What are the OOPS concepts? Explain
  • Ans. 

    OOPS concepts are the fundamental principles of Object-Oriented Programming that help in designing and implementing software.

    • Encapsulation: Bundling data and methods together in a class to hide the internal details.

    • Inheritance: Creating new classes from existing classes to reuse code and establish a hierarchical relationship.

    • Polymorphism: The ability of objects to take on many forms, allowing methods to be overridden a...

  • Answered by AI
  • Q2. What is normalization
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down a database into smaller, more manageable tables

    • Each table should have a primary key and only contain data that is related to that key

    • Normalization helps to prevent data inconsistencies and anomalies

    • There are different levels of normalization, with each level building on the ...

  • Answered by AI
  • Q3. Why not higher studies?
  • Q4. Why prefer windows over Linux?
  • Ans. 

    Windows is preferred for its user-friendly interface and compatibility with popular software.

    • Windows has a more intuitive and user-friendly interface compared to Linux.

    • Many popular software and games are designed to run on Windows.

    • Windows has better support for hardware drivers.

    • Windows is more widely used in corporate environments.

    • Windows offers better compatibility with Microsoft Office suite.

    • Linux is preferred for it

  • Answered by AI
  • Q5. Explain Bubble sort and its program
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Bubble sort compares adjacent elements in an array and swaps them if they are in the wrong order

    • It repeats this process until the array is sorted

    • It has a time complexity of O(n^2)

    • Example: ['apple', 'banana', 'orange', 'grape'] -> ['apple', 'banana', 'grape', 'orange'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be thorough with basics and programming. Be confident with answers

Skills evaluated in this interview

Software Developer Trainee Interview Questions Asked at Other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. ... read more
Q2. What is a static keyword in java? Where are the static variables ... read more
Q3. 1.Do you use social media? What is the use of it? 2.Tell us about ... read more
Q4. 2.You are given a chess board and the position of queen find the ... read more
asked in CodeAegis
Q5. 4 pills are medicine, in which 2 pills for fever and 2 pills for ... read more

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude Test is really amazing. Level of Test is easy to medium and somewhere challenging. You can crack Aptitude if you have good knowledge of Arithmetic and logical reasoning.

Round 2 - Technical 

(1 Question)

  • Q1. Technical interview is somewhere tricky. Do your resume well prepared before giving technical interview. Most of the questions is from resume and some are tricky and challenging. You can easily cracked Tec...
Round 3 - HR 

(1 Question)

  • Q1. HR is like formality round in most of the company. But I must say whatever is your expectation and desire be frankly tell to HR. Don't hesitate to ask something if you have question in your mind. This roun...

Interview Preparation Tips

Topics to prepare for Sopra Steria Software Engineer interview:
  • Java
  • OOPS
  • DBMS
  • Software Testing
  • Resume
Interview preparation tips for other job seekers - I got this company in my campus placement. It is very difficult to grab job now a days if you are applying off campus basically. Just focus on your skill and update yourself day by day. Focus on your goal do hardwork until to get your dream job. Don't loose hope. One day you will get your dream job.

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

I applied via Walk-in and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Quantitative ability and logical ability

Round 2 - Technical 

(2 Questions)

  • Q1. In which programming language you are good at?
  • Ans. 

    I am proficient in Java and Python.

    • Strong understanding of object-oriented programming concepts

    • Experience with Java frameworks such as Spring and Hibernate

    • Proficient in Python libraries such as NumPy and Pandas

  • Answered by AI
  • Q2. Write a program to print HCF of numbers as output
  • Ans. 

    Program to print HCF of numbers as output

    • Take input of two numbers from user

    • Find the smaller number between the two

    • Run a loop from 1 to the smaller number

    • Check if both numbers are divisible by the current loop variable

    • If yes, update the HCF variable

    • Print the HCF as output

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why should we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - I attended interview for this company and they saw my capability and adaptability only.

I applied via Naukri.com

Interview Questionnaire 

1 Question

  • Q1. About experience into relavant technology, what all technical side you have worked upon

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 5 rounds, 3 internal(technical) 1 HR and 1 client. Process can be long and tedious.
First two rounds were average in my case , while 3rd round(technical) was long and intensive, and covered most aspect of the technology I was interviewed for

Interview Questionnaire 

1 Question

  • Q1. Normally attended interviews. interview panel is fine

Interview Preparation Tips

Interview preparation tips for other job seekers - work environment not good,
in hand pay is good,
upper management is not respocible,
no job security.
no learning. not a longturm company.

I applied via Approached by Company and was interviewed before Mar 2021. There were 4 interview rounds.

Round 1 - Assignment 
Round 2 - Coding Test 

DSA

Round 3 - Group Discussion 

About Social changes

Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. Very basic questions

Interview Preparation Tips

Topics to prepare for ThoughtWorks Software Developer interview:
  • DSA
Interview preparation tips for other job seekers - Prepare DSA well and be well with Hands-on in coding

Interview Questionnaire 

7 Questions

  • Q1. Tell me about yourself?
  • Ans. 

    I am a software developer with experience in Java and Python.

    • I have a Bachelor's degree in Computer Science.

    • I have worked on various projects involving web development and data analysis.

    • I am proficient in Java and Python programming languages.

    • I am a quick learner and enjoy working in a team environment.

  • Answered by AI
  • 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
  • Ans. 

    I am a software developer with experience in Java and Python. I am passionate about coding and always eager to learn new technologies.

    • Experienced in Java and Python

    • Passionate about coding

    • Eager to learn new technologies

  • Answered by AI
  • 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

I appeared for an interview in Jun 2017.

Interview Questionnaire 

1 Question

  • Q1. Questions related to core java, advanced java, programs,

Interview Preparation Tips

Round: Technical + HR Interview
Experience: Previous work experience scenarios based questions

Tietoevry Interview FAQs

How many rounds are there in Tietoevry Software Developer Trainee interview?
Tietoevry interview process usually has 3 rounds. The most common rounds in the Tietoevry interview process are Technical, Group Discussion and Resume Shortlist.
What are the top questions asked in Tietoevry Software Developer Trainee interview?

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

  1. What are the OOPS concepts? Expl...read more
  2. Why prefer windows over Lin...read more
  3. Explain Bubble sort and its prog...read more

Tell us how to improve this page.

Tietoevry Software Developer Trainee Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Tietoevry We create purposeful technology that reinvents the world for good.

Interview Questions from Similar Companies

Synechron Interview Questions
3.5
 • 363 Interviews
Movate Interview Questions
3.3
 • 258 Interviews
Globant Interview Questions
3.8
 • 172 Interviews
SS&C TECHNOLOGIES Interview Questions
3.3
 • 170 Interviews
ThoughtWorks Interview Questions
3.9
 • 147 Interviews
Sopra Steria Interview Questions
3.8
 • 127 Interviews
Luxoft Interview Questions
3.7
 • 123 Interviews
TEKsystems Interview Questions
3.3
 • 117 Interviews
View all
Senior Software Engineer
1.1k salaries
unlock blur

₹8.4 L/yr - ₹29 L/yr

Software Engineer
847 salaries
unlock blur

₹4 L/yr - ₹15 L/yr

Softwaretest Engineer
327 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Lead Software Engineer
318 salaries
unlock blur

₹9.7 L/yr - ₹30 L/yr

Senior Test Engineer
214 salaries
unlock blur

₹6.7 L/yr - ₹24 L/yr

Explore more salaries
Compare Tietoevry with

Synechron

3.5
Compare

Movate

3.3
Compare

Sopra Steria

3.8
Compare

SS&C TECHNOLOGIES

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