
Asked in Capgemini
Equilibrium Index Problem Statement
Given an array Arr
consisting of N integers, your task is to find the equilibrium index of the array.
An index is considered as an equilibrium index if the sum of elements of the array to the left of that index is equal to the sum of elements to the right of it.
Input:
The first line contains an integer T, representing the number of test cases.
The first line of each test case contains an integer N, representing the size of the array.
The second line of each test case contains N space-separated integers representing the array elements.
Output:
The output for each test case should be a single integer indicating the equilibrium index of the array.
Example:
Input:
1
5
-7 1 5 2 -4
Output:
2
Explanation:
The index 2 is an equilibrium index because the sum of elements on its left (-7 + 1) equals the sum of elements on its right (2 - 4).
Constraints:
- 1 <= T <= 50
- 1 <= N <= 10^5
- -10^4 <= Arr[i] <= 10^4
Note:
- The array uses 0-based indexing, so return the 0-based index of the equilibrium.
- The element at the equilibrium index is not considered in the sum for either side.
- If multiple indices meet the condition, return the left-most one.
- If no such index is present, return -1.

AnswerBot
4mo
Find the equilibrium index of an array where sum of elements on left equals sum on right.
Iterate through the array and calculate prefix sum and suffix sum at each index.
Compare prefix sum and suffix s...read more
Help your peers!
Add answer anonymously...
Top Data Analyst Interview Questions Asked at Capgemini
Q. What are the different methods for masking data?
Q. What is Primary key and foreign key?
Q. What is join,what is doubly linked list
Interview Questions Asked to Data Analyst at Other Companies
Top Skill-Based Questions for Capgemini Data Analyst
SQL Interview Questions and Answers
250 Questions
Machine Learning Interview Questions and Answers
250 Questions
Algorithms Interview Questions and Answers
250 Questions
Data Structures Interview Questions and Answers
250 Questions
Python Interview Questions and Answers
200 Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

