0% found this document useful (0 votes)
280 views7 pages

Anmol Java Assignment

The document contains solutions to 4 Java programming questions. Question 1 involves writing a program to search for a number in an integer array and return the index if found or -1 if not found. Question 2 involves writing a program to accept gender and age from command line arguments and return the interest percentage based on given conditions. Question 3 involves writing a program to print even numbers between 23 and 57, each on a new line. Question 4 involves writing a program to concatenate two strings from command line arguments in a specific format.

Uploaded by

ANMOL CHAUHAN
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
280 views7 pages

Anmol Java Assignment

The document contains solutions to 4 Java programming questions. Question 1 involves writing a program to search for a number in an integer array and return the index if found or -1 if not found. Question 2 involves writing a program to accept gender and age from command line arguments and return the interest percentage based on given conditions. Question 3 involves writing a program to print even numbers between 23 and 57, each on a new line. Question 4 involves writing a program to concatenate two strings from command line arguments in a specific format.

Uploaded by

ANMOL CHAUHAN
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 7

JAVA - Assignement-1

Solution
ANMOL CHAUHAN
17SCSE101411(SEC-2)
Q1: Write a program to initialize an integer array with values and check if a given
number is present in the array or not.

If the number is not found, it will print -1 else it will print the index value of
the given number in the GIVEN array

If the Array elements are {1, 4, 34, 56, 7}

And the search element is 90, then the

Output expected is -1

PROGRAM:-
importjava.util.Scanner;
class Search
{
public static void main(String args[])
{
inti,n,element,array[];
Scanner in = new Scanner(System.in);
n=in.nextInt();
array = new int[n];
for(i=0;i<n;i++)
array[i]=in.nextInt();
System.out.println("Enter Element to search");
element=in.nextInt();
for(i=0;i<n;i++)
{
if(array[i]==element)
{
System.out.println(i+1);
break;
}
}
if (i==n)
System.out.println("-1");
}
}

OUTPUT:-

Q2
Write a program to accept gender ("Male" or "Female") and age from
command line arguments and print the percentage of interest based on the
given conditions.
If the gender is 'Female' and age is between 1 and 58, the percentage of
interest is 8.2%.
If the gender is 'Female' and age is between 59 and 100, the percentage of
interest is 9.2%.
If the gender is 'Male' and age is between 1 and 58, the percentage of interest
is 8.4%.
If the gender is 'Female' and age is between 1 and 58, the percentage of
interest is 10.5%.

PROGRAM:-
importjava.util.Scanner;
classCastepercent
{
public static void main(String args[])
{
System.out.println("Enter Gender (m/f)");
Scanner in = new Scanner(System.in);
String gender = in.next();
System.out.println("Enter Age");
int age = in.nextInt();
if(age>0 && age<59)
{
if(gender=="female")
System.out.println("8.2%");
else
System.out.println("8.4%");
}
else if(age>58 && age<101)
{
if(gender=="female")
System.out.println("9.2%");
else
System.out.println("10.5%");
}
}
}

Output:-

Q3:Write a program to print even numbers between 23 and 57. Each number
should be printed in a separate row.

Program:-
importjava.util.Scanner;
class Number
{
public static void main(String args[])
{
for(int i=23; i<58;i++)
{
if(i%2==0)
System.out.print(i+" ");
}
System.out.print("\n");
for(int i=23; i<58;i++)
{
if(i%2==1)
System.out.print(i+" ");
}
}
}

Output:-
Q4: Write a Program that accepts two Strings as command line arguments and
generate the output in the required format.

Example:

If the two command line arguments are Wipro and Bangalore then the

Output generated should be Wipro Technologies Bangalore.

If the command line arguments are ABC and Mumbai then the

Output generated should be ABC Technologies Mumbai

Program:-
importjava.util.Scanner;
classComandLine
{
public static void main(String args[])
{
System.out.println("Enter two strings");
Scanner in = new Scanner(System.in);
String n1 = in.next();
String n2 = in.next();
System.out.println(n1+" Technologies " +n2);
}
}

Output:-

You might also like