Upload Button Icon Add office photos
Premium Employer

i

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

Digit Insurance 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

Digit Insurance Graduate Trainee Interview Questions and Answers

Updated 27 Dec 2024

Digit Insurance Graduate Trainee Interview Experiences

2 interviews found

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Asked programming coding questions

Round 2 - Technical 

(3 Questions)

  • Q1. Java oops concepts
  • Q2. Resume projects in deep
  • Q3. DSA questions (matrix transpose)
Round 3 - HR 

(2 Questions)

  • Q1. Behavioral questions
  • Q2. Cultural fit questions

Graduate Trainee Interview Questions & Answers

user image A Sri Harsha

posted on 25 Sep 2024

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

I applied via Campus Placement and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

They have asked some basic aptitude and reasoning questions including english

Round 2 - Coding Test 

2 questions of basic knowledge

Graduate Trainee Interview Questions Asked at Other Companies

asked in Flipkart
Q1. Given an array, how do you get the count of pairs that sum to eve ... read more
asked in Freshworks
Q2. Invert a Binary Tree You are provided with a Binary Tree and one ... read more
asked in Freshworks
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Freshworks
Q4. Deepest Left Leaf Node Problem Statement You are provided with a ... read more
asked in TCS
Q5. Consonant Counting Problem Statement Given a string STR comprisin ... read more

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Questionnaire 

2 Questions

  • Q1. Explain your job role in your previous company
  • Q2. Tell us something about the application in which you worked

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready to explain your job role properly and convince the interviewer how you're eligible for the job role.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Feb 2022. 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 - One-on-one 

(1 Question)

  • Q1. BRD related questions
Round 3 - HR 

(1 Question)

  • Q1. Generic Hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Please do not join this company especially IT. If you want to join any other department it is fine. There is an extremely unhealthy environment with inhumane pressure. No motivation, no courtesy when superiors talk to you. This is with all the teams under IT.. employees are not treated with dignity.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What lib list ?
  • Ans. 

    A list of libraries used in software development.

    • Common libraries like React, Angular, jQuery

    • Backend libraries like Express, Django, Spring

    • Database libraries like Sequelize, SQLAlchemy, Hibernate

  • Answered by AI
  • Q2. What is Physical file
  • Ans. 

    A physical file is a file stored on a physical storage device, such as a hard drive or solid-state drive.

    • Physical files are stored on physical storage devices like hard drives or SSDs.

    • They can be accessed and manipulated by software applications.

    • Examples include text documents, images, videos, and executable programs.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is batch job
  • Ans. 

    A batch job is a program that processes a large amount of data in a single run without user interaction.

    • Batch jobs are typically scheduled to run at specific times, often during off-peak hours.

    • They are commonly used for tasks such as data processing, report generation, and system maintenance.

    • Examples of batch job tools include cron in Unix/Linux systems and Task Scheduler in Windows.

  • Answered by AI
  • Q2. What is interctive job
  • Ans. 

    An interactive job is a task or project that requires active participation and engagement from the user.

    • Interactive jobs involve real-time feedback and communication between the user and the system.

    • Examples include video games, online surveys, and interactive websites.

    • Users have control over the outcome of the task based on their input and decisions.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic oops concepts
  • Q2. Web api questions
Interview experience
5
Excellent
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 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a highly experienced Senior Associate with a strong background in [specific field].

    • Over [number] years of experience in [specific field]

    • Expertise in [specific skills or areas]

    • Proven track record of [specific achievements or projects]

    • Strong leadership and team management skills

    • Excellent communication and problem-solving abilities

  • Answered by AI
  • Q2. About your current education

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared

I appeared for an interview in Jul 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Easy level DSA questions were asked to implement.

  • Q1. 

    BFS Traversal in a Graph

    Given an undirected and disconnected graph G(V, E) where V vertices are numbered from 0 to V-1, and E represents edges, your task is to output the BFS traversal starting from the ...

  • Ans. 

    BFS traversal of an undirected and disconnected graph starting from vertex 0.

    • Implement BFS algorithm to traverse the graph starting from vertex 0.

    • Use a queue to keep track of visited nodes and their neighbors.

    • Ensure the traversal starts from vertex 0 and follows the BFS order.

    • Output the BFS traversal sequence for each test case in a separate line.

    • Handle disconnected components by checking for unvisited nodes.

    • Consider t...

  • Answered by AI
  • Q2. 

    DFS Traversal Problem Statement

    Given an undirected and disconnected graph G(V, E), where V is the number of vertices and E is the number of edges, the connections between vertices are provided in the 'GR...

  • Ans. 

    DFS traversal problem to find connected components in an undirected and disconnected graph.

    • Use Depth First Search (DFS) algorithm to traverse the graph and find connected components

    • Maintain a visited array to keep track of visited vertices

    • Iterate through all vertices and perform DFS on unvisited vertices to find connected components

  • Answered by AI
  • Q3. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    Calculate the Nth Fibonacci number efficiently using dynamic programming.

    • Use dynamic programming to store and reuse previously calculated Fibonacci numbers.

    • Start with base cases F(1) and F(2) as 1, then calculate subsequent Fibonacci numbers.

    • Optimize the solution to avoid redundant calculations by storing intermediate results.

    • Time complexity can be reduced to O(N) using dynamic programming.

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

DSA questions based on trees were asked to implement.

  • Q1. 

    Determine the Left View of a Binary Tree

    You are given a binary tree of integers. Your task is to determine the left view of the binary tree. The left view consists of nodes that are visible when the tree...

  • Ans. 

    The task is to determine the left view of a binary tree, which consists of nodes visible when viewed from the left side.

    • Traverse the binary tree level by level from left to right, keeping track of the first node encountered at each level.

    • Use a queue to perform level order traversal of the binary tree.

    • Store the leftmost node at each level in the result array.

    • Return the result array containing the left view of the binary

  • Answered by AI
  • Q2. 

    Right View of Binary Tree

    Given a binary tree of integers, your task is to output the right view of the tree.

    The right view of a binary tree includes the nodes that are visible when the tree is observed...

  • Ans. 

    The task is to output the right view of a binary tree, which includes the nodes visible when observed from the right.

    • Perform level order traversal of the binary tree.

    • For each level, add the rightmost node to the result.

    • Print the result as the right view of the binary tree.

    • Handle null nodes represented by -1 in the input.

  • Answered by AI
  • Q3. 

    Height of Binary Tree

    You are provided with the Inorder and Level Order traversals of a Binary Tree composed of integers. Your goal is to determine the height of this Binary Tree without actually construc...

  • Ans. 

    Find the height of a Binary Tree given its Inorder and Level Order traversals without constructing it.

    • Use the properties of Inorder and Level Order traversals to determine the height of the Binary Tree.

    • The height of a Binary Tree is the number of edges on the longest path from the root to a leaf node.

    • Consider edge cases like a single node tree or empty tree while calculating the height.

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round where the interviewer asked questions to know more about me.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPolicyBazaar.com interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Learn DS, SQL for the interview as it will be ask and be confident about what you are saying
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Aug 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 - HR 

(2 Questions)

  • Q1. Details about yourself
  • Q2. Personal information
Round 3 - Assignment 

They asked question from sql from join group by and from excel they asked about xlookup, vlookup, sumif,countif etc

Interview Preparation Tips

Topics to prepare for PolicyBazaar Business Analyst interview:
  • SQL
  • Advanced Excel
  • guestimate
  • communication
Interview preparation tips for other job seekers - this round is from manager they asked question from guestimate, and about projects you have done

Digit Insurance Interview FAQs

How many rounds are there in Digit Insurance Graduate Trainee interview?
Digit Insurance interview process usually has 2-3 rounds. The most common rounds in the Digit Insurance interview process are Coding Test, Aptitude Test and Technical.
How to prepare for Digit Insurance Graduate Trainee 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 Digit Insurance. The most common topics and skills that interviewers at Digit Insurance expect are Artificial Intelligence, Data Science, Machine Learning and Python.
What are the top questions asked in Digit Insurance Graduate Trainee interview?

Some of the top questions asked at the Digit Insurance Graduate Trainee interview -

  1. DSA questions (matrix transpo...read more
  2. Resume projects in d...read more
  3. Cultural fit questi...read more

Tell us how to improve this page.

Digit Insurance Graduate Trainee Interview Process

based on 3 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 428 Interviews
PolicyBazaar Interview Questions
3.6
 • 356 Interviews
Udaan Interview Questions
3.9
 • 334 Interviews
CARS24 Interview Questions
3.5
 • 333 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
Blinkit Interview Questions
3.7
 • 182 Interviews
BlackBuck Interview Questions
3.8
 • 178 Interviews
Tata AIG Interview Questions
4.1
 • 155 Interviews
View all
Digit Insurance Graduate Trainee Salary
based on 17 salaries
₹4 L/yr - ₹5.2 L/yr
21% more than the average Graduate Trainee Salary in India
View more details

Digit Insurance Graduate Trainee Reviews and Ratings

based on 15 reviews

4.4/5

Rating in categories

4.4

Skill development

4.2

Work-life balance

4.1

Salary

4.4

Job security

4.3

Company culture

4.1

Promotions

4.3

Work satisfaction

Explore 15 Reviews and Ratings
Software Engineer
359 salaries
unlock blur

₹3.2 L/yr - ₹11.5 L/yr

Associate Manager
272 salaries
unlock blur

₹5 L/yr - ₹15.7 L/yr

Senior Associate
229 salaries
unlock blur

₹3.3 L/yr - ₹9 L/yr

Deputy Manager
159 salaries
unlock blur

₹6 L/yr - ₹17.2 L/yr

Associate
154 salaries
unlock blur

₹3 L/yr - ₹6.3 L/yr

Explore more salaries
Compare Digit Insurance with

PolicyBazaar

3.6
Compare

ICICI Lombard General Insurance Company

3.7
Compare

Bajaj Allianz

3.8
Compare

HDFC Ergo General Insurance

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