
2nd largest number from array

AnswerBot
1y

Find the second largest number from an array of strings.
Convert the array of strings to an array of numbers.
Sort the array in descending order.
Return the second element of the sorted array.
Anonymous
2y

public class Main{
public static void merge(int[] arr, int beg, int mid, int end){
int l1 = mid-beg+1; //length of left array
int l2 = end-mid; //length of right array
int[] leftArray = new int[l1]; ...read more
Anonymous
2y

Sort the array using any sorting technique with less time complexity then print the (arr.length-2)th element from array.
Add answer anonymously...
Top ivy Software Engineer interview questions & answers
Popular interview questions of Software Engineer
Stay ahead in your career. Get AmbitionBox app
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+
Reviews
4 L+
Interviews
4 Cr+
Salaries
1 Cr+
Users/Month
Contribute to help millions
Get AmbitionBox app