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...
ivy Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
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

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter