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
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Explain ELK stack
  • Ans. 

    ELK stack is a popular open-source log management solution consisting of Elasticsearch, Logstash, and Kibana.

    • ELK stack stands for Elasticsearch, Logstash, and Kibana.

    • Elasticsearch is a distributed search and analytics engine for storing and searching data.

    • Logstash is a data processing pipeline that ingests, transforms, and enriches data.

    • Kibana is a data visualization tool used to analyze and visualize the data stored i...

  • Answered by AI

Technical Architect Interview Questions asked at other Companies

Q1. How to manage clients, how to handle critical issues with example
View answer (3)

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview
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.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about a time you had to make a touch decision on a project.
  • Ans. 

    I had to make a tough decision when prioritizing features for a tight deadline project.

    • Prioritized features based on impact and feasibility

    • Communicated with stakeholders to explain the decision-making process

    • Managed expectations and ensured alignment with project goals

  • Answered by AI
  • Q2. Tell me about a time you had to deal with a teammate that was underperforming
  • Ans. 

    I addressed the issue directly with the teammate and worked together to identify areas for improvement.

    • Had a one-on-one conversation with the teammate to discuss performance concerns

    • Provided constructive feedback and set clear expectations for improvement

    • Offered support and resources to help the teammate succeed

    • Monitored progress and provided ongoing feedback and guidance

    • Celebrated improvements and successes to boost m

  • Answered by AI

Product Owner Interview Questions asked at other Companies

Q1. What are the prioritization techniques you use to arrange backlog items?
View answer (3)
Cigna Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic question around your skill set
  • Q2. Business values about your previous projects

Service Advisor Interview Questions asked at other Companies

Q1. How can you make estimate for damaged or accidental vehicle?
View answer (4)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Design pattern experience
  • Ans. 

    I have extensive experience with various design patterns such as Singleton, Factory, Observer, and MVC.

    • Implemented Singleton pattern to ensure only one instance of a class exists

    • Utilized Factory pattern to create objects without specifying the exact class

    • Implemented Observer pattern for event handling and notifications

    • Utilized MVC pattern for separating concerns in a software application

  • Answered by AI

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

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

Round 1 - Coding Test 

SQL, Python, like case about window function

Round 2 - Technical 

(1 Question)

  • Q1. All about past project

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.

Round 1 - Coding Test 

Coding mainly on LinkedList and Strings

Round 2 - One-on-one 

(1 Question)

  • Q1. Have asked about my previous work experience and STAR pattren questions

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 (196)
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.

Round 1 - Aptitude Test 

English grammar test

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

Interview Preparation Tips

Round: Resume Shortlist
Experience: You need to submit your CV and they shortlist you on this basis.Fast and accurate coding.
Tips: Clearly specify any technical achievement.

Round: Coding
Experience: You are given 4 hours to solve a few algorithmic questions.Start practicing for this from sometime earlier.
Tips: There are puzzles available on the Facebook page.

Round: Technical Interview
Experience: Three interviews. All almost exclusively technical with 1-2 HR questions.
The questions are mainly algorithmic in nature and you need to code online while talking to them.
Tips: Be as accurate and clean with your code as possible.

General Tips: Be creative while answering the questions. They might ask you questions like 'What changes would you want to make to Facebook?'.
Prepare algorithmic questions for the interviews. Most companies like Facebook, Google, Microsoft and others focus on this.
Technical projects or internships will be beneficial.
Qualifying for or winning programming contests like overnite is very beneficial. Involvement in Social/Cultural activities or sports is not really essential.
Skill Tips: Being good at writing fast and correct code in any language helps a lot.
Skills: Programming
College Name: IIT KHARAGPUR

Interview Questionnaire 

8 Questions

  • Q1. Given two “ids” and a function getFriends(id) to get the list of friends of that person id, write a function that returns the list of mutual friends
  • Ans. 

    Function to return mutual friends given two ids and getFriends(id) function

    • Call getFriends(id) for both ids to get their respective friend lists

    • Iterate through both lists and compare to find mutual friends

    • Return the list of mutual friends

  • Answered by AI
  • Q2. Given an “id” and a function getFriends(id) to get the list of friends of that person id, write a function that returns the list of “friends of friends” in the order of decreasing number of mutual friends,...
  • Ans. 

    Function to return list of friends of friends in decreasing order of mutual friends

    • Use a set to store all friends of friends

    • Iterate through the list of friends of the given id

    • For each friend, iterate through their list of friends and count mutual friends

    • Sort the set of friends of friends by decreasing number of mutual friends

  • Answered by AI
  • Q3. Given a number of time slots – start time and end time,“a b”, find any specific time with the maximum number of overlapping. After solving the problem I had to prove my solution
  • Ans. 

    Given time slots, find a specific time with maximum overlap. Prove solution.

    • Create a list of all start and end times

    • Sort the list in ascending order

    • Iterate through the list and keep track of the number of overlaps at each time

    • Return the time with the maximum number of overlaps

    • Prove solution by testing with different input sizes and edge cases

  • Answered by AI
  • Q4. Given an array of Integers, find the Longest sub-array whose elements are in Increasing Order
  • Ans. 

    Find the longest sub-array with increasing order of integers.

    • Iterate through the array and keep track of the current sub-array's start and end indices.

    • Update the start index whenever the current element is smaller than the previous element.

    • Update the end index whenever the current element is greater than or equal to the next element.

    • Calculate the length of the sub-array and compare it with the longest sub-array found s

  • Answered by AI
  • Q5. Given an array of Integers, find the length of Longest Increasing Subsequence and print the sequence.
  • Ans. 

    Find the length of longest increasing subsequence and print the sequence from an array of integers.

    • Use dynamic programming to solve the problem

    • Create an array to store the length of longest increasing subsequence ending at each index

    • Traverse the array and update the length of longest increasing subsequence for each index

    • Print the sequence by backtracking from the index with the maximum length

    • Time complexity: O(n^2)

    • Exam...

  • Answered by AI
  • Q6. Given a Sorted Array which has been rotated, write the code to find a given Integer
  • Ans. 

    Code to find a given integer in a rotated sorted array.

    • Use binary search to find the pivot point where the array is rotated.

    • Divide the array into two subarrays and perform binary search on the appropriate subarray.

    • Handle edge cases such as the target integer not being present in the array.

  • Answered by AI
  • Q7. You have a number of incoming Integers, all of which cannot be stored into memory. We need to print largest K numbers at the end of input
  • Ans. 

    Use a min-heap to keep track of the largest K numbers seen so far.

    • Create a min-heap of size K.

    • For each incoming integer, add it to the heap if it's larger than the smallest element in the heap.

    • If the heap size exceeds K, remove the smallest element.

    • At the end, the heap will contain the largest K numbers in the input.

  • Answered by AI
  • Q8. Implement LRU Cache
  • Ans. 

    LRU Cache is a data structure that stores the most recently used items and discards the least recently used items.

    • Use a doubly linked list to keep track of the order of items in the cache

    • Use a hash map to store the key-value pairs for fast access

    • When an item is accessed, move it to the front of the linked list

    • When the cache is full, remove the least recently used item from the back of the linked list and the hash map

  • Answered by AI

Interview Preparation Tips

Round: ONLINE CODING ROUND
Experience: Facebook visited our campus in July, 2012. We had an online coding round hosted on InterviewStreet. We were asked to solve just one problem. The given problem boils down to : Given a undirected graph, source and destination, write the code to find the total number of distinct nodes visited, considering all possible paths.
Tips: Those shortlisted had to fly to Delhi for a Personal Interview. There were four rounds of interview, each of 45 minutes. The questions were simple. But just solving the given problem wasn't enough.

There was much more interaction and short questions asked related to the problem

Round: Technical Interview
Experience: The above mentioned questions wer asked in the interview. For every solution I was asked to write the code on paper. The code should also include the implementation of the data structures used (I used heaps - so I was asked to implement heaps ). They are looking for someone with good problem solving skills and conceptually sound in data structures

College Name: BIT MESRA

Skills evaluated in this interview

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

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

COMPANY BENEFITS

WiseTech Global

No Benefits

COMPANY BENEFITS

Toray Industries

No Benefits

REVIEWS

Toray Industries

No Reviews

SALARIES

WiseTech Global

No Salaries

REVIEWS

WiseTech Global

No Reviews

PHOTOS

Toray Industries

No Photos

JOBS

Toray Industries

No Jobs

JOBS

WiseTech Global

No Jobs

Tell us how to improve this page.

Cigna Interview Process

based on 12 interviews

Interview experience

4
  
Good
View more

Sopra Steria

Success to our employee's well-being? A work-life balance that's simply unbeatable.

Interview Questions from Similar Companies

UnitedHealth Interview Questions
4.0
 • 83 Interviews
Facebook Interview Questions
4.4
 • 70 Interviews
MagicPin Interview Questions
3.0
 • 49 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

₹0 L/yr - ₹0 L/yr

Senior Analyst
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Claims Representative
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Customer Service Representative
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

IT Help Desk Support Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 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