Upload Button Icon Add office photos
Premium Employer

i

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

Chubb Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Chubb Interview Questions, Process, and Tips

Updated 26 Feb 2025

Top Chubb Interview Questions and Answers

View all 36 questions

Chubb Interview Experiences

Popular Designations

50 interviews found

Senior Data Analyst Interview Questions & Answers

user image manthena saivarma

posted on 19 Oct 2024

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

5 sql coding questions from hacker rank. Basic sql questions, if you are experienced you will solve them in 15 to 20 min

Round 2 - Technical 

(4 Questions)

  • Q1. How do you seperate name from emails for example *****,***** etc.. We need to get name form those mails in sql
  • Ans. 

    Use SQL string functions like SUBSTRING and CHARINDEX to separate name from emails.

    • Use CHARINDEX to find the position of the '@' symbol in the email address.

    • Use SUBSTRING to extract the characters before the '@' symbol as the name.

    • Consider handling cases where there are multiple names or special characters in the email address.

  • Answered by AI
  • Q2. There is a table matches which has team 1,team 2 and winner columns. Sample data like ind pak pak and pak ind ind and sl ban sl. So a team can play mutliple matches. Final output should be team, no of matc...
  • Ans. 

    Calculate the number of matches won and lost by each team based on the given data in the matches table.

    • Group the data by team and count the number of matches won and lost for each team.

    • Use the winner column to determine the outcome of each match.

    • Create a query to calculate the number of matches won and lost for each team.

    • Example: Team A won 2 matches and lost 1 match.

    • Example: Team B won 1 match and lost 2 matches.

  • Answered by AI
  • Q3. Table a has 1, 1,0,0,null and table b has 1,0,null,null. Resultant rows for all joins
  • Ans. 

    The resultant rows for all joins between table a and table b with given values.

    • Inner join: 1

    • Left join: 1, 1, 0, 0, null

    • Right join: 1, 0, null, null

    • Full outer join: 1, 1, 0, 0, null, null

  • Answered by AI
  • Q4. Explain primary and secondary indexing. And more questions on indexing
Round 3 - Technical 

(3 Questions)

  • Q1. Explain about your projects
  • Ans. 

    I have worked on various projects involving data analysis, visualization, and predictive modeling.

    • Developed predictive models to forecast sales trends and customer behavior

    • Created interactive dashboards using Tableau for data visualization

    • Performed data cleaning and preprocessing to ensure accuracy and consistency

    • Utilized machine learning algorithms such as regression and clustering for analysis

    • Collaborated with cross-...

  • Answered by AI
  • Q2. Follow up questions on projects
  • Q3. Write a query to seperate first name, midle name and last name from full name in sql
  • Ans. 

    Use SUBSTRING_INDEX function in SQL to separate first name, middle name, and last name from full name.

    • Use SUBSTRING_INDEX function to extract first name by specifying space as delimiter

    • Use SUBSTRING_INDEX function to extract last name by specifying space as delimiter and -1 as position

    • Use combination of SUBSTRING_INDEX and REPLACE functions to extract middle name if present

  • Answered by AI

Skills evaluated in this interview

Senior Data Analyst Interview Questions asked at other Companies

Q1. What is the difference between Least Squares Method and the maximum likelihood
View answer (1)

Societe Generale Global Solution Centre

We proudly boast a 4.1 rating for Job Security on AmbitionBox, thanks to our employees

We don't just offer jobs; we offer peace of mind

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
-
Result
-

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Assignment 

1. HackerRank Test conducted - One Java Coding, One Selenium Coding, 10 Objective questions

Round 2 - Technical 

(2 Questions)

  • Q1. It is Technical round but she asked all Java coding questions Print Pyramid 54321 4321 321 21 1
  • Q2. Identify the duplicate words in string and their position "hi Hello hi hello"
  • Ans. 

    Identify duplicate words in a string and their positions.

    • Split the string into an array of words

    • Create a map to store word frequencies and positions

    • Iterate through the array and update the map

    • Identify words with frequency > 1 and their positions

  • Answered by AI

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)
Chubb Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at VNR Vignan Jyothi Institute of Engineering and Technology, Hyderabad and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

5 coding questions, 2-medium and 3 easy - medium

Round 2 - Technical 

(4 Questions)

  • Q1. Linked List Concept
  • Q2. DSA: prime no. or not optimal approach
  • Ans. 

    Optimal approach for checking if a number is prime or not using DSA

    • Optimal approach for checking prime numbers is to iterate up to square root of the number

    • Use trial division method to check divisibility by numbers up to square root of the number

    • Time complexity of this approach is O(sqrt(n))

  • Answered by AI
  • Q3. Class, object with real time examples
  • Ans. 

    A class is a blueprint for creating objects, which are instances of the class. Objects have attributes and behaviors.

    • Classes define the structure and behavior of objects.

    • Objects are instances of classes and have their own unique attributes and behaviors.

    • Example: Class 'Car' with attributes like 'color' and behaviors like 'drive'. Object 'myCar' is an instance of 'Car' with color 'red' and can drive.

    • Example: Class 'Pers...

  • Answered by AI
  • Q4. SQL types of normal forms
  • Ans. 

    SQL normal forms are levels of organization for relational databases to reduce redundancy and improve data integrity.

    • First normal form (1NF) - Eliminate repeating groups and ensure each column contains atomic values.

    • Second normal form (2NF) - Meet 1NF requirements and have all non-key attributes fully functionally dependent on the primary key.

    • Third normal form (3NF) - Meet 2NF requirements and have no transitive depend...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. About Projects and contribution in that
  • Q2. Managerial Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on projects, dsa, subjects, and sql mainly

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. General selenium interview questions
  • Q2. Project explanation and details about the projects worked on
  • Ans. 

    I have worked on various projects in the field of software testing, including automation testing, performance testing, and regression testing.

    • Automation testing using tools like Selenium and Appium

    • Performance testing using JMeter to analyze system performance under different load conditions

    • Regression testing to ensure new code changes do not negatively impact existing functionality

  • Answered by AI
Round 2 - Coding Test 

Valid paranthesis question and 1 selenium question

Round 3 - One-on-one 

(2 Questions)

  • Q1. Asked about the experience and projects
  • Q2. CI CD pipelines

Senior Test Engineer Interview Questions asked at other Companies

Q1. From Selenium -> Which Automation framework I have implemented in my project . Explain each framework components. How to handle dynamic web element. how to handle hidden element. how to upload file in selenium, where hashmap is used in s... read more
View answer (1)

Chubb interview questions for popular designations

 Software Engineer

 (7)

 Intern

 (3)

 Associate

 (2)

 Data Scientist

 (2)

 QA Engineer

 (2)

 Senior Analyst

 (2)

 Senior Software Engineer

 (2)

 Technical Lead

 (2)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Swap variables if two variables are given.
  • Q2. Given x and y predicted y for a particular x.

Senior Data Engineer Interview Questions asked at other Companies

Q1. Write a query to get the customer with the highest total order value for each year, month. [Note: Order table is different and Customer table is different. Order_ID and Customer_ID are the PK of the table with Oid from Customer table being ... read more
View answer (2)

Get interview-ready with Top Chubb Interview Questions

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

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(1 Question)

  • Q1. Questions based on your technology
Round 2 - Coding Test 

Scenario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a great company to work in, if you get the opportunity don't miss it

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (190)

Jobs at Chubb

View all

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 23 Feb 2025

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

I was interviewed in Jan 2025.

Round 1 - Coding Test 

Basic Python and PySpark coding questions.

Round 2 - Coding Test 

SQL window functions and optimization.

Round 3 - Case Study 

Questions for managers regarding team collaboration.

Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. Explain dependency injection in .NET and how to resolve dependency?
  • Ans. 

    Dependency injection in .NET is a design pattern where dependencies are injected into a class rather than the class creating them itself.

    • Dependency injection helps in achieving loose coupling between classes.

    • In .NET, dependency injection can be implemented using frameworks like Unity, Ninject, or built-in .NET Core DI container.

    • Dependencies can be resolved through constructor injection, property injection, or method in...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Discussion on work experience and what are the projects that you have worked on?

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Normal personality and resume related How you handle failure situation Talk about your job How you manage conflicts in team Agile ceremonies and methodologies How a typical day of your look liks
Round 2 - One-on-one 

(1 Question)

  • Q1. Agile ceremonies Introduce yourself Communication confidence Cultural diversity and women leadership Y this role?

Interview Preparation Tips

Topics to prepare for Chubb Program Manager interview:
  • Agile methodologies
  • Okr
  • JIRA
  • Ticketing tool
  • IT Project Management
  • Automation
  • Ci/CD
  • Devops
  • Devsecops
Interview preparation tips for other job seekers - Be honest and tell confidently. Feel it like conversation rather than interview. Be 100% sure of everything on your interview.

Program Manager Interview Questions asked at other Companies

Q1. Use case scenario - in case a new engagement is awarded to Infosys, share how do you manage that Project/Program?
View answer (9)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Aptitude questions . Medium level questions. Can be prepare in 1 month

Round 2 - Coding Test 

Questions on Graph and DP. Hard level questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA very well and make good projects

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Contribute & help others!
anonymous
You can choose to be anonymous

Chubb Interview FAQs

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

Some of the top questions asked at the Chubb interview -

  1. how will you get the embeddings of long sentences/paragraphs that transformer m...read more
  2. There is a table matches which has team 1,team 2 and winner columns. Sample dat...read more
  3. in what scenarios would you advice me to not use ReLU in my hidden laye...read more
How long is the Chubb interview process?

The duration of Chubb interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

INTERVIEWS

Boeing

85 interviews

INTERVIEWS

Apexon

135 interviews

INTERVIEWS

Xogene

8 interviews

INTERVIEWS

OpenBet

3 interviews

INTERVIEWS

ABB

233 interviews

INTERVIEWS

Bechtel

No Interviews

INTERVIEWS

Greyb

No Interviews

INTERVIEWS

Prodesk

No Interviews

Tell us how to improve this page.

Chubb Interview Process

based on 44 interviews

Interview experience

4
  
Good
View more

HCLTech

There's no stopping you

Interview Questions from Similar Companies

HDFC Life Interview Questions
4.0
 • 607 Interviews
Allianz Interview Questions
4.4
 • 20 Interviews
AXA Interview Questions
4.0
 • 14 Interviews
AIG Interview Questions
4.0
 • 10 Interviews
Munich Re Interview Questions
4.0
 • 2 Interviews
View all

Chubb Reviews and Ratings

based on 189 reviews

3.8/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

3.7

Salary

4.0

Job security

3.7

Company culture

3.3

Promotions

3.6

Work satisfaction

Explore 189 Reviews and Ratings
AVP

Telangana

4-8 Yrs

Not Disclosed

Integration Engineer

Hyderabad / Secunderabad

1-4 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
247 salaries
unlock blur

₹9.2 L/yr - ₹30 L/yr

Technical Lead
198 salaries
unlock blur

₹16 L/yr - ₹45.6 L/yr

Software Engineer
126 salaries
unlock blur

₹6 L/yr - ₹17 L/yr

Data Scientist
40 salaries
unlock blur

₹8.5 L/yr - ₹26.5 L/yr

Senior Associate
39 salaries
unlock blur

₹4.8 L/yr - ₹15 L/yr

Explore more salaries
Compare Chubb with

AIG

4.0
Compare

Allianz

4.4
Compare

AXA

4.0
Compare

Zurich Insurance

4.4
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent