Upload Button Icon Add office photos

Filter interviews by

Milliman Software Developer Trainee Interview Questions and Answers

Updated 7 Aug 2023

Milliman Software Developer Trainee Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed before Aug 2022. 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 

Normal Apti question like frog & wall quiz
If a frog jump 3 feet and slide two feet in single jump than how many jump required to get out 30 feet wall

Round 3 - Coding Test 

Basic javascript programming
Basic ReactJs
Basic SQL

Round 4 - One-on-one 

(1 Question)

  • Q1. Intermediate Question as per post requirements

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are going to join as trainee than there is no job security

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Dec 2024. There were 10 interview rounds.

Round 1 - Aptitude Test 

Any ideas for an aptitude test?

Round 2 - Technical 

(2 Questions)

  • Q1. You have a good network connection.
  • Q2. Which individuals are currently employed?
Round 3 - Case Study 

What is education in place?

Round 4 - Coding Test 

What is a SQL Server?

Round 5 - Group Discussion 

Effective communication and any suggestion.

Round 6 - HR 

(2 Questions)

  • Q1. What is your name?
  • Q2. What is your educational background?
Round 7 - HR 

(2 Questions)

  • Q1. What type of work does the Deloitte company engage in?
  • Q2. What type of work does Deloitte engage in?
Round 8 - HR 

(2 Questions)

  • Q1. What is your father's name?
  • Q2. What is your father's name?
Round 9 - Assignment 

Engage with any assignment provided.

Round 10 - Assignment 

Please provide any assignments you have.

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes I am interested in this job
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Plugin pipeline based scenario question which will trigger first?
  • Q2. Which jscript method used to prevent form save??
  • Ans. 

    The onbeforeunload method is used to prevent form save.

    • Use the onbeforeunload method to display a warning message before leaving the page without saving the form.

    • Return a custom message in the method to prompt the user to confirm if they want to leave the page.

    • Example: window.onbeforeunload = function() { return 'Are you sure you want to leave this page without saving?'; };

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Behavioral interview
  • Q2. Package negotiations

Interview Preparation Tips

Interview preparation tips for other job seekers - What limitations each implementation has. Keep that clear. That will help you to clear scenario based questions.

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Technology (NIT), Patna and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. MULTIPLE QUESTIONS OF OOPS
  • Q2. Program of prime number
  • Ans. 

    A program to find prime numbers within a given range

    • Iterate through numbers in the given range

    • Check if each number is divisible by any number other than 1 and itself

    • If not divisible, it is a prime number

  • Answered by AI
  • Q3. Pseudo code of finding ones in a number
  • Ans. 

    Count the number of ones in a given number using pseudo code

    • Initialize a count variable to 0

    • Iterate through each bit of the number and check if it is 1

    • Increment the count if the bit is 1

    • Return the count as the result

  • Answered by AI
  • Q4. Basic questions of sql and mongodb

Interview Preparation Tips

Interview preparation tips for other job seekers - have proper command of oops ,basic DSA and have good projects

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Difference between inheritance and polymorphism
  • Ans. 

    Inheritance is a way to create a new class using properties and methods of an existing class, while polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Inheritance allows a class to inherit properties and methods from another class.

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

    • Inheritance promotes code reusability and reduce...

  • Answered by AI
  • Q2. Write a code to check anagram or not
  • Ans. 

    Code to check if two strings are anagrams

    • Create a function that takes in two strings as input

    • Convert both strings to lowercase and remove any spaces

    • Sort both strings and compare if they are equal to determine if they are anagrams

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They asked very basic java questions like difference between inheritance and polyformism.
Asked basic java concepts

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Contained only mcq questions related to maths and reasoning

Round 2 - Technical 

(2 Questions)

  • Q1. How to detect two loops in a linkedlist
  • Ans. 

    Use Floyd's Cycle Detection Algorithm to detect two loops in a linked list.

    • Initialize two pointers, slow and fast, both starting at the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps in each iteration.

    • If they meet at some point, there is a loop. Reset one pointer to head and move both by one step until they meet again to find the start of the loop.

  • Answered by AI
  • Q2. Mainly all the basics questions on DSA and C++ Language and all the ds like stacks, linkedlist, tree, array, queue,map difference between queue and stack
Round 3 - Technical 

(3 Questions)

  • Q1. Questions on project
  • Q2. Code simple que like reverse the string in every possible language that is mentioned on yor resume ,like node js react or python and even c language
  • Q3. Basics questions of os like deadlocks
Round 4 - HR 

(1 Question)

  • Q1. I was note selected for this round

Interview Preparation Tips

Topics to prepare for BCG Junior Software Engineer interview:
  • DSA
  • React
  • SQL
  • Linkedlist
  • array

Skills evaluated in this interview

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

I applied via Naukri.com

Round 1 - One-on-one 

(2 Questions)

  • Q1. Write a java program to sort an array
  • Ans. 

    Java program to sort an array of strings

    • Use Arrays.sort() method to sort the array of strings

    • Import java.util.Arrays package

    • Example: String[] arr = {"apple", "banana", "orange"}; Arrays.sort(arr);

  • Answered by AI
  • Q2. Collections in java and springboot
  • Ans. 

    Collections in Java and Spring Boot are used to store and manipulate groups of objects.

    • Collections in Java are used to store multiple objects in a single unit.

    • Spring Boot provides support for managing collections through various data structures like List, Set, Map, etc.

    • Collections in Java and Spring Boot help in organizing and manipulating data efficiently.

    • Example: List names = new ArrayList<>();

Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Java questions
  • Q2. Spring, Spring boot basics
Round 2 - Technical 

(2 Questions)

  • Q1. Microservices Communications
  • Q2. Project level experiences
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology (NIT), Kurukshetra and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

40 minutes, DSA questions in C++.

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

I was interviewed in Dec 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Lifecycle hooks of Angular
  • Ans. 

    Angular lifecycle hooks are methods that allow you to tap into specific points in a component's lifecycle.

    • ngOnChanges: called when an input property changes

    • ngOnInit: called once the component is initialized

    • ngDoCheck: called during every change detection run

    • ngAfterContentInit: called after content (ng-content) has been projected into the component

    • ngAfterContentChecked: called after every check of the projected content

    • ng...

  • Answered by AI
  • Q2. SOLID principles
Round 2 - Technical 

(1 Question)

  • Q1. Questions on SQL
Round 3 - HR 

(1 Question)

  • Q1. Introduction and basic questions

Skills evaluated in this interview

Milliman Interview FAQs

How many rounds are there in Milliman Software Developer Trainee interview?
Milliman interview process usually has 4 rounds. The most common rounds in the Milliman interview process are Aptitude Test, Coding Test and One-on-one Round.

Tell us how to improve this page.

People are getting interviews through

based on 1 Milliman interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Accenture Interview Questions
3.9
 • 8k Interviews
Deloitte Interview Questions
3.8
 • 2.8k Interviews
PwC Interview Questions
3.4
 • 1.3k Interviews
Ernst & Young Interview Questions
3.5
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 772 Interviews
ZS Interview Questions
3.4
 • 466 Interviews
BCG Interview Questions
3.8
 • 191 Interviews
Blackrock Interview Questions
3.8
 • 101 Interviews
Bain & Company Interview Questions
3.8
 • 101 Interviews
View all
Milliman Software Developer Trainee Salary
based on 8 salaries
₹2.5 L/yr - ₹5 L/yr
At par with the average Software Developer Trainee Salary in India
View more details
Benefits Administrator
94 salaries
unlock blur

₹2.7 L/yr - ₹7.3 L/yr

Software Engineer
34 salaries
unlock blur

₹3.5 L/yr - ₹12.5 L/yr

Data Warehouse Specialist
24 salaries
unlock blur

₹4 L/yr - ₹13 L/yr

Actuarial Analyst
21 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Data Engineer
18 salaries
unlock blur

₹3 L/yr - ₹16.2 L/yr

Explore more salaries
Compare Milliman with

Willis Towers Watson

3.8
Compare

Aon

3.8
Compare

Mercer

3.7
Compare

Deloitte

3.8
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