0% found this document useful (0 votes)
115 views15 pages

QB Array Program Answers

The document contains 9 programming problems involving arrays and sorting techniques like bubble sort, linear search, and binary search. The problems include sorting names and numbers in arrays, searching arrays, finding maximum/minimum values, and sorting state/capital pairs.

Uploaded by

Priyesh
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
115 views15 pages

QB Array Program Answers

The document contains 9 programming problems involving arrays and sorting techniques like bubble sort, linear search, and binary search. The problems include sorting names and numbers in arrays, searching arrays, finding maximum/minimum values, and sorting state/capital pairs.

Uploaded by

Priyesh
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 15

1. Write a program to input twenty names in an array.

Arrange these names in ascending order of


letters, using the bubble sort technique.

Sample Input:

Rohit, Devesh, Indrani, Shivangi, Himanshu, Rishi, Piyush, Deepak, Abhishek, Kunal , .....

Sample Output:

Abhishek, Deepak, Devesh, Himanshu, Indrani, Kunal, Piyush, Rishi, Rohit, Shivangi, ..…*/

import java.util.*;

public class ascending

public static void main(String args[])

Scanner sc= new Scanner(System.in);

String a[]=new String[20];

System.out.println("Enter 20 names");

for(int i=0;i<20;i++)

a[i]=sc.nextLine();

String temp="";

for(int i=0;i<19;i++)

for(int j=0;j<19-i;j++)

if(a[j].compareTo(a[j+1])>0)

1
temp=a[j];

a[j]=a[j+1];

a[j+1]=temp;

System.out.println("sorted names are :");

for(int i=0;i<20;i++)

System.out.println(a[i]);

2. Write a program to accept the names of 10 cities in a single dimensional string array and their STD
(Subscribers Trunk Dialling) codes in another single dimension integer array. Search for the name of a
city input by the user in the list. If found, display "Search Successful" and print the name of the city along
with its STD code, or else display the message "Search unsuccessful, no such city in the list".

import java.util.*;

public class StdCodes_city

public static void main(String args[])

Scanner sc = new Scanner(System.in);

String cities[] = new String[10];

String stdcodes[] = new String[10];

System.out.println("Enter 10 cities and their STD codes:");

2
for (int i = 0; i < 10; i++)

System.out.print("Enter City Name: ");

cities[i] = sc.nextLine();

System.out.print("Enter its STD Code: ");

stdcodes[i] = sc.nextLine();

System.out.print("Enter name of city to search: ");

String city = sc.nextLine();

int index=0,temp=0;

for (int i=0;i<10;i++)

if (city.equalsIgnoreCase(cities[i]) )

temp=1;

index=i;

break;

if (temp==1)

System.out.println("Search Successful");

System.out.println("City: " + cities[index]);

System.out.println("STD Code: " + stdcodes[index]);

3
else

System.out.println("Search Unsuccessful");

3. Write a program to search for an integer value input by the user in the sorted list given below using
binary search technique . If found display“ Search Successful”, otherwise display “Search Unsuccessful”.
{31,36,45,50,60,75, 86,90}

import java.util.*;

public class Binary_search

public static void main(String args[])

Scanner sc= new Scanner(System.in);

int a[]={31,36,45,50,60,75,86,90};

System.out.println("Enter the number to be searched");

int n=sc.nextInt();

int f=0,l=a.length-1,mid=0,temp;

while(f<=l)

mid=(f+l)/2;

if(n>a[mid])

f=mid+1;

if(n<a[mid])

l=mid-1;

if(n==a[mid])

4
{

temp=1;

break;

if(temp==1)

System.out.println("Search successful");

else

System.out.println("Search unsuccessful");

} }

4. Define a class to accept 10 integers and arrange them in descending order using bubble sort. Print the
original array and the sorted array.

import java.util.*;

public class descending

public static void main(String args[])

Scanner sc= new Scanner(System.in);

int a[]=new int[10];

System.out.println("Enter 10 elements");

for(int i=0;i<10;i++)

a[i]=sc.nextInt();

int temp=0;

5
for(int i=0;i<9;i++)

for(int j=0;j<9-i;j++)

if(a[j]<a[j+1])

temp=a[j];

a[j]=a[j+1];

a[j+1]=temp;

}}}

System.out.println("sorted names are: ");

for(int i=0;i<10;i++)

System.out.println(a[i]);

} } }

5. Define a class to accept values into a double array of size 20 and print the range of the array, range is
the difference between the largest and the smallest elements of the array also print the sum and
product of the elements.

import java.util.*;

public class max_min

public static void main(String args[])

Scanner sc= new Scanner(System.in);

double a[]=new double[20];

6
System.out.println("Enter 20 numbers");

for(int i=0;i<20;i++)

a[i]=sc.nextDouble();

double max=a[0],min=a[0],sum=0,pro=1;

for(int i=0;i<20;i++)

if(a[i]>max)

max=a[i];

if(a[i]<min)

min=a[i];

sum=sum+a[i];

pro=pro*a[i];

System.out.println("Largest number="+max);

System.out.println("Smallest number="+min);

System.out.println("sum="+sum);

System.out.println("Product="+pro);

6. Define a class to accept the names of 10 students in an array and check for the existence of the given
name in the array using linear search ,if found print the position of the name, if not found print the
appropriate message. Also print the names which begins with the word “SRI”.

import java.util.*;

public class Linear_search

7
{

public static void main(String args[])

Scanner sc= new Scanner(System.in);

String a[]=new String[10];

System.out.println("Enter 10 names");

for(int i=0;i<10;i++)

a[i]=sc.nextLine();

System.out.println("Enter name to be searched");

String s=sc.nextLine();

int temp=0;

for(int i=0;i<10;i++)

if(a[i].equalsIgnoreCase(s))

temp=1;

break;

if(temp==1)

System.out.println("search successful");

else

System.out.println("search unsuccessful");

8
for(int i=0;i<10;i++)

if(a[i].startsWith("SRI"))

System.out.println(a[i]);

7. Write a program to input name & temperature of 10 cities and display the maximum and minimum
temperature with its city name .

import java.util.*;

public class max_min_temperature

public static void main(String args[])

Scanner sc=new Scanner(System.in);

String city[]=new String[10];

double t[]=new double[10];

System.out.println("Enter 10 city name and their temperature");

for(int i=0;i<10;i++)

System.out.println("Enter city name");

city[i]=sc.next();

System.out.println("Enter temperature");

9
t[i]=sc.nextDouble();

double max=t[0], min=t[0];

String max_c=city[0],min_c=city[0];

for(int i=0;i<10;i++)

if(t[i]>max)

max=t[i];

max_c=city[i];

if(t[i]<min)

min=t[i];

min_c=city[i];

System.out.println("maximum temperature="+max);

System.out.println("city with maximum temperature="+max_c);

System.out.println("minimum temperature="+min);

System.out.println("city with maximum temperature="+min_c);

10
8. Define a class and store the 10 state and their capital city names in 2 separate single dimensional
array and sort them in ascending order using bubble sort.

import java.util.*;

public class state_capital

public static void main(String args[])

Scanner sc= new Scanner(System.in);

String state[]=new String[10];

String capital[]=new String[10];

System.out.println("Enter 10 State and capital");

for(int i=0;i<10;i++)

System.out.println("Enter State ");

state[i]=sc.nextLine();

System.out.println("Enter Capital ");

capital[i]=sc.nextLine();

String temp1="",temp2="";

for(int i=0;i<9;i++)

for(int j=0;j<9-i;j++)

if(state[j].compareTo(state[j+1])>0)

11
temp1=state[j];

state[j]=state[j+1];

state[j+1]=temp1;

temp2=capital[j];

capital[j]= capital[j+1];

capital[j+1]=temp2;

System.out.println("State"+"\t"+"capital");

for(int i=0;i<10;i++)

System.out.println(state[i]+"\t"+capital[i]);

9. Write a program to accept a list of 20 integers. Sort the first 10 numbers in ascending order

and next the 10 numbers in descending order by using 'Bubble Sort' technique. Finally, print

the complete list of integers.

import java.util.*;

public class ascending_descending

public static void main(String args[])

12
{

Scanner sc= new Scanner(System.in);

int a[]=new int[20];

System.out.println("Enter 20 numbers");

for(int i=0;i<20;i++)

a[i]=sc.nextInt();

int temp=0;

for(int i=0;i<9;i++)

for(int j=0;j<9-i;j++)

if(a[j]>a[j+1])

temp=a[j];

a[j]=a[j+1];

a[j+1]=temp;

temp=0;

for(int i=10;i<19;i++)

for(int j=10;j<19;j++)

13
{

if(a[j]<a[j+1])

temp=a[j];

a[j]=a[j+1];

a[j+1]=temp;

System.out.println("sorted list");

for(int i=0;i<20;i++)

System.out.println(a[i]);

10. Write a program in Java to store 20 numbers (even and odd numbers) in a Single

Dimensional Array (SDA). Calculate and display the sum of all even numbers and all odd

numbers separately.

import java.util.*;

public class even_odd

public static void main(String args[])

14
Scanner sc= new Scanner(System.in);

int a[]=new int[20];

System.out.println("Enter 20 numbers");

for(int i=0;i<20;i++)

a[i]=sc.nextInt();

int sum=0,pro=1;

for(int i=0;i<20;i++)

if(a[i]%2==0)

sum=sum+a[i];

else

product=pro*a[i];

System.out.println("sum of even numbers="+sum);

System.out.println("Product of odd numbers="+pro);

15

You might also like