
Asked in Adobe
Find the Second Largest Element
Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.
If a second largest element does not exist, return -1.
Example:
Input:
ARR = [2, 4, 5, 6, 8]
Output:
6
Explanation:
In the sequence, 8 is the largest and 6 is the second largest.
Input:
ARR = [5, 5, 5, 5, 5]
Output:
-1
Explanation:
There is no second largest element as all elements are identical.
Constraints:
1 ≤ T ≤ 100
where 'T' is the number of test cases.1 ≤ N ≤ 5000
where 'N' is the number of elements in 'ARR'.-10^9 ≤ ARR[i] ≤ 10^9
for each element in 'ARR'.
Note:
You do not need to print any output. Implement the function to return the desired results.

AnswerBot
4mo
Find the second largest element in an array of integers.
Iterate through the array to find the largest and second largest elements.
Handle cases where all elements are identical.
Return -1 if a second la...read more
Help your peers!
Add answer anonymously...
Top Software Quality Engineer Interview Questions Asked at Adobe
Q. Leaders in an Array Problem Statement You are given a sequence of numbers. Your ...read more
Q. Spiral Matrix Path Problem You are provided with a two-dimensional array named M...read more
Q. Stack using Two Queues Problem Statement Develop a Stack Data Structure to store...read more
Interview Questions Asked to Software Quality Engineer at Other Companies
Top Skill-Based Questions for Adobe Software Quality Engineer
Data Structures Interview Questions and Answers
250 Questions
Algorithms Interview Questions and Answers
250 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

