1. Write a program to find second largest in an integer array. 2. Write a program to find denomination to get amount as 1976 for below {2000, 1000,500,200,100,50,20,10,5,1} If Amount :1976 Then it should return as below: 1000: 1 500: 1 200: 2 50: 1 20: 1 5: 1 1: 1

AnswerBot
1y

Programs to find second largest in an integer array and denomination to get amount.

  • For finding the second largest number, sort the array in descending order and return the second element.

  • For finding t...read more

Karthik Kaushik
1y
  1. Program 1 is straight forward.

  2. For Program 2 we can use the below code

public static void main(String[] args) { int[] arr = {2000, 1000,500,200,100,50,20,10,5,1}; int a = 1976; Map<Integer,Integer> m = ...read more
Help your peers!
Add answer anonymously...
Cisco QA Engineer Automation QA.Selenium 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
Get AmbitionBox app

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