Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Cigna Technical Architect Interview Questions and Answers

Updated 10 Dec 2024

Cigna Technical Architect Interview Experiences

Interview questions from similar companies

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

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

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

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 Preparation Tips

Round: Test
Experience: Basic Aptitude and logic based questions. 
Tips: Practice on questions similar to CAT.
Duration: 60 min minutes
Total Questions: 30

Round: Test
Experience: 15 MCQ + 3 programming + 2 networking based questions.
Tips: Problems are not so tough. Time is the only constraint. Keep it fast.
Duration: 30 minutes
Total Questions: 20

Round: Technical Interview
Experience: Find questions at -----/

Skill Tips: ""
College Name: IIT Indore

Interview Preparation Tips

Round: Test
Experience: Written test consisting of aptitude problems and algorithms lasting an hour. The test included 40 marks of aptitude problems and 3 questions on algorithms
Tips: Importance is given to test and programming languages.Not much stress is given on the courses but analytical abilities are testedSolve puzzles and algorithm type questionsKnowledge about probability is very helpful
Duration: 60 minutes

Round: Interview
Experience: Interviewers look how fast you can pick up stuffInterview questions for the technical round were based upon BTP and programming languages.

Round: Interview
Experience: HR round is not intensive and had general HR questions.

College Name: IIT Madras

Interview Questionnaire 

2 Questions

  • Q1. Questions related to programming and workshops related to that
  • Q2. Questions related to family background and job location were discussed

Interview Preparation Tips

Round: Test
Experience: test covers quantitative aptitude , logical
reasoning , maths and geometry. you need to be good in both aptitude and maths

Tips: . The best way to improve your aptitude is to regularly practice online tests available on various sites and also used to solve probability in your free time.
Duration: 45 min minutes
Total Questions: 30

Round: Technical Interview
Experience: i told them directly that i don't have idea about all these . Then they ask me to explain my current project. After that they tell me to draw the block diagram to explain the functioning of washing machine and OLA cab system .
In 2nd tech interview they ask the basic questions related to my branch, asked to explain 2 or 3 questions from their apti paper. They want to check your basic knowledge and how much you think logically.

Tips: . For the interview prepare yourself for the questions from your project and vocational training.Always be frank with your interviewer .

Round: HR Interview
Experience: They want to check your basic knowledge and how much you think logically.
HR round is only of 10 minutes.questions related to family background and job location were discussed."

Tips: Almost all the companies take apti test , you have to prepare for that . For the interview prepare yourself for the questions from your project and vocational training.Always be frank with your interviewer .
CPI FACTOR:
CPI did not matter much but there is a bar for the cpi so people scoring below that range are not eligible to apply


General Tips: They want to check your basic knowledge and how much you think logically.
Skills:
College Name: NIT Raipur
Motivation: high package and perk provided by the company as well as the company and its workplace culture

Interview Questionnaire 

1 Question

  • Q1. Explain about ur project..?
  • Ans. 

    Developed a web-based project management tool for a software development company.

    • Used Agile methodology for development

    • Implemented user authentication and authorization using JWT

    • Integrated with GitHub for version control

    • Used React for front-end and Node.js for back-end

    • Implemented real-time chat feature using Socket.io

  • Answered by AI

Interview Preparation Tips

Round: Group Discussion
Duration: 2 hours minutes

Skills: Algorithms And Data Structures
College Name: IIT Madras
Funny Moments: HR asked what are languages u like?
i answered Tamil,English.

Business Analyst Interview Questions & Answers

UnitedHealth user image Chandra Prakash Rathi

posted on 4 Feb 2017

I appeared for an interview before Feb 2016.

Interview Questionnaire 

6 Questions

  • Q1. Truth tribe, false tribe question
  • Q2. Guesstimate : India's Deodrant market
  • Ans. 

    The Indian deodorant market is a growing industry with a large consumer base and increasing demand for premium and natural products.

    • The deodorant market in India has been experiencing steady growth over the years.

    • The market is driven by factors such as increasing disposable income, urbanization, and changing lifestyles.

    • There is a growing awareness among consumers about personal hygiene and grooming, leading to higher d...

  • Answered by AI
  • Q3. Cheryl's birthday
  • Q4. Guesstimate : Number if tractors sold in haryana in a year.
  • Ans. 

    Approximately 50,000 tractors are sold in Haryana every year.

    • Consider the population of Haryana and the number of farmers in the state.

    • Look at the agricultural output of Haryana and the demand for tractors in the region.

    • Take into account the number of tractor dealerships in Haryana and their sales figures.

    • Research the sales figures of major tractor manufacturers in Haryana.

    • Assume a growth rate based on the previous yea...

  • Answered by AI
  • Q5. Family Background
  • Q6. Future Plans

Interview Preparation Tips

Round: Test
Experience: The Test was fairly simple, basic knowledge of quant would do. I could attempt 16 questions, and from what I am guessing was second highest scorer. You need to attempt atleast 10 questions correctly and it would do the job.
Tips: Speed matters in this test.
Duration: 30 minutes
Total Questions: 30

Round: Group Discussion
Experience: there was only one panelist, and a group of 12 students. We were each given individual time to conclude. The discussion was good, and lots of points were discussed.
Tips: More than language, the content mattered.
Duration: 15 minutes

Round: Technical Interview
Experience: Was basically asked questions from what was written in the resume. I had written about a website i created and was asked in detail about that. There a=were a few puzzles then.
Tips: Be true to your resume. Know what you have written

Round: Technical Interview
Experience: This was a tougher round. But the interviewers helped. They were interactive on how to solve. Which steps I was going through and were more focused on the approach
Tips: Be interactive, and think out loud

College Name: NIT Raipur

I appeared for an interview in Sep 2016.

Interview Preparation Tips

Round: Test
Experience: level of questions was similar to CAT
Tips: prepare for cat. since questions are tough, cutoff is around 50?
Duration: 20 minutes
Total Questions: 30

Round: Group Discussion
Duration: 10 minutes

Round: Stress Interview
Experience: Panel interview. C and algorithms

Skills: Analytics And Coding
Contribute & help others!
anonymous
You can choose to be anonymous

Cigna Interview FAQs

How many rounds are there in Cigna Technical Architect interview?
Cigna interview process usually has 1 rounds. The most common rounds in the Cigna interview process are One-on-one Round.

Recently Viewed

INTERVIEWS

Cigna

No Interviews

SALARIES

Cigna

SALARIES

First Solar

INTERVIEWS

First Solar

No Interviews

INTERVIEWS

ACCIONA

No Interviews

SALARIES

Cigna

INTERVIEWS

Cigna

No Interviews

SALARIES

First Solar

SALARIES

First Solar

INTERVIEWS

Cigna

No Interviews

Tell us how to improve this page.

Cigna Technical Architect Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

UnitedHealth Interview Questions
4.0
 • 81 Interviews
Facebook Interview Questions
4.3
 • 52 Interviews
MagicPin Interview Questions
2.6
 • 50 Interviews
Shaadi.com Interview Questions
3.3
 • 27 Interviews
Tokopedia Interview Questions
4.0
 • 25 Interviews
HealthKart Interview Questions
4.0
 • 25 Interviews
Meritto Interview Questions
3.6
 • 23 Interviews
JUSPAY Interview Questions
3.1
 • 21 Interviews
View all
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