Upload Button Icon Add office photos

Filter interviews by

Cigna Interview Questions and Answers

Updated 10 Dec 2024

Cigna Interview Experiences

Popular Designations

8 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

Technical Architect Interview Questions asked at other Companies

Q1. How to manage clients, how to handle critical issues with example
View answer (3)
Cigna Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jul 2024. There was 1 interview round.

Product Owner Interview Questions asked at other Companies

Q1. What are the prioritization techniques you use to arrange backlog items?
View answer (3)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

Service Advisor Interview Questions asked at other Companies

Q1. How can you make estimate for damaged or accidental vehicle?
View answer (4)

Cigna interview questions for popular designations

 Technical Architect

 (1)

 Software Engineer

 (1)

 Data Analyst

 (1)

 Senior Software Engineer

 (1)

 Claims Representative

 (1)

 Service Advisor

 (1)

 Product Owner

 (1)

 Associate Quality Assurance Engineer

 (1)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 26 Jul 2024

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

I applied via LinkedIn

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 2 interview rounds.

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 (205)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

I applied via Recruitment Consultant and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Most of questions related to project
  • Q2. Focus on primary skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company to work and gain knowledge

Associate Quality Assurance Engineer Interview Questions asked at other Companies

Q1. If you have 20 to 40 range, what testing technique will you use?
View answer (1)

Interview questions from similar companies

I appeared for an interview before Dec 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was a Data Structures and Algorithms round with preety good questions . I was expected to come up with an efficient approach and code it as well .

  • Q1. 

    K Closest Points to Origin Problem Statement

    Your house is located at the origin (0,0) of a 2-D plane. There are N neighbors living at different points on the plane. Your goal is to visit exactly K neighb...

  • Ans. 

    Find the K closest points to the origin in a 2-D plane using Euclidean Distance.

    • Calculate the Euclidean Distance of each point from the origin

    • Sort the points based on their distances

    • Return the first K points as the closest neighbors

  • Answered by AI
  • Q2. 

    Power Set Generation

    Given a sorted array of 'N' integers, your task is to generate the power set for this array. Each subset of this power set should be individually sorted.

    A power set of a set 'ARR' i...

  • Ans. 

    Generate the power set of a sorted array of integers with individually sorted subsets.

    • Use recursion to generate all possible subsets by including or excluding each element in the array.

    • Sort each subset before adding it to the power set.

    • Handle base cases for empty array and single element array.

    • Ensure the subsets are unique by using a set data structure.

    • Time complexity can be exponential due to the nature of generating

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Hard

This was also a DSA round where I was asked to code only one of the questions but I eventually ended up coding both as I had some spare time and explained my approches very smoothly to the interviewer . This round went preety well .

  • Q1. 

    Roman Numeral to Integer Conversion

    Convert a string representing a Roman numeral into its integer equivalent and return the result.

    Explanation:

    Roman numerals are represented by seven different symbol...

  • Ans. 

    Convert a Roman numeral string to its integer equivalent.

    • Create a mapping of Roman numeral symbols to their integer values.

    • Iterate through the input string and add the corresponding integer values.

    • Handle cases where subtraction is needed (e.g., IV = 4, IX = 9).

  • Answered by AI
  • Q2. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Find pairs of elements in an array that sum up to a given value, sorted in a specific order.

    • Iterate through the array and for each element, check if the complement (S - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list.

    • Sort the result list based on the criteria mentioned in the question.

    • Return the sorted list of pairs.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was also a DSA round with 2 questions . One was implementation heavy and the other was related to recursion and so I handled it carefully so that my code does not run into TLE or Segmentation Fault.

  • Q1. 

    Arithmetic Expression Evaluation Problem Statement

    You are provided with a string expression consisting of characters '+', '-', '*', '/', '(', ')' and digits '0' to '9', representing an arithmetic express...

  • Ans. 

    Evaluate arithmetic expressions in infix notation with given operators and precedence rules.

    • Parse the infix expression to postfix using a stack.

    • Evaluate the postfix expression using a stack.

    • Handle operator precedence and parentheses while evaluating.

    • Ensure no division by zero cases and operands fit in 32-bit integer.

  • Answered by AI
  • Q2. 

    Remove Duplicates from Sorted Array Problem Statement

    You are given a sorted integer array ARR of size N. Your task is to remove the duplicates in such a way that each element appears only once. The outpu...

  • Ans. 

    Remove duplicates from a sorted array in-place with O(1) extra memory.

    • Use two pointers - one for iterating through the array and another for placing unique elements.

    • Compare current element with next element to identify duplicates and skip them.

    • Update array in-place by moving unique elements to the front.

    • Return the length of the array after removal of duplicates.

  • Answered by AI
Round 4 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was a typical System Design round where I was asked about the various features of Facebook and what sort of data structures and algorithms are used in implementing them .

  • Q1. How does Facebook store likes and dislikes?
  • Ans. 

    Facebook stores likes and dislikes using a combination of databases and algorithms.

    • Likes and dislikes are stored in databases such as MySQL or Cassandra.

    • Algorithms are used to analyze user behavior and recommend content based on likes and dislikes.

    • User interactions with posts, pages, and ads are tracked to determine likes and dislikes.

    • Likes and dislikes may also be used to personalize the user's feed and target ads mor

  • Answered by AI
  • Q2. How does Facebook implement graph search?
  • Ans. 

    Facebook implements graph search using a graph database to efficiently search for connections between users and their interests.

    • Facebook uses a graph database to store connections between users, pages, groups, etc.

    • The graph search algorithm traverses the graph to find relevant connections based on user queries.

    • It takes into account factors like user relationships, interests, and interactions to provide personalized sea

  • Answered by AI
Round 5 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was a preety intense round as I was grilled more on my System Design concepts but eventually I was able to asnwers all the questions with some help from the interviewer.

  • Q1. What is Hadoop and why is it used?
  • Ans. 

    Hadoop is a framework for distributed storage and processing of large data sets.

    • Hadoop is used for storing and processing big data across a distributed network of computers.

    • It is based on the MapReduce programming model, which allows for parallel processing of data.

    • Hadoop consists of HDFS for storage and YARN for resource management.

    • It is used for tasks like data warehousing, log processing, recommendation systems, and...

  • Answered by AI
  • Q2. How does Facebook Chat work?
  • Ans. 

    Facebook Chat works by using a combination of websockets, long polling, and push technology to deliver real-time messaging.

    • Facebook Chat uses websockets for real-time communication between the client and server.

    • Long polling is used to check for new messages when websockets are not supported.

    • Push technology is used to notify users of new messages even when the chat window is not open.

    • Messages are stored in a database an...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAFacebook interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
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 Preparation Tips

Round: Test
Tips: Just try coding as much as you can in the four years of graduation.

Round: Interview
Experience: Three Coding Interview and a Behavioral Interview were conducted.
Tips: Try to get some prior knowledge about the company's infrastructure.w

General Tips: Practice as much problems as you can online or offline.
Skill Tips: Coding is the key for any software company.
Skills: Coding
College Name: IIT KHARAGPUR
Motivation: Its the best in business
Contribute & help others!
anonymous
You can choose to be anonymous

Cigna Interview FAQs

How many rounds are there in Cigna interview?
Cigna interview process usually has 1-2 rounds. The most common rounds in the Cigna interview process are One-on-one Round, Technical and Coding Test.
How to prepare for Cigna 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 Cigna. The most common topics and skills that interviewers at Cigna expect are Healthcare, Administration, Claims Processing, Data Entry and Insurance Claims.
What are the top questions asked in Cigna interview?

Some of the top questions asked at the Cigna interview -

  1. Design pattern experie...read more
  2. Explain ELK st...read more
  3. Most of questions related to proj...read more

Recently Viewed

INTERVIEWS

Square Yards

No Interviews

INTERVIEWS

Insuremile

No Interviews

INTERVIEWS

Square Yards

No Interviews

INTERVIEWS

ICON

No Interviews

SALARIES

Flutter Entertainment

INTERVIEWS

Square Yards

No Interviews

INTERVIEWS

ICON

No Interviews

INTERVIEWS

Square Yards

No Interviews

INTERVIEWS

Square Yards

No Interviews

Tell us how to improve this page.

Cigna Interview Process

based on 12 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

UnitedHealth Interview Questions
4.0
 • 81 Interviews
Facebook Interview Questions
4.3
 • 52 Interviews
MagicPin Interview Questions
3.0
 • 50 Interviews
Humana Interview Questions
4.6
 • 4 Interviews
Anthem Interview Questions
3.6
 • 3 Interviews
View all

Cigna Reviews and Ratings

based on 58 reviews

3.1/5

Rating in categories

2.8

Skill development

3.2

Work-life balance

3.1

Salary

3.0

Job security

2.9

Company culture

2.8

Promotions

2.8

Work satisfaction

Explore 58 Reviews and Ratings
Application Development Analyst
11 salaries
unlock blur

₹11 L/yr - ₹16 L/yr

Senior Claims Representative
10 salaries
unlock blur

₹4 L/yr - ₹6.5 L/yr

Senior Analyst
10 salaries
unlock blur

₹12 L/yr - ₹25 L/yr

Architect
9 salaries
unlock blur

₹42.8 L/yr - ₹46.3 L/yr

Senior Customer Service Representative
8 salaries
unlock blur

₹4 L/yr - ₹5.4 L/yr

Explore more salaries
Compare Cigna with

Anthem

3.6
Compare

UnitedHealth

4.0
Compare

Aetna

4.9
Compare

Humana

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