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
2y
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
- Program 1 is straight forward.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


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

