Java Coimbatore
Java Coimbatore
Write a program to read an array, eliminiate duplicate elements and calculate the sum of even
numbers (values) present in the array.
Include a class UserMainCode with a static method addUniqueEven which accepts a single
integer array. The return type (integer) should be the sum of the even numbers. In case there
is no even number it should return -1.
Create a Class Main which would be used to accept Input array and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of n+1 integers. The first integer corresponds to n, the number of elements in
the array. The next 'n' integers correspond to the elements in the array.
In case there is no even integer in the input array, print no even numbers as output. Else
print the sum.
Refer sample output for formatting specifications.
Sample Input 1:
4
2
5
1
4
Sample Output 1:
6
Sample Input 2:
3
1
1
1
Sample Output 2:
no even numbers
Solutions:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = newScanner(System.in);
int n = sc.nextInt();
int[] a = newint[20];
for (int i = 0; i < n; i++)
a[i] = sc.nextInt();
int res = User.addUniqueEven(a);
if (res == -1)
System.out.println("no even numbers");
else
System.out.println(res);
}
}
publicclass User {
publicstaticint addUniqueEven(int a[]) {
int i = 0, j = 0, count = 0, sum = 0;
int n = a.length;
for (i = 0; i < n; i++) {
count = 0;
for (j = i + 1; j < n; j++) {
if (a[i] == a[j])
count++;
}
if (count == 0) {
if (a[i] % 2 == 0)
sum = sum + a[i];
}
}
if (sum == 0)
return -1;
else
returnsum;
}
}
Write a program to check if a given string is palindrome and contains at least two different
vowels.
Include a class UserMainCode with a static method checkPalindrome which accepts a
string. The return type (integer) should be 1 if the above condition is satisfied, otherwise
return -1.
Create a Class Main which would be used to accept Input string and call the static method
present in UserMainCode.
Note – Case Insensitive while considering vowel, i.e a &A are same vowel, But Case
sensitive while considering palindrome i.e abc CbA are not palindromes.
Input and Output Format:
Input consists of a string with maximum size of 100 characters.
Output consists of a single Integer.
Refer sample output for formatting specifications.
Sample Input 1:
abceecba
Sample Output 1:
valid
Sample Input 2:
abcd
Sample Output 2:
Invalid
Solution :
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = newScanner(System.in);
String s = sc.next();
int res = User.checkPalindrome(s);
if (res == 1)
System.out.println("valid");
else
System.out.println("invalid");
}
}
publicclass User {
publicstaticint checkPalindrome(String s) {
int res = 0, i = 0, j = 0, count = 0, k = 0;
StringBuffer sb = new StringBuffer(s);
sb.reverse();
if (sb.toString().equals(s)) {
for (i = 0; i < s.length(); i++) {
count = 0;
return res;
}
}
Obtain two strings from user as input. Your program should modify the first string such that
all the characters are replaced by plus sign (+) except the characters which are present in the
second string.
That is, if one or more characters of first string appear in second string, they will not be
replaced by +.
Return the modified string as output. Note - ignore case.
Include a class UserMainCode with a static method replacePlus which accepts two string
variables. The return type is the modified string.
Create a Class Main which would be used to accept two Input strings and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of two strings with maximum size of 100 characters.
Output consists of a single string.
Refer sample output for formatting specifications.
Sample Input 1:
abcxyz
axdef
Sample Output 1:
a++ x++
Sample Input 2:
ABCDEF
feCBAd
Sample Output 2:
ABCDEF
Solution:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = newScanner(System.in);
String s1 = sc.nextLine();
String s2 = sc.nextLine();
System.out.println(User.replacePlus(s1, s2));
}
}
publicclass User {
publicstatic String replacePlus(String s1, String s2) {
String ss1 = s1.toLowerCase();
String ss2 = s2.toLowerCase();
StringBuffer sb = newStringBuffer();
for (int i = 0; i < s1.length(); i++) {
char c = ss1.charAt(i);
if (ss2.indexOf(c) == -1)
sb.append('+');
else
sb.append(s1.charAt(i));
}
return sb.toString();
}
}
4. Longest Word
Write a Program which finds the longest word from a sentence. Your program should read a
sentence as input from user and return the longest word. In case there are two words of
maximum length return the word which comes first in the sentence.
Include a class UserMainCode with a static method getLargestWord which accepts a string
The return type is the longest word of type string.
Create a Class Main which would be used to accept two Input strings and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of a string with maximum size of 100 characters.
Output consists of a single string.
Refer sample output for formatting specifications.
Sample Input 1:
Welcome to the world of Programming
Sample Output 1:
Programming
Sample Input 2:
ABC DEF
Sample Output 2:
ABC
Solution:
import java.util.Scanner;
publicclass Main {
publicclass User {
publicstatic String getLongestWord(String s) {
int len, i, p = 0, max = 0, count = 0;
char b;
s = s.concat(" ");
len = s.length();
for (i = 0; i < len; i++) {
b = s.charAt(i);
if (b != ' ') {
count++;
} else {
if (count > max) {
max = count;
p = i;
}
count = 0;
}
}
return (s.substring(p - max, p));
}
}
import java.util.Scanner;
public class PalindromeMain {
System.out.println(Palindrome.checkPalindrome(s1));
}
import java.util.StringTokenizer;
s2=s;
}
}
return s2;
}
}
5. String Occurences
Obtain two strings from user as input. Your program should count the number of occurences
of second word of second sentence in the first sentence.
Return the count as output. Note - Consider case.
Include a class UserMainCode with a static method countNoOfWords which accepts two
string variables. The return type is the modified string.
Create a Class Main which would be used to accept two Input strings and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of two strings with maximum size of 100 characters.
Output consists of a single string.
Refer sample output for formatting specifications.
Sample Input 1:
abc bcd abc bcd abc abc
av abc
Sample Output 1:
4
Sample Input 2:
ABC xyz AAA
w abc
Sample Output 2:
0
Solution:
import java.util.Scanner;
publicclass Main {
import java.util.StringTokenizer;
publicclass User {
publicstaticint countNoOfWords(String s1, String s2) {
String[] a = new String[s1.length()];
String[] b = new String[s2.length()];
int i = 0, j = 0, count = 0;
StringTokenizer st1 = newStringTokenizer(s1, " ");
StringTokenizer st2 = newStringTokenizer(s2, " ");
while (st1.hasMoreTokens()) {
a[i] = st1.nextToken();
i++;
}
while (st2.hasMoreTokens()) {
b[j] = st2.nextToken();
j++;
}
for (int k = 0; k < i; k++) {
if (b[1].equals(a[k])) {
count++;
}
}
return count;
}
}
import java.util.Scanner;
public class PalindromeMain {
public static void main(String[] args) {
}
import java.util.StringTokenizer;
int count=0;
StringTokenizer st=new StringTokenizer(s1," ");
StringTokenizer st1=new StringTokenizer(s2," ");
String a2=st1.nextToken();
String b2=st1.nextToken();
while(st.hasMoreTokens())
{
String s=st.nextToken();
if(s.equalsIgnoreCase(b2))
{
count++;
}
}
return count;
}
}
6. ArrayList Manipulation
Solution :
import java.util.ArrayList;
import java.util.Scanner;
publicclass Main {
publicclass User {
publicstatic ArrayList<Integer> generateOddEvenList(ArrayList<Integer> a1,
ArrayList<Integer> a2)
{
ArrayList<Integer> a = new ArrayList<Integer>();
int i = 0;
for (i = 0; i < a1.size(); i++) {
if (i % 2 == 0)
a.add(a2.get(i));
else
a.add(a1.get(i));
}
return a;
}
}
7. Duplicate Characters
Write a Program which removes duplicate characters from the string. Your program should
read a sentence (string) as input from user and return a string removing duplicate characters.
Retain the first occurance of the duplicate character. Assume the characters are case –
sensitive.
Include a class UserMainCode with a static method removeDuplicates which accepts a
string. The return type is the modified sentence of type string.
Create a Class Main which would be used to accept the input string and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string with maximum size of 100 characters.
Output consists of a single string.
Refer sample output for formatting specifications.
Sample Input 1:
hi this is sample test
Sample Output 1:
hi tsample
Sample Input 2:
ABC DEF
Sample Output 2:
ABC DEF
Solution:
import java.util.Scanner;
publicclass Main {
import java.util.Iterator;
importjava.util.LinkedHashSet;
publicclass User {
publicstatic String removeDuplicates(String s) {
char a[] = s.toCharArray();
StringBuffer sb = newStringBuffer();
LinkedHashSet<Character> lh = newLinkedHashSet<Character>();
for (int i = 0; i < a.length; i++)
lh.add(a[i]);
Iterator<Character> itr = lh.iterator();
while (itr.hasNext()) {
char c = itr.next();
if (c != ' ')
;
sb.append(c);
}
return sb.toString();
}
}
import java.util.Scanner;
class Main
{ public static void main(String[] arg)
{
Scanner sc=new Scanner(System.in);
String s=sc.nextLine();
System.out.println(MainClass.removeDuplicate(s));
}}
import java.util.HashSet;
import java.util.LinkedHashSet;
public class MainClass {
8. Mastering Hashmap
You have recently learnt about hashmaps and in order to master it, you try and use it in all of
your programs.
Your trainer / teacher has given you the following exercise:
1. Read 2n numbers as input where the first number represents a key and second one as
value. Both the numbers are of type integers.
2. Write a function getAverageOfOdd to find out average of all values whose keys are
represented by odd numbers. Assume the average is an int and never a decimal
number. Return the average as output. Include this function in class UserMainCode.
Create a Class Main which would be used to read 2n numbers and build the hashmap. Call
the static method present in UserMainCode.
Input and Output Format:
Input consists of a 2n+ 1 integers. The first integer specifies the value of n (essentially the
hashmap size). The next pair of n numbers denote the key and value.
Output consists of an integer representing the average.
Refer sample output for formatting specifications.
Sample Input 1:
4
2
34
1
4
5
12
4
22
Sample Output 1:
8
Solution:
import java.util.HashMap;
import java.util.Scanner;
publicclass Main {
import java.util.HashMap;
import java.util.Iterator;
publicclass User {
publicstaticint getAverageOfOdd(HashMap<Integer, Integer> hm1) {
int sum = 0, count = 0;
Iterator<Integer> itr = hm1.keySet().iterator();
while (itr.hasNext()) {
int key = itr.next();
if (key % 2 != 0) {
count++;
int val = hm1.get(key);
sum = sum + val;
}
}
int avg = sum / count;
return avg;
}
}
A Company wants to automate its payroll process. You have been assigned as the
programmer to build this package. You would like to showcase your skills by creating a
quick prototype. The prototype consists of the following steps:
1. Read Employee details from the User. The details would include id, designation and
salary in the given order. The datatype for id is integer, designation is string and
salary is integer.
2. You decide to build two hashmaps. The first hashmap contains employee id as key
and designation as value, and the second hashmap contains same employee ids as key
and salary as value.
3. The company decides to hike the salary of managers by 5000. You decide to write a
function increaseSalaries which takes the above hashmaps as input and returns a
hashmap with only managers id and their increased salary as output. Include this
function in class UserMainCode.
Create a Class Main which would be used to read employee details in step 1 and build the
two hashmaps. Call the static method present in UserMainCode.
Input and Output Format:
Input consists of employee details. The first number indicates the size of the employees. The
next three values indicate the employee id, employee designation and employee salary.
Output consists of a single string.
Refer sample output for formatting specifications.
Sample Input 1:
2
2
programmer
3000
8
manager
50000
Sample Output 1:
8
55000
Solution :
import java.util.HashMap;
import java.util.Iterator;
import java.util.Scanner;
class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
HashMap<Integer, String> h1 = new HashMap<Integer, String>();
HashMap<Integer, Integer> h2 = new HashMap<Integer, Integer>();
HashMap<Integer, Integer> hm = new HashMap<Integer, Integer>();
for (int i = 0; i < n; i++) {
int id = sc.nextInt();
h1.put(id, sc.next());
h2.put(id, sc.nextInt());
}
hm = User.dis(n, h1, h2);
Iterator<Integer> itr = hm.keySet().iterator();
while (itr.hasNext()) {
int id = itr.next();
int sal = hm.get(id);
System.out.println(id);
System.out.println(sal);
}
}
}
import java.util.HashMap;
import java.util.Iterator;
}
}
import java.util.HashMap;
import java.util.Iterator;
import java.util.Scanner;
public class Main {
public static void main(String[] args)
{
for(int i=0;i<n;i++)
{
int id=Integer.parseInt(sc.nextLine());
ip1.put(id,sc.nextLine());
ip2.put(id,Integer.parseInt(sc.nextLine()));
}
Iterator<Integer> itr=op.keySet().iterator();
while(itr.hasNext())
{
int key=itr.next();
int value=op.get(key);
System.out.println(key);
System.out.println(value);
}}
/*
int n=sc.nextInt();
for(int i=0;i<n;i++)
{
int id=sc.nextInt();
ip1.put(id,sc.next());
ip2.put(id,sc.nextInt());
}
*/
import java.util.HashMap;
import java.util.Iterator;
HashMap<Integer,Integer>op=new HashMap<Integer,Integer>();
Iterator<Integer> itr=hm1.keySet().iterator();
while(itr.hasNext())
{
int id=itr.next();
String s=hm1.get(id);
if(s.equals("manager"))
{
int newsal=hm2.get(id)+5000;
op.put(id,newsal);
}
}
return op;
}
}
Write a program to check if the first word and the last word in the input string match.
Include a class UserMainCode with a static method “check” that accepts a string argument
and returns an int. If the first word and the last word in the string match, the method returns
the number of characters in the word. Else the method returns the sum of the number of
characters in the first word and last word.
Create a class Main which would get the input as a String and call the static
method check present in the UserMainCode.
Sample Input 1:
how are you you are how
Sample Output 1:
3
Sample Input 2:
how is your child
Sample Output 2:
8
Solution:
import java.util.Scanner;
publicclass Main {
import java.util.StringTokenizer;
publicclass User {
publicstaticint check(String s) {
StringTokenizer st = new StringTokenizer(s, " ");
int n = st.countTokens();
String[] s1 = new String[n];
int i = 0, value = 0;
while (st.hasMoreTokens()) {
s1[i] = st.nextToken();
i++;
}
if (s1[0].equals(s1[i - 1]))
value = s1[0].length();
else
value = s1[0].length() + s1[i - 1].length();
return value;
}
}
Given an array of Strings, write a program to take the last character of each string and make a
new String by concatenating it.
Create a class Main which would get the String array as input and call the static
method concatCharacter present in the UserMainCode.
Sample Input:
3
ab
a
abcd
Sample Output:
bad
Solution:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner s = newScanner(System.in);
int n = s.nextInt();
String[] str = new String[n];
for (int i = 0; i < n; i++)
str[i] = s.next();
System.out.println(User.concatCharacter(str));
}
}
publicclass User {
publicstatic String concatCharacter(String[] s) {
StringBuffer sb = newStringBuffer();
for (int i = 0; i < s.length; i++) {
sb.append(s[i].charAt(s[i].length() - 1));
}
return sb.toString();
}
}
12. Anagram
Write a program to check whether the two given strings are anagrams.
Note: Rearranging the letters of a word or phrase to produce a new word or phrase, using all
the original letters exactly once is called Anagram."
Include a class UserMainCode with a static method “getAnagram” that accepts 2 strings as
arguments and returns an int. The method returns 1 if the 2 strings are anagrams. Else it
returns -1.
Create a class Main which would get 2 Strings as input and call the static
method getAnagram present in the UserMainCode.
Input and Output Format:
Input consists of 2 strings. Assume that all characters in the string are lower case letters.
Output consists of a string that is either “Anagrams” or “Not Anagrams”.
Sample Input 1:
eleven plus two
twelve plus one
Sample Output 1:
Anagrams
Sample Input 2:
orchestra
carthorse
Sample Output 2:
Anagrams
Sample Input 3:
cognizant
technologies
Sample Output 3:
Not Anagrams
Solutions:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner s = newScanner(System.in);
String s1 = s.nextLine();
String s2 = s.nextLine();
int result = User.getAnagrams(s1, s2);
if (result == 1)
System.out.println("Anagrams");
else
System.out.println("Not Anagrams");
}
}
import java.util.ArrayList;
import java.util.Collections;
publicclass User {
publicstaticint getAnagrams(String s1, String s2) {
}
}
for(int i=0;i<s2.length();i++)
{
a2.add(s2.charAt(i));
}
Collections.sort(a1);
Collections.sort(a2);
if((a1.containsAll(a2))|| (a2.containsAll(a1)))
{
res=true;
}
return res;
}
}
Given 2 strings corresponding to the previous meter reading and the current meter reading,
write a program to calculate electricity bill.
The input string is in the format ""AAAAAXXXXX"".
AAAAA is the meter code and XXXXX is the meter reading.
FORMULA: (XXXXX-XXXXX)*4
Hint: if AAAAA of input1 and input2 are equal then separate the XXXXX from string and
convert to integer. Assume that AAAAA of the 2 input strings will always be equal.
Create a class Main which would get 2 Strings as input and call the static
method calculateMeterReading present in the UserMainCode.
Sample Input:
CSECE12390
CSECE12400
Sample Output:
40
Solution:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner s = newScanner(System.in);
String s1 = s.nextLine();
String s2 = s.nextLine();
System.out.println(User.calculateMeterReading(s1, s2));
}
}
publicclass User {
publicstaticint calculateMeterReading(String s1, String s2) {
String str1 = s1.substring(s1.length() / 2);
String str2 = s2.substring(s2.length() / 2);
int a = Integer.parseInt(str1);
int b = Integer.parseInt(str2);
int res = (b - a) * 4;
return res;
}
}
14. Retirement
Given an input as HashMap which contains key as the ID and dob as value of employees,
write a program to find out employees eligible for retirement. A person is eligible for
retirement if his age is greater than or equal to 60.
Create a class Main which would get the HashMap as input and call the static
method retirementEmployeeList present in the UserMainCode.
Sample Output:
[C3030, T4040]
Solution:
import java.text.ParseException;
importjava.util.LinkedHashMap;
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) throws ParseException {
Scanner s = newScanner(System.in);
int n = s.nextInt();
LinkedHashMap<String, String> hm = newLinkedHashMap<String, String>();
for (int i = 0; i < n; i++)
hm.put(s.next(), s.next());
System.out.println(User.retirementEmployeeList(hm));
}
}
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.Iterator;
import java.util.LinkedHashMap;
publicclass User {
publicstaticArrayList<String> retirementEmployeeList(
LinkedHashMap<String, String> hm) throws ParseException {
ArrayList<String> al = new ArrayList<String>();
SimpleDateFormat sdf = newSimpleDateFormat("dd/MM/yyyy");
String s = "01/01/2014";
Date d2 = sdf.parse(s);
Date d1 = newDate();
Iterator<String> itr = hm.keySet().iterator();
while (itr.hasNext()) {
String key = itr.next();
String val = hm.get(key);
d1 = sdf.parse(val);
Calendar c = Calendar.getInstance();
c.setTime(d1);
int y1 = c.get(Calendar.YEAR);
int m1 = c.get(Calendar.MONTH);
int day1 = c.get(Calendar.DAY_OF_MONTH);
c.setTime(d2);
int y2 = c.get(Calendar.YEAR);
int m2 = c.get(Calendar.MONTH);
int day2 = c.get(Calendar.DAY_OF_MONTH);
int y = Math.abs(y1 - y2);
if (m1 == m2) {
if (day1 > day2)
y--;
} elseif (m1 > m2)
y--;
if (y >= 60)
al.add(key);
}
return al;
}
}
import java.text.ParseException;
import java.util.HashMap;
import java.util.Scanner;
System.out.println(NewClass.retirement(hm));
}
public class NewClass {
Calendar cal=Calendar.getInstance();
cal.setTime(d1);
int res=y2-y1;
if(res>=60)
{
a1.add(k);
}
Collections.sort(a1);
return a1;
}
15. Kaprekar Number
Write a program to check whether the given input number is a Kaprekar number or not.
Note : A positive whole number ‘n’ that has ‘d’ number of digits is squared and split into two
pieces, a right-hand piece that has ‘d’ digits and a left-hand piece that has remaining ‘d’ or ‘d-
1’ digits. If the sum of the two pieces is equal to the number, then ‘n’ is a Kaprekar number.
Example 2:
Input1:45
Hint:
45^2 = 2025, right-hand piece of 2025 = 25 and left hand piece of 2025 = 20
Sum = 25 + 20 = 45, i.e. equal to the number. Hence, 45 is a Kaprekar number."
Create a class Main which would get the an Integer as input and call the static
method getKaprekarNumber present in the UserMainCode.
Sample Input 1:
9
Sample Output 1:
Kaprekar Number
Sample Input 2:
45
Sample Output 2:
Kaprekar Number
Sample Input 3:
4
Sample Output 3:
Not A Kaprekar Number
Solution:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = newScanner(System.in);
int n = sc.nextInt();
int i = User.getKaprekarNumber(n);
if (i == 1)
System.out.println("Kaprekar Number");
else
System.out.println("Not Kaprekar Number");
}
}
String a=String.valueOf(sqr);
String n1 = a.substring(count/2);
String n2 = a.substring(0,count/2);
int i = Integer.parseInt(n1);
int j = Integer.parseInt(n2);
if ((i + j) == temp)
res = 1;
else
res = -1;
return res;
}
}
}
}
16. Vowels
Given a String input, write a program to find the word which has the the maximum number of
vowels. If two or more words have the maximum number of vowels, print the first word.
Create a class Main which would get the a String as input and call the static
method storeMaxVowelWord present in the UserMainCode.
Sample Input :
What is your name?
Sample Output :
Your
Solution:
import java.text.ParseException;
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) throws ParseException {
Scanner sc = newScanner(System.in);
String s = sc.nextLine();
System.out.println(User.storeMaxVowelWord(s));
}
}
import java.util.StringTokenizer;
publicclass User {
publicstatic String storeMaxVowelWord(String s) {
StringTokenizer st = new StringTokenizer(s, " ");
int count = 0, max = 0;
String s2 = null;
while (st.hasMoreTokens()) {
String s1 = st.nextToken();
count = 0;
for (int i = 0; i <s1.length(); i++) {
if (s1.charAt(i) == 'a' || s1.charAt(i) == 'e'
|| s1.charAt(i) == 'i' || s1.charAt(i) == 'o'
|| s1.charAt(i) == 'u' || s1.charAt(i) == 'A'
|| s1.charAt(i) == 'E' || s1.charAt(i) == 'I'
|| s1.charAt(i) == 'O' || s1.charAt(i) == 'U')
count++;
}
if (count > max) {
max = count;
s2 = s1;
}
}
return s2;
}
}
Given a String as input , write a program to count and print the number of unique characters
in it.
Include a class UserMainCode with a static method “checkUnique” that accepts a String as
input and returns the number of unique characters in it. If there are no unique characters in
the string, the method returns -1.
Create a class Main which would get a String as input and call the static
method checkUnique present in the UserMainCode.
Sample Input 1:
HOWAREYOU
Sample Output 1:
7
(Hint :Unique characters are : H,W,A,R,E,Y,U and other characters are repeating)
Sample Input 2:
MAMA
Sample Output2:
-1
Solution:
import java.util.Scanner;
publicclass Main {
publicclass User {
publicstaticint checkUnique(String s) {
StringBuffer sb = new StringBuffer(s);
int len = s.length();
int i = 0, j = 0, count;
for (i = 0; i < len; i++) {
count = 0;
for (j = i + 1; j < len; j++) {
if (sb.charAt(i) == sb.charAt(j)) {
sb.deleteCharAt(j);
count++;
j--;
len--;
}
}
if (count > 0) {
sb.deleteCharAt(i);
i--;
len--;
}
}
if(sb.length()==0)
return -1;
else
return sb.length();
}
}
Write a program to read an array and find average of all elements located at index i, where i
is a prime number. Type cast the average to an int and return as output. The index starts from
0.
Include a class UserMainCode with a static method addPrimeIndex which accepts a single
integer array. The return type (integer) should be the average of all elements located at index
i where i is a prime number.
Create a Class Main which would be used to accept Input array and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of n+1 integers. The first integer corresponds to n, the number of elements in
the array. The next 'n' integers correspond to the elements in the array.
Output consists of a single Integer.
Refer sample output for formatting specifications.
Assume that the maximum number of elements in the array is 20 and minimum number of
elements is 3.
Sample Input 1:
4
2
5
2
4
Sample Output 1:
3
Solutions:
import java.text.ParseException;
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) throws ParseException {
Scanner sc = newScanner(System.in);
int n = sc.nextInt();
int[] a = newint[20];
for (int i = 0; i < n; i++)
a[i] = sc.nextInt();
System.out.println(User.addPrimeIndex(a));
}
}
public class User {
public static int addPrimeIndex(int a[],int n) {
int count=0,sum=0,temp=0;
int avg=0;
for(int i=2;i<=n;i++)
{
count=0;
for(int j=1;j<i;j++)
{
if(i%j==0)
count++;
}
if(count==1)
{
temp++;
sum=sum+a[i];
}
}
avg=sum/temp;
return avg;
}
}
Sample Input 3:
4
5
10
15
20
0
10
12
20
-
Sample Output 3:
5
15
Solution:
import java.util.ArrayList;
import java.util.Scanner;
import java.util.ArrayList;
import java.util.LinkedHashSet;
return al3;
}
}
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Scanner;
class Main
{
public static void main(String[] arg)
{
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
ArrayList<Integer> aa=new ArrayList<Integer>();
for(int i=0;i<n;i++)
{
aa.add(sc.nextInt());
}
ArrayList<Integer> aa2=new ArrayList<Integer>();
for(int i=0;i<n;i++)
{
aa2.add(sc.nextInt());
}
char c=sc.next().charAt(0);
import java.util.ArrayList;
if(c=='+')
{
aa.removeAll(aa2);
aa.addAll(aa2);
aa3=aa;
}
if(c=='*')
{
aa.retainAll(aa2);
aa3=aa;
}
if(c=='-')
{
aa.removeAll(aa2);
aa3=aa;
}
return aa3;
}
}
20. Largest Span
Write a program to read an array and find the size of largest span in the given array
""span"" is the number of elements between two repeated numbers including both numbers.
An array with single element has a span of 1.
.
Include a class UserMainCode with a static method getMaxSpan which accepts a single
integer array. The return type (integer) should be the size of largest span.
Create a Class Main which would be used to accept Input array and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of n+1 integers. The first integer corresponds to n, the number of elements in
the array. The next 'n' integers correspond to the elements in the array.
Output consists of a single Integer.
Refer sample output for formatting specifications.
Sample Input 1:
5
1
2
1
1
3
Sample Output 1:
4
Sample Input 2:
7
1
4
2
1
4
1
5
Sample Output 2:
6
Solution:
import java.util.Scanner;
publicclass Main {
}
}
publicclass User {
publicstaticint getLargestSpan(int[] a) {
int len = a.length;
int i = 0, j = 0, e = 0, count = 0;
for (i = 0; i < len; i++) {
for (j = i + 1; j < len; j++) {
if (a[i] == a[j]) {
e = j;
}
}
if (e - i > count)
count = e - i;
}
return count + 1;
}
}
Solution:
import java.text.ParseException;
import java.util.ArrayList;
import java.util.Scanner;
import java.util.ArrayList;
import java.util.StringTokenizer;
Sample Output 1:
Appreciation
Solution:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = newScanner(System.in);
String s = sc.nextLine();
System.out.println(User.getWordWithMaximumVowels(s));
}
}
import java.util.StringTokenizer;
publicclass User {
publicstatic String getWordWithMaximumVowels(String s) {
StringTokenizer st = new StringTokenizer(s, " ");
int count = 0, max = 0;
String res = null;
String f = null;
while (st.hasMoreTokens()) {
res = st.nextToken();
count = 0;
for (int k = 0; k < res.length(); k++) {
if (res.charAt(k) == 'a' || res.charAt(k) == 'e'
|| res.charAt(k) == 'i' || res.charAt(k) == 'o'
|| res.charAt(k) == 'u' || res.charAt(k) == 'A'
|| res.charAt(k) == 'E' || res.charAt(k) == 'I'
|| res.charAt(k) == 'O' || res.charAt(k) == 'U')
count++;
if (count > max) {
max = count;
f = res;
}
}
}
return f;
}
}
Write a Program to check if given word contains exactly five vowels and the vowels are in
alphabetical order. Return 1 if the condition is satisfied else return -1. Assume there is no
repetition of any vowel in the given string and all letters are in lower case.
Include a class UserMainCode with a static method testOrderVowels which accepts a string
The return type is integer based on the condition stated above.
Create a Class Main which would be used to accept two Input strings and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of a string with maximum size of 100 characters.
Output consists of a single string.
Refer sample output for formatting specifications.
Sample Input 1:
acebisouzz
Sample Output 1:
valid
Sample Input 2:
alphabet
Sample Output 2:
invalid
Solution:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = newScanner(System.in);
String s = sc.nextLine();
int res = User.testOrderVowels(s);
if (res == 1)
System.out.println("valid");
else
System.out.println("invalid");
}
}
publicclass User {
publicstaticint testOrderVowels(String s1) {
StringBuffer sb = newStringBuffer();
int res = 0;
for (int i = 0; i < s1.length(); i++) {
if (s1.charAt(i) == 'a' || s1.charAt(i) == 'A'
|| s1.charAt(i) == 'e' || s1.charAt(i) == 'E'
|| s1.charAt(i) == 'i' || s1.charAt(i) == 'I'
|| s1.charAt(i) == 'o' || s1.charAt(i) == 'O'
|| s1.charAt(i) == 'u' || s1.charAt(i) == 'U') {
sb.append(s1.charAt(i));
}
}
if (sb.toString().equals("aeiou"))
res = 1;
else
res = 0;
return res;
}
}
Write a Program that accepts a string as a parameter and returns the string with each pair of
adjacent letters reversed. If the string has an odd number of letters, the last letter is
unchanged.
Include a class UserMainCode with a static method swapPairs which accepts a string. The
return type is string which is reversed pair of letters.
Create a Class Main which would be used to accept two Input strings and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of a string with maximum size of 100 characters.
Output consists of a single string.
Refer sample output for formatting specifications.
Sample Input 1:
forget
Sample Output 1:
ofgrte
Sample Input 2:
New York
Sample Output 2:
eN woYkr
import java.util.Scanner;
Sample Output 1:
7
Solution:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = newScanner(System.in);
String s = sc.next();
System.out.println(User.getdigits(s));
}
}
publicclass User {
publicstaticint getdigits(String s) {
int sum = 0, n = 0;
for (int i = 0; i < s.length(); i++) {
if (s.charAt(i) >= 65 && s.charAt(i) <= 90 || s.charAt(i) >= 97
&&s.charAt(i) <= 122)
;
else {
n = Character.getNumericValue(s.charAt(i));
sum = sum + n;
}
}
return sum;
}
}
if( Character.isDigit(s.charAt(i)) )
{
int
c=Character.getNumericValue(s.charAt(i));
sum = sum +c;
}
}
String sum1=String.valueOf(sum);
return sum1;
}
26. Password
Validation Rule:
Atleast 8 characters
Atleast 1 number(1,2,3...)
Atleast 1 special character(@,#,%...)
Atleast 1 alphabet(a,B...)
Sample Input 1:
cts@1010
Sample Output 1:
Valid
Sample Input 2:
punitha3
Sample Output 2:
Invalid
Solution:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = newScanner(System.in);
String s = sc.next();
boolean flag = User.validatePassword(s);
if (flag == true)
System.out.println("valid");
else
System.out.println("invalid");
}
}
publicclass User {
publicstaticboolean validatePassword(String s) {
int number = 0, c = 0, sp = 0;
boolean flag = false;
for (int i = 0; i < s.length(); i++) {
if (s.length() >= 8) {
if (Character.isDigit(s.charAt(i))) {
number++;
}
if (Character.isLetter(s.charAt(i))) {
c++;
} else {
if (s.charAt(i) != ' '&& !Character.isDigit(s.charAt(i))
&& !Character.isLetter(s.charAt(i)))
sp++;
}
}
}
if (number >= 1 && c >= 1 && sp >= 1)
flag = true;
return flag;
}
}
return flag;
A Company wants to give away bonus to its employees. You have been assigned as the
programmer to automate this process. You would like to showcase your skills by creating a
quick prototype. The prototype consists of the following steps:
1. Read Employee details from the User. The details would include id, DOB (date of
birth) and salary in the given order. The datatype for id is integer, DOB is string and
salary is integer.
2. You decide to build two hashmaps. The first hashmap contains employee id as key
and DOB as value, and the second hashmap contains same employee ids as key and
salary as value.
3. If the age of the employee in the range of 25 to 30 years (inclusive), the employee
should get bonus of 20% of his salary and in the range of 31 to 60 years (inclusive)
should get 30% of his salary. store the result in TreeMap in which Employee ID as
key and revised salary as value. Assume the age is caculated based on the date 01-09-
2014. (Typecast the bonus to integer).
4. Other Rules:
a. If Salary is less than 5000 store -100.
b. If the age is less than 25 or greater than 60 store -200.
c. a takes more priority than b i.e both if a and b are true then store -100.
1. You decide to write a function calculateRevisedSalary which takes the above
hashmaps as input and returns the treemap as output. Include this function in class
UserMainCode.
Create a Class Main which would be used to read employee details in step 1 and build the
two hashmaps. Call the static method present in UserMainCode.
Input and Output Format:
Input consists of employee details. The first number indicates the size of the employees. The
next three values indicate the employee id, employee DOB and employee salary. The
Employee DOB format is “dd-mm-yyyy”
Output consists of a single string.
Refer sample output for formatting specifications.
Sample Input 1:
2
1010
20-12-1987
10000
2020
01-01-1985
14400
Sample Output 1:
1010
12000
2020
17280
Solution:
import java.text.ParseException;
import java.util.*;
}
return t;
}
}
A School wants to assign grades to its students based on their marks. You have been assigned
as the programmer to automate this process. You would like to showcase your skills by
creating a quick prototype. The prototype consists of the following steps:
1. Read student details from the User. The details would include roll no, mark in the
given order. The datatype for id is integer, mark is integer.
2. You decide to build a hashmap. The hashmap contains roll no as key and mark as
value.
3. BUSINESS RULE:
1. If Mark is greater than or equal to 80 store medal as ""GOLD"".
2. If Mark is less then to 80 and greater than or equal to 60 store medal as ""SILVER"".
3 .If Mark is less then to 60 and greater than or equal to 45 store medal as ""BRONZE"" else
store ""FAIL"".
Store the result in TreeMap in which Roll No as Key and grade as value.
4. You decide to write a function calculateGrade which takes the above hashmaps as input
and returns the treemap as output. Include this function in class UserMainCode.
Create a Class Main which would be used to read employee details in step 1 and build the
two hashmaps. Call the static method present in UserMainCode.
Input and Output Format:
Input consists of employee details. The first number indicates the size of the students. The
next two values indicate the roll id, mark.
Output consists of a single string.
Refer sample output for formatting specifications.
Sample Input 1:
2
1010
80
100
40
Sample Output 1:
100
FAIL
1010
GOLD
Solution:
import java.util.HashMap;
import java.util.Iterator;
import java.util.Scanner;
import java.util.TreeMap;
publicclass User {
}
}
29. DigitSum
Write a program to read a non-negative integer n, compute the sum of its digits. If sum is
greater than 9 repeat the process and calculate the sum once again until the final sum comes
to single digit.Return the single digit.
Include a class UserMainCode with a static method getDigitSum which accepts the integer
value. The return type is integer.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
9999
Sample Output 1:
9
Sample Input 2:
698
Sample Output 2:
5
Solution:
import java.util.Scanner;
publicclass Main {
publicclass User {
publicstaticint getDigitSum(int n) {
int sum = 0;
while (n > 10) {
int r = 0;
sum = 0;
while (n != 0) {
r = n % 10;
sum = sum + r;
n = n / 10;
}
n = sum;
}
return sum;
}
}
30. Anagrams
Write a program to read two strings and checks if one is an anagram of the other.
An anagram is a word or a phrase that can be created by rearranging the letters of another
given word or phrase. We ignore white spaces and letter case. All letters of 'Desperation' can
be rearranged to the phrase 'A Rope Ends It'.
Include a class UserMainCode with a static method checkAnagram which accepts the two
strings. The return type is boolean which is TRUE / FALSE.
Create a Class Main which would be used to accept the two strings and call the static method
present in UserMainCode.
Sample Input 2:
Desperation
A Rope Ends It
Sample Output 2:
TRUE
Solution:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = newScanner(System.in);
String s1 = sc.nextLine();
String s2 = sc.nextLine();
boolean b = User.checkAnagram(s1, s2);
if (b == true)
System.out.println("TRUE");
else
System.out.println("FALSE");
}
}
import java.util.ArrayList;
import java.util.Collections;
publicclass User {
publicstaticboolean checkAnagram(String s1, String s2) {
boolean b = false;
ArrayList<Character> a1 = new ArrayList<Character>();
ArrayList<Character> a2 = new ArrayList<Character>();
ArrayList<Character> a3 = new ArrayList<Character>();
for (int i = 0; i < s1.length(); i++)
a1.add(s1.toLowerCase().charAt(i));
for (int i = 0; i < s2.length(); i++)
a2.add(s2.toLowerCase().charAt(i));
a3.add(' ');
a1.removeAll(a3);
a2.removeAll(a3);
Collections.sort(a1);
Collections.sort(a2);
if (a1.equals(a2))
b = true;
return b;
}
}
}
}
for(int i=0;i<s2.length();i++)
{
a2.add(s2.charAt(i));
}
Collections.sort(a1);
Collections.sort(a2);
if((a1.containsAll(a2))|| (a2.containsAll(a1)))
{
res=true;
}
return res;
}
}
1. Shift Left
Write a program to read a integer array of scores, and return a version of the given array
where all the 5's have been removed. The remaining elements should shift left towards the
start of the array as needed,
and the empty spaces at the end of the array should be filled with 0.
Include a class UserMainCode with a static method shiftLeft which accepts the integer array.
The return type is modified array.
Create a Class Main which would be used to accept the integer array and call the static
method present in UserMainCode.
Input consists of an integer n which is the number of elements followed by n integer values.
Output consists of modified array.
Refer sample output for formatting specifications.
Sample Input 1:
7
1
5
2
4
5
3
5
Sample Output 1:
1
2
4
3
0
0
0
Solution:
import java.util.Scanner;
Given a string array (s) with each element in the array containing alphabets or digits. Write a
program to add all the digits in every string and return the sum as an integer. If two digits
appear simultaneously do not consider it as one number. Ex- For 'Hyderabad 21' consider 2
and 1 as two digits instead of 21 as a number.
Include a class UserMainCode with a static method sumOfDigits which accepts the string
array. The return type is the integer formed based on rules.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of a an integer indicating the number of elements in the string array.
Output consists of a integer .
Refer sample output for formatting specifications.
Sample Input 1:
5
AAA1
B2B
4CCC
A5
ABCDE
Sample Output 1:
12
Sample Input 2:
3
12
C23
5CR2
Sample Output 2:
15
Solution:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = newScanner(System.in);
int n = sc.nextInt();
String[] s = new String[n];
for (int i = 0; i < n; i++)
s[i] = sc.next();
System.out.println(User.sumOfDigits(s));
}
}
publicclass User {
publicstaticint sumOfDigits(String[] ss) {
int sum = 0, n = 0;
for (int i = 0; i < ss.length; i++) {
String s = ss[i];
for (int k = 0; k < s.length(); k++) {
if (Character.isDigit(s.charAt(k))) {
n = Character.getNumericValue(s.charAt(k));
sum = sum + n;
}
}
}
return sum;
}
}
Given a string array (s) with each element in the array containing 0s and 1s. Write a program
to get the number of strings in the array where one String is getting as prefixed in other String
in that array .
Example 1: Input: {10,101010,10001,1111} Output =2 (Since 10 is a prefix of 101010 and
10001)
Example 2: Input: {010,1010,01,0111,10,10} Output =3(01 is a prefix of 010 and 0111. Also,
10 is a prefix of 1010) Note: 10 is NOT a prefix for 10.
Include a class UserMainCode with a static method findPrefix which accepts the string array.
The return type is the integer formed based on rules.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Input 1:
4
0
1
11
110
Sample Output 1:
3
Solution:
import java.util.HashSet;
import java.util.Scanner;
size = hs.size();
int i = 0;
int count = 0;
for (i = 0; i < size; i++) {
for (int j = 0; j < size; j++) {
if (input[i].equals(input[j]) == false) {
if (input[j].startsWith(input[i])) {
count++;
}
}
}
}
System.out.println(count);
}
}
34. Commons
Given two arrays of strings,return the count of strings which is common in both arrays.
Duplicate entries are counted only once.
Include a class UserMainCode with a static method countCommonStrings which accepts the
string arrays. The return type is the integer formed based on rules.
Create a Class Main which would be used to accept the string arrays and integer and call the
static method present in UserMainCode.
Sample Input 1:
3
a
c
e
3
b
d
e
Sample Output 1:
1
Sample Input 2:
5
ba
ba
black
sheep
wool
5
ba
ba
have
any
wool
Sample Output 2:
2
Solution:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = newScanner(System.in);
int n1 = sc.nextInt();
String[] s1 = new String[n1];
for (int i = 0; i < n1; i++) {
s1[i] = sc.next();
}
int n2 = sc.nextInt();
String[] s2 = new String[n2];
for (int i = 0; i < n2; i++) {
s2[i] = sc.next();
}
System.out.println(User.countCommonStrings(s1, s2, n1, n2));
}
}
import java.util.ArrayList;
publicclass User {
publicstaticint countCommonStrings(String[] a, String[] b, int n1, int n2) {
int count = 0;
ArrayList<String> al = new ArrayList<String>();
for (int i = 0; i < n1; i++) {
for (int j = 0; j < n2; j++) {
if (a[i].equalsIgnoreCase(b[j]))
if (!al.contains(b[i])) {
count++;
al.add(a[i]);
}
}
}
return count;
}
}
import java.util.HashSet;
import java.util.Iterator;
public class Palindrome {
public static int removeDuplicate(String[] words1,String[]
words2)
{
int count=0;
HashSet<String> s1=new HashSet<String>();
HashSet<String> s2=new HashSet<String>();
for(int i=0;i<words1.length;i++)
{
s1.add(words1[i]);
}
for(int i=0;i<words2.length;i++)
{
s2.add(words2[i]);
}
Iterator<String> it1=s1.iterator();
while(it1.hasNext())
{
String its1=it1.next();
Iterator<String>
it2=s2.iterator();
while(it2.hasNext())
{
String its2=it2.next();
if(its1.equals(its2))
{
count++;
}
}
}
return count;
}
}
Write a program to read a non-negative integer n, and find sum of fibonanci series for n
number..
Include a class UserMainCode with a static method getFibonacciSum which accepts the
integer value. The return type is integer.
The fibonacci seqence is a famous bit of mathematics, and it happens to have a recursive
definition.
The first two values in the sequnce are 0 and 1.
Each subsequent value is the sum of the previous two values, so the whole seqence is
0,1,1,2,3,5 and so on.
You will have to find the sum of the numbers of the Fibonaaci series for a given int n.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
Sample Output 1:
Solution:
importjava.util.Scanner;
publicclass Main {
publicclass User {
publicstaticint getFibonacciSum(int n) {
int a = 0, b = 1, c = 0, d = 1;
for (int i = 3; i <= n; i++) {
c = a + b;
a = b;
b = c;
d = d + c;
}
return d;
}
}
36. Email Validation
Write a program to read a string and validate the given email-id as input.
Validation Rules:
1. Ensure that there are atleast 5 characters between '@' and '.'
2. There should be only one '.' and one '@' symbol.
3. The '.' should be after the '@' symbol.
4. There must be atleast three characters before '@'.
5. The string after '.' should only be 'com'
Include a class UserMainCode with a static method ValidateEmail which accepts the string.
The return type is TRUE / FALSE as per problem.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
[email protected]
Sample Output 1:
TRUE
Sample Input 2:
[email protected]
Sample Output 2:
FALSE
Solution:
import java.util.Scanner;
class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
String email = sc.next();
System.out.println(User.ValidateEmail(email));
}
}
Sample Input 1:
5
11
5
14
26
3
3
5
3
1
Sample Output 1:
1
11
14
26
Solution:
int n1=sc.nextInt();
int[] a=new int[n1];
for(int i=0;i<n1;i++)
a[i]=sc.nextInt();
int n2=sc.nextInt();
int[] b= new int[n2];
for(int i=0;i<n2;i++)
b[i]=sc.nextInt();
int[] res=User.display(a,b,n1,n2);
for(int i=0;i<res.length;i++)
System.out.println(res[i]);
}
}
Write a program to read a string containing date in DD/MM/YYYY format and prints the
day of the week that date falls on.
Return the day in lowercase letter (Ex: monday)
Include a class UserMainCode with a static method getDayOfWeek which accepts the string.
The return type is the string.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
02/04/1985
Sample Output 1:
tuesday
Solution:
import java.text.ParseException;
import java.util.Scanner;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
39. Addtime
Write a program to read two String variables containing time intervals in hh:mm:ss format.
Add the two time intervals and return a string in days:hours:minutes:seconds format where
DD is number of days.
Hint: Maximum value for hh:mm:ss is 23:59:59
Include a class UserMainCode with a static method addTime which accepts the string values.
The return type is the string.
Create a Class Main which would be used to accept the two string values and call the static
method present in UserMainCode.
Sample Input 1:
12:45:30
13:50:45
Sample Output 1:
1:2:36:15
Sample Input 2:
23:59:59
23:59:59
Sample Output 2:
1:23:59:58
Solution:
import java.text.ParseException;
import java.util.Scanner;
publicclass Main {
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.TimeZone;
publicclass User {
publicstatic String addTime(String s1, String s2) throws ParseException {
// adding two times
SimpleDateFormat sdf = newSimpleDateFormat("HH:mm:ss");
sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
Date d1 = sdf.parse(s1);
Date d2 = sdf.parse(s2);
long time = d1.getTime() + d2.getTime();
String s = sdf.format(new Date(time));
// to calculate the day
Calendar c = Calendar.getInstance();
c.setTime(sdf.parse(s));
int day = c.get(Calendar.DAY_OF_MONTH);
if (day > 1)
day = day - 1;
String op = day + ":" + s;
return op;
}
}
import java.util.StringTokenizer;
int h1=Integer.parseInt(st1.nextToken());
int m1=Integer.parseInt(st1.nextToken());
int s1=Integer.parseInt(st1.nextToken());
int d=0;
int h2=Integer.parseInt(st2.nextToken());
int m2=Integer.parseInt(st2.nextToken());
int s2=Integer.parseInt(st2.nextToken());
int m,h,s;
m=m1+m2;
h=h1+h2;
s=s1+s2;
if(s>=60)
{
m=m+1;
s=s-60;
if(m1>=60)
{
h=h+1;
m=m-60;
if(h>=24)
{
d=d+1;
h=h-24;
}
}
}
if(m1>=60)
{
h=h+1;
m=m-60;
if(h>=24)
{
d=d+1;
h=h-24;
}
}
if(h>=24)
{
d=d+1;
h=h-24;
}
sb.append(d).append(":").append(h).append(":").append(m).append(":").
append(s);
return sb.toString();
}
}
0:00:01
0:00:02
0:0:0:3
12:45:30
13:50:45
1:2:36:15
12:20:20
22:20:10
12:20:20
22:20:10
1:10:40:30
1:20:20
2:20:10
1:20:20
2:20:10
0:3:40:30
import java.util.StringTokenizer;
int m,h,s;
m=m1+m2;
h=h1+h2;
s=s1+s2;
while(s>=60)
{
m=m+1;
s=s-60;
}
while(m>=60)
{
h=h+1;
m=m-60;
}
while(h>=24)
{
d=d+1;
h=h-24;
}
sb.append(d).append(":").append(h).append(":").append(m).append(":").
append(s);
return sb.toString();
}
}
Write a program to read a string and validate the given ISBN as input.
Validation Rules:
1. An ISBN (International Standard Book Number) is a ten digit code which uniquely
identifies a book.
2. To verify an ISBN you calculate 10 times the first digit, plus 9 times the second digit, plus
8 times the third ..all the way until you add 1 times the last digit.
If the final number leaves no remainder when divided by 11 the code is a valid ISBN.
Example 1:
Input:0201103311
Calculation: 10*0 + 9*2 + 8*0 + 7*1 + 6*1 + 5*0 + 4*3 + 3*3 + 2*1 + 1*1= 55.
55 mod 11 = 0
Hence the input is a valid ISBN number
Output: true
Include a class UserMainCode with a static method validateISBN which accepts the string.
The return type is TRUE / FALSE as per problem.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
0201103311
Sample Output 1:
TRUE
Solution:
import java.util.Scanner;
import java.util.*;
Write a program to read two String variables in DD-MM-YYYY.Compare the two dates and
return the older date in 'MM/DD/YYYY' format.
Include a class UserMainCode with a static method findOldDate which accepts the string
values. The return type is the string.
Create a Class Main which would be used to accept the two string values and call the static
method present in UserMainCode.
Sample Input 1:
05-12-1987
8-11-2010
Sample Output 1:
12/05/1987
Solution:
import java.text.ParseException;
import java.util.Scanner;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
return res;
}
}
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Palindrome {
public static String removeDuplicate(String s1,String s2)
throws ParseException
{
SimpleDateFormat sd1=new SimpleDateFormat("dd-MM-yyyy");
Date d1=sd1.parse(s1);
Date d2=sd1.parse(s2);
String res=null;
if(d1.compareTo(d2)<0)
{
res=sfd2.format(d1);
}
else
{
res=sfd2.format(d2);
}
return res;
}
}
1. Read account details from the User. The details would include id, DOB (date of birth) and
amount in the given order. The datatype for id is string, DOB is string and amount is integer.
2. You decide to build two hashmaps. The first hashmap contains employee id as key and
DOB as value, and the second hashmap contains same employee ids as key and amount as
value.
3. Rate of interest as on 01/01/2015:
a. If the age greater than or equal to 60 then interest rate is 10% of Amount.
b.If the age less then to 60 and greater than or equal to 30 then interest rate is 7% of
Amount.
v. If the age less then to 30 interest rate is 4% of Amount.
4. Revised Amount= principle Amount + interest rate.
5. You decide to write a function calculateInterestRate which takes the above hashmaps as
input and returns the treemap as output. Include this function in class UserMainCode.
Create a Class Main which would be used to read employee details in step 1 and build the
two hashmaps. Call the static method present in UserMainCode.
Sample Input 1:
4
SBI-1010
20-01-1987
10000
SBI-1011
03-08-1980
15000
SBI-1012
05-11-1975
20000
SBI-1013
02-12-1950
30000
Sample Output 1:
SBI-1010:10400
SBI-1011:16050
SBI-1012:21400
SBI-1013:33000
Write a program to calculate discount of the acccount holders based on the transaction
amount and registration date using below mentioned prototype:
1. Read account details from the User. The details would include id, DOR (date of
registration) and transaction amount in the given order. The datatype for id is string, DOR is
string and transaction amount is integer.
2. You decide to build two hashmaps. The first hashmap contains employee id as key and
DOR as value, and the second hashmap contains same employee ids as key and amount as
value.
3. Discount Amount as on 01/01/2015:
a. If the transaction amount greater than or equal to 20000 and registration greater than or
equal to 5 year then discount rate is 20% of transaction amount.
b. If the transaction amount greater than or equal to 20000 and registration less then to 5
year then discount rate is 10% of transaction amount.
c. If the transaction amount less than to 20000 and registration greater than or equal to 5
year then discount rate is 15% of transaction amount.
d. If the transaction amount less than to 20000 and registration less then to 5 year then
discount rate is 5% of transaction amount.
4. You decide to write a function calculateDiscount which takes the above hashmaps as
input and returns the treemap as output. Include this function in class UserMainCode.
Create a Class Main which would be used to read employee details in step 1 and build the
two hashmaps. Call the static method present in UserMainCode.
Input and Output Format:
Input consists of transaction details. The first number indicates the size of the employees. The
next three values indicate the user id, user DOR and transaction amount. The DOR (Date of
Registration) format is “dd-mm-yyyy”
Output consists of a string which has the user id and discount amount one in a line for each
user.
Refer sample output for formatting specifications.
Sample Input 1:
4
A-1010
20-11-2007
25000
B-1011
04-12-2010
30000
C-1012
11-11-2005
15000
D-1013
02-12-2012
10000
Sample Output 1:
A-1010:5000
B-1011:3000
C-1012:2250
D-1013:500
Solution:
Solution :
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = new Scanner(System.in);
String s = sc.nextLine();
System.out.println(User.printCapitalized(s));
}
}
import java.util.StringTokenizer;
publicclass User {
publicstatic String printCapitalized(String s) {
StringTokenizer st= new StringTokenizer(s," ");
StringBuffer sb= new StringBuffer();
while(st.hasMoreTokens())
{
String s1=st.nextToken();
String s2=s1.substring(0, 1);
String s3=s1.substring(1);
sb.append(s2.toUpperCase());
sb.append(s3);
sb.append(" ");
}
return sb.toString();
}
}
import java.util.StringTokenizer;
publicclass UserMainCode {
publicstatic String changeWord(String s)
{
StringTokenizer st=new StringTokenizer(s," ");
StringBuffer sb=new StringBuffer();
while(st.hasMoreTokens())
{
String s1=st.nextToken();
sb.append(s1.substring(0,1).toUpperCase());
sb.append(s1.substring(1));
sb.append(" ");
}
return sb.toString();
}
}
1. Maximum Difference
Write a program to read an integer array and find the index of larger number of the two
adjacent numbers with largest difference. Print the index.
Include a class UserMainCode with a static method findMaxDistance which accepts an
integer array and the number of elements in the array. The return type (Integer) should return
index.
Create a Class Main which would be used to accept an integer array and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of n+1 integers, where n corresponds the size of the array followed by n
integers.
Output consists of an Integer (index).
Refer sample output for formatting specifications.
Sample Input :
6
4
8
6
1
9
4
Sample Output :
4
[In the sequence 4 8 6 1 9 4 the maximum distance is 8 (between 1 and 9). The function
should return the index of the greatest of two. In this case it is 9 (which is at index 4). output
= 4.]
Solution :
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int[] a= newint[n];
for(int i=0;i<n;i++)
a[i]=sc.nextInt();
System.out.println(User.findMaxDistance(a));
}
}
publicclass User {
publicstaticint findMaxDistance(int[] a){
int dif,max=0;
int n=a.length;
for(int i=0;i<n-1;i++)
{
dif=Math.abs(a[i]-a[i+1]);
// if(max<dif)
if(dif>max)
{
if(a[i+1]>a[i])
max=i+1;
else
max=i;
}
}
return max;
}
}
1. Palindrome - In Range
Write a program to input two integers, which corresponds to the lower limit and upper limit
respectively, and find the sum of all palindrome numbers present in the range including the
two numbers. Print the sum.
Include a class UserMainCode with a static method addPalindromes which accepts two
integers. The return type (Integer) should return the sum if the palindromes are present, else
return 0.
Create a Class Main which would be used to accept two integer and call the static method
present in UserMainCode.
Note1 : A palindrome number is a number which remains same after reversing its digits.
Note2 : A single digit number is not considered as palindrome.
Input and Output Format:
Input consists of 2 integers, which corresponds to the lower limit and upper limit
respectively.
Output consists of an Integer (sum of palindromes).
Refer sample output for formatting specifications.
Sample Input :
130
150
Sample Output :
272
(131+141 = 272)
Solution:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
intb = sc.nextInt();
System.out.println(User.addPalindromes(a,b));
}
}
publicclass User {
publicstaticint addPalindromes(int a, int b){
int temp=0,sum=0,r,sum1=0;
for(int i=a;i<=b;i++)
{
temp=i;
sum=0;
while(temp>0){
r=temp%10;
sum=sum*10+r;
temp=temp/10;
}
if(i==sum)
sum1=sum1+i;
}
return sum1;
}
}
1. PAN Card
Write a program to read a string and validate PAN no. against following rules:
1. There must be eight characters.
2. First three letters must be alphabets followed by four digit number and ends with alphabet
3. All alphabets should be in capital case.
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = new Scanner(System.in);
String s=sc.next();
int res=User.validatePAN(s);
if(res==1)
System.out.println("Valid");
else
System.out.println("Invalid");
}
}
publicclass User {
publicstaticint validatePAN(String s){
int res=0;
if(s.length()==8)
{
if(s.matches("[A-Z]{3}[0-9]{4}[A-Z]{1}"))
res=1;
else
res=2;
}
return res;
}
}
1. Fibonacci Sum
Write a program to read an integer n, generate fibonacci series and calculate the sum of first n
numbers in the series. Print the sum.
Include a class UserMainCode with a static method getSumOfNfibos which accepts an
integer n. The return type (Integer) should return the sum of n fibonacci numbers.
Create a Class Main which would be used to accept an integer and call the static method
present in UserMainCode.
Note: First two numbers in a Fibonacci series are 0, 1 and all other subsequent numbers are
sum of its previous two numbers. Example - 0, 1, 1, 2, 3, 5...
Input and Output Format:
Input consists of an integer, which corresponds to n.
Output consists of an Integer (sum of fibonacci numbers).
Refer sample output for formatting specifications.
Sample Input :
5
Sample Output :
7
[0 + 1 + 1 + 2 + 3 = 7]
Solutions:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = new Scanner(System.in);
int s=sc.nextInt();
System.out.println(User.getSumOfNfibos(s));
}
}
publicclass User {
publicstaticint getSumOfNfibos(int s){
int a=0,b=1,c=0,d=1;
for(int i=3;i<=s;i++)
{
c=a+b;
a=b;
b=c;
d=d+c;
}
returnd;
}
}
1. Test Vowels
Write a program to read a string and check if given string contains exactly five vowels in any
order. Print “Yes” if the condition satisfies, else print “No”.
Assume there is no repetition of any vowel in the given string and all characters are
lowercase.
Include a class UserMainCode with a static method testVowels which accepts a string. The
return type (Integer) should return 1 if all vowels are present, else return 2.
Create a Class Main which would be used to accept a string and call the static method present
in UserMainCode.
Sample Input 2:
cbisouzze
Sample Output 2:
No
Solutions:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = new Scanner(System.in);
String s=sc.next();
int res=User.testVowels (s);
if(res==1)
System.out.println("Yes");
else
System.out.println("No");
}
}
publicclass User {
publicstaticint testVowels (String s){
int res,count=0;
String s1="aeiou";
String s2=s.toLowerCase();
for(int i=0;i<s2.length();i++)
{
for(int j=0;j<s1.length();j++)
{
if(s2.charAt(i)==s1.charAt(j))
{
count++;
}
}
}
if(count==s1.length())
res=1;
else
res=2;
return res;
}
}
publicclass User {
publicstaticint testOrderVowels(String s1) {
StringBuffer sb = newStringBuffer();
int res = 0;
for (int i = 0; i < s1.length(); i++) {
if (s1.charAt(i) == 'a' || s1.charAt(i) == 'A'
|| s1.charAt(i) == 'e' || s1.charAt(i) == 'E'
|| s1.charAt(i) == 'i' || s1.charAt(i) == 'I'
|| s1.charAt(i) == 'o' || s1.charAt(i) == 'O'
|| s1.charAt(i) == 'u' || s1.charAt(i) == 'U') {
sb.append(s1.charAt(i));
}
}
if (sb.toString().equals("aeiou"))
res = 1;
else
res = 0;
return res;
}
}
7 . Dash Check
Write a program to read two strings and check whether or not they have dashes in the same
places. Print “Yes” if the condition satisfies, else print “No”.
Include a class UserMainCode with a static method compareDashes which accepts two
strings. The return type (Integer) should return 1 if all dashes are placed correctly, else return
2.
Create a Class Main which would be used to accept two strings and call the static method
present in UserMainCode.
Note: The strings must have exactly the same number of dashes in exactly the same
positions. The strings might be of different length.
Input and Output Format:
Input consists of two strings.
Output consists of a string (“Yes” or “No”).
Refer sample output for formatting specifications.
Sample Input 1:
hi—there-you.
12--(134)-7539
Sample Output 1:
Yes
Sample Input 2:
-15-389
-xyw-zzy
Sample Output 2:
No
Solution:
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = new Scanner(System.in);
String s1=sc.next();
String s2=sc.next();
int res=User.compareDashes (s1,s2);
if(res==1)
System.out.println("Yes");
else
System.out.println("No");
}
}
import java.util.ArrayList;
publicclass User {
publicstaticint compareDashes (String s1,String s2){
int res=0;
ArrayList<Integer> a1=new ArrayList<Integer>();
ArrayList<Integer> a2=new ArrayList<Integer>();
for(int i=0;i<s1.length();i++)
{
if(s1.charAt(i)=='-')
a1.add(i);
}
for(int i=0;i<s2.length();i++)
{
if(s2.charAt(i)=='-')
a2.add(i);
}
if(a1.equals(a2))
res=1;
else
res=2;
return res;
}
}
1. Reverse Split
Write a program to read a string and a character, and reverse the string and convert it in a
format such that each character is separated by the given character. Print the final string.
Include a class UserMainCode with a static method reshape which accepts a string and a
character. The return type (String) should return the final string.
Create a Class Main which would be used to accept a string and a character, and call the
static method present in UserMainCode.
importjava.util.HashMap;
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = new Scanner(System.in);
String s1=sc.next();
String s2=sc.next();
System.out.println(User.extractMax(s1,s2));
}
}
publicclass UserMain {
publicstaticString extractMax(String s1,String s2){
StringBuffer sb=new StringBuffer();
for(int i=0;i<s1.length()-1;i++)
{
sb.append(s1.charAt(i));
sb.append(s2);
}
sb.append(s1.charAt(s1.length()-1));
return sb.reverse().toString();
}
}
1. Remove 10's
Write a program to read an integer array and remove all 10s from the array, shift the other
elements towards left and fill the trailing empty positions by 0 so that the modified array is of
the same length of the given array.
Include a class UserMainCode with a static method removeTens which accepts the number
of elements and an integer array. The return type (Integer array) should return the final array.
Create a Class Main which would be used to read the number of elements and the input array,
and call the static method present in UserMainCode.
Sample Input :
5
1
10
20
10
2
Sample Output :
1
20
2
o
o
Solution :
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = new Scanner(System.in);
int n=sc.nextInt();
int[] a= newint[n];
for(int i=0;i<n;i++)
a[i]=sc.nextInt();
User.removeTens(a);
}
}
importjava.util.ArrayList;
publicclass User {
publicstaticint[] removeTens(int[] a){
int[] out=newint[a.length];
int k=0;
for(int i=0;i<a.length;i++)
{
if(a[i]!=10)
{
out[k]=a[i];
k++;
}}
for(int i=0;i<a.length;i++)
System.out.println(out[i]);
return out;
}
}
1. Last Letters
Write a program to read a sentence as a string and store only the last letter of each word of
the sentence in capital letters separated by $. Print the final string.
Include a class UserMainCode with a static method getLastLetter which accepts a string.
The return type (string) should return the final string.
Create a Class Main which would be used to read a string, and call the static method present
in UserMainCode.
Smaple Input :
This is a cat
Sample Output :
S$S$A$T
Solution :
importjava.util.ArrayList;
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = new Scanner(System.in);
String s= sc.nextLine();
System.out.println(User.getLastLetter(s));
}
}
import java.util.StringTokenizer;
publicclass User {
publicstatic String getLastLetter(String s){
}
returns3;
}
}
***************************************************************************
*********************
publicclass UserMain {
publicstatic String getLastLetter(String s)
{
StringTokenizer st= new StringTokenizer(s," ");
String b=st.nextToken();
sb.append(b.charAt(b.length()-1));
while(st.hasMoreTokens())
{
String a=st.nextToken();
sb.append("$");
sb.append(a.charAt(a.length()-1));
}
return sb.toString().toUpperCase();
}
}
***************************************************************************
*************
Write a program that construts a hashmap and returns the value corresponding to the largest key.
Include a class UserMainCode with a static method getMaxKeyValue which accepts a string. The
return type (String) should be the value corresponding to the largest key.
Create a Class Main which would be used to accept Input string and call the static method present in
UserMainCode.
Input and Output Format:
Input consists of 2n+1 values. The first value corresponds to size of the hashmap. The next n pair of
numbers equals the integer key and value as string.
Output consists of a string which is the value of largest key.
Refer sample output for formatting specifications.
Sample Input 1:
3
12
amron
9
Exide
7
SF
Sample Output 1:
amron
Solutions:
import java.util.HashMap;
import java.util.Scanner;
}
}
importjava.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
importjava.util.StringTokenizer;
publicclass User {
publicstaticString getMaxKeyValue(HashMap<Integer,String> hm){
int max=0;
String nn=null;
Iterator<Integer> it = hm.keySet().iterator();
while(it.hasNext())
{
int key=it.next();
String name=hm.get(key);
if(key>max)
{
key=max;
nn=name;
}
}
return nn;
}
}
Write a program to read a string array and return 1 if all the elements of the array are numbers, else
return -1.
Include a class UserMainCode with a static method validateNumber which accepts a string aray. The
return type (integer) should be -1 or 1 based on the above rules.
Create a Class Main which would be used to accept Input string array and call the static method
present in UserMainCode.
The string array is said to be valid if all the elements in the array are numbers. Else it is invalid.
}
}
importjava.util.ArrayList;
importjava.util.HashMap;
importjava.util.Iterator;
importjava.util.StringTokenizer;
publicclass User {
publicstaticint validateNumber(String s[]){
int res=0;
int count=0,temp=0;
String s1=null;
for(int i=0;i<s.length;i++)
{
s1=s[i];
count=0;
for(int j=0;j<s1.length();j++)
{
Write a program to read a date as string (MM-dd-yyyy) and return the day of week on that date.
Include a class UserMainCode with a static method getDay which accepts the string. The return type
(string) should be the day of the week.
Create a Class Main which would be used to accept Input string and call the static method present in
UserMainCode.
Input and Output Format:
Input consists of a string.
Output consists of a string.
Refer sample output for formatting specifications.
Sample Input 1:
07-13-2012
Sample Output 1:
Friday
Solutions :
User :
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
Write a program to accept two string inputs. The first being a source string and second one a
delimiter. The source string contains the delimiter at various locations. Your job is to return the
substring with maximum number of characters. If two or more substrings have maximim number of
characters return the substring which appears first. The size of the delimiter is 1.
Include a class UserMainCode with a static method extractMax which accepts the string. The return
type (string) should be the max substring.
Create a Class Main which would be used to accept Input string and call the static method present in
UserMainCode.
Input and Output Format:
Input consists of a source string and delimiter.
Output consists of a string.
Refer sample output for formatting specifications.
Sample Input 1:
delhi-pune-patna
-
Sample Output 1:
Delhi
importjava.util.HashMap;
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = new Scanner(System.in);
String s1=sc.next();
String s2=sc.next();
System.out.println(User.extractMax(s1,s2));
}
}
importjava.util.ArrayList;
importjava.util.HashMap;
importjava.util.Iterator;
import java.util.StringTokenizer;
publicclass User {
publicstatic String extractMax(String s1,String s2){
StringTokenizer st= new StringTokenizer(s1,s2);
int max=0,c=0;
String str=null;
while(st.hasMoreTokens())
{
String s= st.nextToken();
c=s.length();
if(c>max)
{
c=max;
str=s;
}
}
return str;
}
}
Write a program that construts a hashmap with “state” as key and “capital” as its value. If the next
input is a state, then it should return capital$state in lowercase.
Include a class UserMainCode with a static method getCapital which accepts a hashmap. The return
type is the string as given in the above statement
Create a Class Main which would be used to accept Input string and call the static method present in
UserMainCode.
Input and Output Format:
Input consists of 2n+2 values. The first value corresponds to size of the hashmap. The next n pair of
numbers contains the state and capital. The last value consists of the “state” input.
Output consists of a string as mentioned in the problem statement.
Refer sample output for formatting specifications.
Sample Input 1:
3
Karnataka
Bangaluru
Punjab
Chandigarh
Gujarat
Gandhinagar
Punjab
Sample Output 1:
chandigarh$punjab
import java.util.HashMap;
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = new Scanner(System.in);
int n=sc.nextInt();
HashMap<String,String> hm= new HashMap<String,String>();
for(int i=0;i<n;i++)
hm.put(sc.next(),sc.next());
String s=sc.next();
System.out.println(User.getCapital(hm,s));
}
}
importjava.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
importjava.util.StringTokenizer;
publicclass User {
publicstatic String getCapital(HashMap<String,String> hm,String s){
Iterator<String> it=hm.keySet().iterator();
StringBuffer sb= new StringBuffer();
while(it.hasNext())
{
String state=it.next();
String cap=hm.get(state);
if(state.equalsIgnoreCase(s))
{
sb.append(cap).append('$').append(state);
}
}
return sb.toString().toLowerCase();
}
}
Write a program to read a string and return an integer based on the following rules.
If the first word and the last word in the String match, then return the number of characters in the
word else return sum of the characters in both words. Assume the Strings to be case - sensitive.
Include a class UserMainCode with a static method calculateWordSum which accepts a string. The
return type (integer) should be based on the above rules.
Create a Class Main which would be used to accept Input string and call the static method present in
UserMainCode.
Input and Output Format:
Input consists of a string with maximum size of 100 characters.
Output consists of a string.
Refer sample output for formatting specifications.
Sample Input 1:
COGNIZANT TECHNOLOGY SOLUTIONS COGNIZANT
Sample Output 1:
9
Sample Input 2:
HOW ARE YOU
Sample Output 2:
6
importjava.util.HashMap;
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc = new Scanner(System.in);
String s=sc.nextLine();
System.out.println(User.calculateWordSum (s));
}
}
importjava.util.ArrayList;
importjava.util.HashMap;
importjava.util.Iterator;
import java.util.StringTokenizer;
publicclass User {
publicstaticint calculateWordSum (String s){
int sum=0,i=0;
StringTokenizer st=new StringTokenizer(s," ");
String[] s1= new String[st.countTokens()];
while(st.hasMoreTokens())
{
s1[i]=st.nextToken();
i++;
}
if(s1[0].equals(s1[s1.length-1]))
sum=s1[0].length();
else
sum=s1[0].length()+s1[s1.length-1].length();
return sum;
}
}
Sample Input 1:
4
abcde
pqrs
abci
orto
Sample Output 1:
abcde
abci
orto
import java.util.HashMap;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n=sc.nextInt();
String[] s= new String[n];
for(int i=0;i<n;i++)
s[i]=sc.next();
System.out.println(User.matchCharacter (s));
}
}
import java.util.ArrayList;
importjava.util.HashMap;
importjava.util.Iterator;
importjava.util.StringTokenizer;
publicclass User {
publicstatic ArrayList<String> matchCharacter (String[] s){
ArrayList<String> a= new ArrayList<String>();
for(int i=0;i<s.length;i++)
{
System.out.println(s[i].charAt(0));
System.out.println(s[i].charAt(s[i].length()-1));
if((s[i].charAt(0)=='a'|| s[i].charAt(0)=='e'||
s[i].charAt(0)=='i'||s[i].charAt(0)=='o'||
s[i].charAt(0)=='u') && (s[i].charAt(s[i].length()-
1)=='a'||
s[i].charAt(s[i].length()-
1)=='e'||s[i].charAt(s[i].length()-1)=='i'||
s[i].charAt(s[i].length()-
1)=='o'||s[i].charAt(s[i].length()-1)=='u'))
{
a.add(s[i]);
}
}
return a;
}
}
Write a program that constructs a hashmap with “employee id” as key and “name” as its value. Based
on the rules below, on being satisfied, the name must be added to the arraylist.
i)First character should be small and the last character should be Capital.
ii)In name at least one digit should be there.
Include a class UserMainCode with a static method getName which accepts a hashmap. The return
type is an arraylist as expected in the above statement
Create a Class Main which would be used to accept Input string and call the static method present in
UserMainCode.
Input and Output Format:
Input consists of 2n+1 values. The first value corresponds to size of the hashmap. The next n pair of
numbers contains the employee id and name.
Output consists of arraylist of strings as mentioned in the problem statement.
Refer sample output for formatting specifications.
Sample Input 1:
4
1
ravi5raJ
2
sita8gitA
3
ram8sitA
4
rahul
Sample Output 1:
ravi5raJ
sita8gitA
ram8sitA
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Scanner;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
importjava.util.StringTokenizer;
publicclass User {
publicstatic ArrayList<String> getName(HashMap<Integer,String> hm){
ArrayList<String> a= new ArrayList<String>();
Iterator<Integer> it=hm.keySet().iterator();
while(it.hasNext())
{
int id=it.next();
String name=hm.get(id);
for(int i=0;i<name.length();i++)
{
if(name.charAt(0)>=97 && name.charAt(0)<=122 &&
name.charAt(name.length()-1)>=65 &&
name.charAt(name.length()-1)<=96)
{
if(name.charAt(i)>='0'&& name.charAt(i)<='9')
{
a.add(name);
}
}
}
}
return a;
}
}
Write a program that reads details about number of admissions per year of a particular college, return
the year which had maximum admissions. The details are stored in an arraylist with the first index
being year and next being admissions count.
Include a class UserMainCode with a static method getYear which accepts a arraylist. The return type
is an integer indicating the year of max admissions.
Create a Class Main which would be used to accept Input string and call the static method present in
UserMainCode.
Input and Output Format:
Input consists of 2n+1 values. The first value corresponds to size of the data (year & admissions). The
next n pair of numbers contains the year and admissions count.
Output consists of an integer as mentioned in the problem statement.
Refer sample output for formatting specifications.
Sample Input 1:
4
2010
200000
2011
300000
2012
45000
2013
25000
Sample Output 1:
2011
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Scanner;
System.out.println(User.getYear(a));
}
}
import java.util.ArrayList;
importjava.util.HashMap;
importjava.util.Iterator;
importjava.util.StringTokenizer;
publicclass User {
publicstaticint getYear(ArrayList<Integer> a){
intyear=0;
int max=0;
for(int i=1;i<a.size();i=i+2)
{
int x=a.get(i);
if(x>max)
{
max=x;
year=a.get(i-1);
}
}
returnyear;
}
}
Write a program to calculate the sum of all the non prime positive numbers less than or equal to
the given number.
Note: prime is a natural number greater than 1 that has no positive divisors other than 1 and itself
Example:
input = 9
Prime numbers = 2,3,5 and 7
output = 1+4+6+8+9=28
Include a class UserMainCode with a static method “addNumbers” that accepts an integer
arguement and returns an integer.
Create a class Main which would get an integer as input and call the static
method validateNumber present in the UserMainCode.
Sample Input:
9
Sample Output:
28
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Scanner;
}
}
importjava.util.ArrayList;
importjava.util.HashMap;
importjava.util.Iterator;
importjava.util.StringTokenizer;
publicclass User {
publicstaticint addNumbers(int n){
int c=0,sum=0;
for (int i = 1; i <= n; i++)
{
c=0;
for(int j=1;j<=i;j++)
{
if(i%j==0)
c++;
}
if (c==2)
;
else
sum=sum+i;
}
return sum;
}
}
--------------------------------------------
Include a class UserMainCode with a static method “convertDateFormat” that accepts a String
and returns a String.
Create a class Main which would get a String as input and call the static
method convertDateFormat present in the UserMainCode.
Sample Input:
12/11/1998
Sample Output:
12-11-98
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Scanner;
}
}
import java.text.ParseException;
import java.text.SimpleDateFormat;
importjava.util.ArrayList;
import java.util.Date;
importjava.util.HashMap;
importjava.util.Iterator;
importjava.util.StringTokenizer;
publicclass User {
publicstatic String convertDateFormat(String n) throws ParseException{
SimpleDateFormat sdf=new SimpleDateFormat("dd/MM/yyyy");
Date d= sdf.parse(n);
SimpleDateFormat sdf1=new SimpleDateFormat("dd-MM-yyyy");
String s=sdf1.format(d);
returns;
}
}
Given a date string as input, write a program to validate if the given date is in any of the following
formats:
dd.mm.yyyy
dd/mm/yy
dd-mm-yyyy
Include a class UserMainCode with a static method “validateDate” that accepts a String and
returns an integer. This method returns 1 if the date is valid, else return -1.
Create a class Main which would get a String as input and call the static
method validateDate present in the UserMainCode.
Sample Input 1:
12.03.2012
Sample Output 1:
Valid
Sample Input 2:
27#01#1977
Sample Output 2:
Invalid
try {
Date d=sdf.parse(s);
res=1;
} catch (ParseException e) {
res=-1;
}
System.out.println(res);
}
}
}
Include a class UserMainCode with a static method “convertFormat” that accepts a String
argument and returns a String.
Create a class Main which would get a String as input and call the static
method convertFormat present in the UserMainCode.
Sample Input:
555-666-1234
Sample Output:
55-56-661-234
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Scanner;
}
}
import java.text.ParseException;
importjava.text.SimpleDateFormat;
importjava.util.ArrayList;
importjava.util.Date;
importjava.util.HashMap;
importjava.util.Iterator;
import java.util.StringTokenizer;
publicclass User {
publicstatic String convertFormat(String s) throws ParseException{
StringTokenizer st=new StringTokenizer(s,"-");
int i=0;
String[] s1=new String[st.countTokens()];
while(st.hasMoreTokens())
{
s1[i]=st.nextToken();
i++;
}
StringBuffer sb=new StringBuffer();
sb.append(s1[0].substring(0,2));
sb.append("-");
sb.append(s1[0].substring(2)).append(s1[1].substring(0,1));
sb.append("-");
sb.append(s1[1].substring(1)).append(s1[2].substring(0,1));
sb.append("-");
sb.append(s1[2].substring(1));
return sb.toString();
}
}
import java.util.StringTokenizer;
publicclass UserMainCode {
publicstatic String convertFormat(String s)
{
StringBuffer sb=new StringBuffer();
StringTokenizer st=new StringTokenizer(s,"-");
String s1=st.nextToken();
String s2=st.nextToken();
String s3=st.nextToken();
sb.append(s1.substring(0,2));
sb.append("-");
sb.append(s1.substring(s1.length()-1));
sb.append(s2.substring(0,1));
sb.append("-");
sb.append(s2.substring(1));
sb.append(s3.substring(0,1));
sb.append("-");
sb.append(s3.substring(1));
return sb.toString();
}
}
Given an int array and a number as input, write a program to add all the elements in the array
greater than the given number. Finally reverse the digits of the obtained sum and print it.
Create a class Main which would get the required input and call the static
method addAndReverse present in the UserMainCode.
Example:
Input Array = {10,15,20,25,30,100}
Number = 15
sum = 20 + 25 + 30 + 100 = 175
output = 571
Sample Input
6
10
15
20
25
30
100
15
Sample Output
571
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Scanner;
}
}
importjava.text.ParseException;
importjava.text.SimpleDateFormat;
importjava.util.ArrayList;
importjava.util.Date;
importjava.util.HashMap;
importjava.util.Iterator;
importjava.util.StringTokenizer;
publicclass User {
publicstaticint addAndReverse(int[] a,int x) {
int sum=0;
int rev=0,r=0;
for(int i=0;i<a.length;i++)
{
if(x<a[i])
sum=sum+a[i];
}
while(sum!=0)
{
r=sum%10;
rev=rev*10+r;
sum=sum/10;
}
return rev;
}
}
25. Next Year day
Given a date string in dd/mm/yyyy format, write a program to calculate the day which falls on the
same date next year. Print the output in small case.
The days are sunday, monday, tuesday, wednesday, thursday, friday and saturday.
Include a class UserMainCode with a static method “nextYearDay” that accepts a String and
returns a String.
Create a class Main which would get a String as input and call the static
method nextYearDay present in the UserMainCode.
Sample Input:
13/07/2012
Sample Output:
saturday
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Scanner;
System.out.println(User.nextYearDay(n));
}
}
import java.text.ParseException;
import java.text.SimpleDateFormat;
importjava.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
importjava.util.HashMap;
importjava.util.Iterator;
importjava.util.StringTokenizer;
publicclass User {
publicstatic String nextYearDay(String s) throws ParseException {
SimpleDateFormat sdf=new SimpleDateFormat("dd/MM/yyyy");
SimpleDateFormat sdf1=new SimpleDateFormat("EEEE");
Date d= sdf.parse(s);
Calendar c=Calendar.getInstance();
c.setTime(d);
c.add(Calendar.YEAR,1);
Date year=c.getTime();
String day=sdf1.format(year);
return day;
}
}
Write a program that accepts a positive number as input and calculates the sum of squares of
individual digits of the given number.
Create a class Main which would get an integer as input and call the static
method getSumOfSquaresOfDigits present in the UserMainCode.
Sample Input:
321
Sample Output:
14
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Scanner;
System.out.println(User.getSumOfSquaresOfDigits(n));
}
}
importjava.text.ParseException;
importjava.text.SimpleDateFormat;
importjava.util.ArrayList;
importjava.util.Calendar;
importjava.util.Date;
importjava.util.HashMap;
importjava.util.Iterator;
importjava.util.StringTokenizer;
publicclass User {
publicstaticint getSumOfSquaresOfDigits(int n) {
int sum=0,r=0;
while(n!=0)
{
r=n%10;
sum=sum+(r*r);
n=n/10;
}
return sum;
}
}
Write a program that accepts a positive number as input and calculates the sum of digits at even
indexes (say evenSum) and sum of digits at odd indexes (say oddSum) in the given number. If
both the sums are equal , print 'yes', else print no.
Example:
input = 23050
evenSum = 2 + 0 + 0 = 2
oddSum = 3 + 5 = 8
output = no
Create a class Main which would get an integer as input and call the static
method sumOfOddEvenPositioned present in the UserMainCode.
Sample Input 1:
23050
Sample Output 1:
no
Sample Input 2:
231
Sample Output 2:
yes
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Scanner;
int res=User.sumOfOddEvenPositioned(n);
if(res==1)
System.out.println("yes");
else
System.out.println("no");
}
}
importjava.text.ParseException;
importjava.text.SimpleDateFormat;
importjava.util.ArrayList;
importjava.util.Calendar;
importjava.util.Date;
importjava.util.HashMap;
importjava.util.Iterator;
importjava.util.StringTokenizer;
publicclass User {
publicstaticint sumOfOddEvenPositioned(int n) {
int even=0,odd=0;
int res=0,r=0,m=0;
int j=0,count=0;
int n1=n;
while(n>0)
{
n=n/10;
count++;
}
System.out.println(count);
int[] a=newint[count];
while(n1!=0)
{
r=n1%10;
a[j]=r;
j++;
n1=n1/10;
}
int[] b=newint[j];
for(int k=j-1;k>=0;k--)
{
b[m]=a[k];
m++;
}
for(int i=0;i<m;i++)
{
System.out.println("a:"+b[i]);
if(i%2==0)
even=even+b[i];
else
odd=odd+b[i];
}
System.out.println(even);
System.out.println(odd);
if(even==odd)
res=1;
else
res=-1;
return res;
}
}
Write a program that accepts an ArrayList of integers as input and removes every 3rd element
and prints the final ArrayList.
Suppose the given arrayList contains 10 elements remove the 3rd, 6th and 9th elements.
Create a class Main which would get the required input and call the static
method removeMultiplesOfThree present in the UserMainCode.
Sample Input:
6
3
1
11
19
17
19
Sample Output
3
1
19
17
publicclass Main {
publicstaticvoid main(String[] args) throws ParseException {
Scanner sc = new Scanner(System.in);
int n=sc.nextInt();
ArrayList<Integer> a=new ArrayList<Integer>();
ArrayList<Integer> res=new ArrayList<Integer>();
for(int i=0;i<n;i++)
a.add(sc.nextInt());
res=User.removeMultiplesOfThree(a);
for(int i=0;i<res.size();i++)
System.out.println(res.get(i));
}
}
publicclass User {
publicstatic ArrayList<Integer> removeMultiplesOfThree(ArrayList<Integer>
a) {
ArrayList<Integer> b=new ArrayList<Integer>();
for(int i=0;i<a.size();i++)
{
int d=a.get(i);
if(d%3!=0)
{
b.add(a.get(i));
}
}
return b;
}
}
29.String Occurances - II
Obtain two strings S1,S2 from user as input. Your program should count the number of times S2
appears in S1.
Include a class UserMainCode with a static method getSubstring which accepts two string
variables. The return type is the count.
Create a Class Main which would be used to accept two Input strings and call the static method
present in UserMainCode.
Sample Input 1:
catcowcat
cat
Sample Output 1:
2
Sample Input 2:
catcowcat
CAT
Sample Output 2:
0
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Scanner;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.StringTokenizer;
publicclass User {
publicstaticint getSubstring (String s1,String s2) {
int count=0;
int n=s1.length()-(s2.length()-1);
ints2l=s2.length();
System.out.println(n);
for(int i=0;i<n;i++)
{
String s3=s1.substring(i,i+s2l);
if(s2.equals(s3))
count++;
}
return count;
}
}
Write a Program that accepts three integer values (a,b,c) and returns their sum. However, if one
of the values is 13 then it does not count towards the sum and the next number also does not
count. So for example, if b is 13, then both b and c do not count.
Include a class UserMainCode with a static method getLuckySum which accepts three integers.
The return type is integer representing the sum.
Create a Class Main which would be used to accept the input integers and call the static method
present in UserMainCode.
Sample Input 1:
1
2
3
Sample Output 1:
6
Sample Input 2:
1
2
13
Sample Output 2:
3
Sample Input 3:
13
3
8
Sample Output 3:
8
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.StringTokenizer;
int res=0;
if(a==13)
res=c;
else if(b==13)
res=a;
else if(c==13)
res=a+b;
else
res=a+b+c;
return res;
}
}
----------------------------------------------------------
31. Triplets
Given an integer array, Write a program to find if the array has any triplets. A triplet is a value if it
appears 3 consecutive times in the array.
Include a class UserMainCode with a static method checkTripplets which accepts an integer
array. The return type is boolean stating whether its a triplet or not.
Create a Class Main which would be used to accept the input arrayand call the static method
present in UserMainCode.
Input consists of n+1 integers. The first integer would represent the size of array and the next n
integers would have the values.
Sample Input 1:
7
3
3
5
5
5
2
3
Sample Output 1:
TRUE
Sample Input 2:
7
5
3
5
1
5
2
3
Sample Output 2:
FALSE
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Scanner;
Given a string (s) and non negative integer (n) apply the following rules.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Input 1:
Coward
2
Sample Output 1:
CowCow
Sample Input 2:
So
3
Sample Output 2:
SoSoSo
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Scanner;
String s=sc.next();
int n=sc.nextInt();
String res=User.repeatFirstThreeCharacters(s,n);
for(int i=0;i<n;i++)
System.out.print(res);
}
}
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.StringTokenizer;
String front=null;
if(s.length()>=3)
{
front=s.substring(0,3);
}
else
front=s;
return front;
}
}
Write a program to read a string array, remove duplicate elements and sort the array.
Note:
1. The check for duplicate elements must be case-sensitive. (AA and aa are NOT
duplicates)
2. While sorting, words starting with upper case letters takes precedence.
Include a class UserMainCode with a static method orderElements which accepts the string
array. The return type is the sorted array.
Create a Class Main which would be used to accept the string arrayand integer and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of an integer n which is the number of elements followed by n string values.
Sample Input 1:
6
AAA
BBB
AAA
AAA
CCC
CCC
Sample Output 1:
AAA
BBB
CCC
Sample Input 2:
7
AAA
BBB
aaa
AAA
Abc
A
b
Sample Output 2:
A
AAA
Abc
BBB
aaa
b
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Scanner;
String res[]=User.orderElements(a);
for(int i=0;i<res.length;i++)
System.out.println(res[i]);
}
}
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.StringTokenizer;
for(int i=0;i<s.length;i++)
{
lhs.add(s[i]);
}
String[] a= new String[lhs.size()];
for(int i=0;i<s.length;i++)
{
lhs.toArray(a);
}
Arrays.sort(a);
return a;
}
}
34. Pattern Matcher
Write a program to read a string and check if it complies to the pattern 'CPT-XXXXXX' where
XXXXXX is a 6 digit number. If the pattern is followed, then print TRUE else print FALSE.
Include a class UserMainCode with a static method CheckID which accepts the string. The
return type is a boolean value.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
CPT-302020
Sample Output 1:
TRUE
Sample Input 2:
CPT123412
Sample Output 2:
FALSE
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Scanner;
boolean b=User.CheckID(a);
System.out.println(b);
}
}
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.StringTokenizer;
Given a string array and non negative integer (n) apply the following rules.
1. Pick nth character from each String element in the String array and form a new String.
2. If nth character not available in a particular String in the array consider $ as the character.
3. Return the newly formed string.
Include a class UserMainCode with a static method formString which accepts the string and
integer. The return type is the string formed based on rules.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Input consists of a an integer which denotes the size of the array followed by the array of strings
and an integer (n).
Output consists of a string .
Refer sample output for formatting specifications.
Sample Input 1:
4
ABC
XYZ
EFG
MN
3
Sample Output 1:
CZG$
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Scanner;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.StringTokenizer;
public class User {
public static String formString(String s[],int n) {
StringBuffer sb=new StringBuffer();
for(int i=0;i<s.length;i++)
{
String st=s[i];
if(st.length()>=n)
{
sb.append(st.charAt(n-1));
}
else
sb.append("$");
}
return sb.toString();
}
}
If all the conditions are satisifed then print TRUE else print FALSE.
Include a class UserMainCode with a static method validate which accepts the string. The return
type is the boolean formed based on rules.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
vR4u
Sample Output 1:
TRUE
Sample Input 2:
vRau
Sample Output 2:
FALSE
Sample Input 3:
vrau
Sample Output 3:
FALSE
import java.util.Scanner;
String s=sc.next();
System.out.println(User.validate (s));
}
}
Given the age of a person as string, validate the age based on the following rules.
If all the conditions are satisifed then print TRUE else print FALSE.
Include a class UserMainCode with a static method ValidateAge which accepts the string. The
return type is the boolean formed based on rules.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Output 1:
TRUE
Sample Input 2:
-34
Sample Output 2:
FALSE
Sample Input 3:
3a
Sample Output 3:
FALSE
import java.util.Scanner;
int s=sc.nextInt();
System.out.println(User.validate (s));
}
}
Given a phone number as string, validate the same based on the following rules.
If all the conditions are satisifed then print TRUE else print FALSE.
Include a class UserMainCode with a static method validatePhone which accepts the string. The
return type is the boolean formed based on rules.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
9987684321
Sample Output 1:
TRUE
Sample Input 2:
0014623452
Sample Output 2:
FALSE
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Scanner;
String s=sc.next();
System.out.println(User.validatePhone(s));
}
}
Write a program which would accept a string and a character as a delimiter. Apply the below
rules
1. Using the delimiter, split the string and store these elements in array.
2. Reverse each element of the string and convert it into lowercase.
Include a class UserMainCode with a static method manipulateLiteral which accepts the string
and character. The return type is the string array formed.
Create a Class Main which would be used to accept the string and characterand call the static
method present in UserMainCode.
Sample Input 1:
AAA/bba/ccc/DDD
/
Sample Output 1:
aaa
abb
ccc
ddd
publicclass Main {
publicstaticvoid main(String[] args) throws ParseException {
Scanner sc = new Scanner(System.in);
String s1=sc.next();
char s2=sc.next().charAt(0);
String res[]=User.manipulateLiteral (s1,s2);
for(int i=0;i<res.length;i++)
System.out.println(res[i]);
}
}
publicclass User {
publicstatic String[] manipulateLiteral(String s1,char s2) {
String ss=Character.toString(s2);
StringTokenizer st=new StringTokenizer(s1,ss);
ArrayList<String> a=new ArrayList<String>();
while(st.hasMoreTokens())
{
StringBuffer sb=new StringBuffer();
sb.append(st.nextToken().toLowerCase());
a.add(sb.reverse().toString());
}
String[] s=new String[a.size()];
for(int i=0;i<a.size();i++)
s[i]=(String)a.get(i);
return s;
}
}
import java.util.ArrayList;
import java.util.StringTokenizer;
publicclass User {
publicstatic String[] manipulateLiteral(String s1,char s2) {
String ss=String.valueOf(s2);
StringTokenizer st=new StringTokenizer(s1,ss);
ArrayList<String>a=new ArrayList<String>();
while(st.hasMoreTokens())
{ StringBuffer sb=new StringBuffer();
sb.append(st.nextToken());
a.add(sb.reverse().toString().toLowerCase());
}
int d=a.size();
System.out.println(d);
String[] s=new String[d];
for(int i=0;i<a.size();i++)
{
s[i]=a.get(i);
}
return s;
}
}
Write a program to read a string and count the number of vowels present in it.
Include a class UserMainCode with a static method tellVowelCount which accepts the string.
The return type is the integer giving out the count of vowels.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Output 1:
2
Sample Input 2:
Elephant
Sample Output 2:
3
import java.util.Scanner;
String s1=sc.next();
System.out.println(User.tellVowelCount(s1));
}
}
publicclass User {
publicstaticint tellVowelCount(String s1) {
int count=0;
String s="aeoiu";
String ss="AEIOU";
for(int i=0;i<s1.length();i++)
{
for(int j=0;j<s.length();j++)
{
if(s1.charAt(i)==s.charAt(j) ||
s1.charAt(i)==ss.charAt(j) )
count++;
}
}
return count;
}
}
return count;
}
}
**************************************************************************
41. Playing with String - II
Write a program to accept a string array as input, convert all the elements into lowercase and
sort the string array. Display the sorted array.
Include a class UserMainCode with a static method sortArray which accepts the string array.
The return type is the string array formed based on requirement.
Create a Class Main which would be used to accept the string array and call the static method
present in UserMainCode.
Input consists of a an integer which denotes the size of the array followed by the array of strings,
Output consists of a string array.
Refer sample output for formatting specifications.
Sample Input 1:
5
AAA
BB
CCCC
A
ABCDE
Sample Output 1:
a
aaa
abcde
bb
cccc
publicclass Main {
publicstaticvoid main(String[] args) throws ParseException {
Scanner sc = new Scanner(System.in);
int n=sc.nextInt();
String[] a= new String[n];
for(int i=0;i<n;i++)
a[i]=sc.next();
String[] res=User.sortArray(a);
for(int i=0;i<res.length;i++)
System.out.println(res[i]);
}
}
publicclass User {
publicstatic String[] sortArray (String s[]) {
String[] a=new String[s.length];
for(int i=0;i<s.length;i++)
{
a[i]=s[i].toLowerCase();
}
Arrays.sort(a);
return a;
}
}
42. Median Calculation
Write a program to accept an int array as input, and calculate the median of the same.
The total number count is even, Median will be the average of two middle numbers, After
calculating the average, round the number to nearest integer.
Include a class UserMainCode with a static method calculateMedian which accepts the int
array. The return type is the integer which would be the median.
Create a Class Main which would be used to accept the integer array and call the static method
present in UserMainCode.
Input consists of a an integer which denotes the size of the array followed by the array of
integers.
Output consists of a integer.
Refer sample output for formatting specifications.
Sample Input 1:
7
1
2
1
4
7
1
2
Sample Output 1:
2
Sample Input 2:
6
52
51
81
84
60
88
Sample Output 2:
71
publicclass Main {
publicstaticvoid main(String[] args) throws ParseException {
Scanner sc = new Scanner(System.in);
int n=sc.nextInt();
int[] a= newint[n];
for(int i=0;i<n;i++)
a[i]=sc.nextInt();
System.out.println(User.calculateMedian (a));
}
}
publicclass User {
publicstaticint calculateMedian(int s[]) {
double med=0;
double avg=0;
Arrays.sort(s);
int mid=s.length/2;
if(s.length%2!=0)
med=s[mid];
else
{
avg=(double)(s[mid]+s[mid-1]\)/2;
System.out.println(avg);
med=Math.ceil(avg);
}
return(int)med;
}
}
Write a program to accept an int array as input, and check if [1,2,3] appears somewhere in the
same sequence.
Include a class UserMainCode with a static method searchSequence which accepts the int
array. The return type is a boolean which returns true or false.
Create a Class Main which would be used to accept the integer array and call the static method
present in UserMainCode.
Input consists of a an integer which denotes the size of the array followed by the array of
integers.
Output should print true or false.
Refer sample output for formatting specifications.
Sample Input 1:
9
11
-2
5
1
2
3
4
5
6
Sample Output 1:
TRUE
Sample Input 2:
6
-2
5
1
3
2
6
Sample Output 2:
FALSE
publicclass Main {
publicstaticvoid main(String[] args) throws ParseException {
Scanner sc = new Scanner(System.in);
int n=sc.nextInt();
int[] a= newint[n];
for(int i=0;i<n;i++)
a[i]=sc.nextInt();
boolean b=User.calculateMedian (a);
System.out.println(b);
}
}
publicclass User {
publicstaticboolean calculateMedian(int s[]) {
int[] a={1,2,3};
int n=s.length-(a.length-1);
boolean b=false;
for(int i=0;i<n;i++)
{
if(s[i]==a[0] )
{
if(s[i+1]==a[1])
{
if(s[i+2]==a[2])
{
b=true;
break;
}
else
b=false;
}
else
b=false;
}
else
b=false;
}
return b;
}
}
44. Asterisk & Characters
Write a program to read a string and return true or false based on the below rule:
1. Return true if for every '*' in the string, there are same characters both side immediately before
and after the star, else return false.
Include a class UserMainCode with a static method scanStarNeighbors which accepts the
string. The return type is the boolean TRUE or FALSE based on the rule.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
Hello*World
Sample Output 1:
FALSE
Sample Input 2:
Welcome*elizabeth
Sample Output 2:
TRUE
publicclass Main {
publicstaticvoid main(String[] args) throws ParseException {
Scanner sc = new Scanner(System.in);
String n=sc.next();
boolean b=User.scanStarNeighbors(n);
System.out.println(b);
}
}
publicclass User {
publicstaticboolean scanStarNeighbors(String s) {
StringTokenizer st=new StringTokenizer(s,"*");
boolean b=false;
while(st.hasMoreTokens())
{
String s1=st.nextToken();
String s2=st.nextToken();
if(s1.charAt(s1.length()-1)==s2.charAt(0))
{
b=true;
}
}
return b;
}
}
Write a program to read a string that contains a sentence and read a word. Check the number of
occurances of that word in the sentence.
Include a class UserMainCode with a static method countWords which accepts the two strings.
The return type is the integer giving the count.
Create a Class Main which would be used to accept the two strings and call the static method
present in UserMainCode.
Sample Input 1:
Hello world Java is best programming language in the world
world
Sample Output 1:
2
Sample Input 2:
hello world
World
Sample Output 2:
0
publicclass Main {
publicstaticvoid main(String[] args) throws ParseException {
Scanner sc = new Scanner(System.in);
String s1=sc.nextLine();
String s2=sc.next();
intb=User.countWords (s1,s2);
System.out.println(b);
}
}
publicclass User {
publicstaticint countWords (String s1,String s2) {
StringTokenizer st=new StringTokenizer(s1," ");
int c=0;
while(st.hasMoreTokens())
{
String s3=st.nextToken();
if(s3.equals(s2))
{
c++;
}
}
return c;
}
}
46.Regular Expressions - III
Write a program to read two strings S1 & S2, compute the number of times that S2 appears in
S1.
Include a class UserMainCode with a static method searchString which accepts the two strings.
The return type is the integer giving the count.
Create a Class Main which would be used to accept the two strings and call the static method
present in UserMainCode.
Sample Input 1:
Catcowcat
cat
Sample Output 1:
2
Sample Input 2:
Catcowcat
catp
Sample Output 2:
0
publicclass User {
publicstaticint scanStarNeighbors(String s1,String s2) {
int ls1=s1.length();
int ls2=s2.length();
int n=ls1-(ls2-1);
System.out.println(n);
int ct=0;
for(int i=0;i<n;i++)
{
String ss=s1.substring(i,i+(ls2));
if(s2.equals(ss))
ct++;
}
return ct;
}
}
Write a program to read a string that contains comma separated fruit names and also a number
N. Pick the nth fruit and return it. If the total number of elements are less than the number
specified in N, then return the last element.
Include a class UserMainCode with a static method findFruitName which accepts the the string
and the number n. The return type is the string which has the fruit name.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Input 1:
Apple,Banana,Orange
2
Sample Output 1:
Banana
Sample Input 2:
Apple,Banana,Orange
4
Sample Output 2:
Orange
import java.text.ParseException;
importjava.util.ArrayList;
importjava.util.HashMap;
importjava.util.Iterator;
import java.util.Scanner;
publicclass Main {
publicstaticvoid main(String[] args) throws ParseException {
Scanner sc = new Scanner(System.in);
String s1=sc.nextLine();
int n=sc.nextInt();
System.out.println(User.findFruitName(s1,n));
}
}
importjava.util.ArrayList;
importjava.util.Arrays;
importjava.util.LinkedHashSet;
import java.util.StringTokenizer;
publicclass User {
publicstatic String findFruitName(String s1,int n) {
StringTokenizer st=new StringTokenizer(s1,",");
intc=0,i=0;
String ss=null;
while(st.hasMoreTokens())
{
s[i]=st.nextToken();
i++;
}
if(i>n)
{
ss=s[n-1];
}
else
{
ss=s[i-1];//last element display
}
return ss;
}
}
Write a program to read a string and convert the intial letter of each word to uppercase.
Include a class UserMainCode with a static method changeCase which accepts the string. The
return type is the modified string.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
This is cognizant academy
Sample Output 1:
This Is Cognizant Academy
Write a program to read a string containing multiple words find the first and last words, if they are
same, return the length and if not return the sum of length of the two words.
Include a class UserMainCode with a static method compareLastWords which accepts the
string. The return type is the length as per problem.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
This is Cognizant Academy
Sample Output 1:
11
Sample Input 2:
Hello World Hello
Sample Output 2:
5
import java.util.StringTokenizer;
publicclass UserMainCode {
publicstatic String changeWord(String s)
{
StringTokenizer st=new StringTokenizer(s," ");
StringBuffer sb=new StringBuffer();
while(st.hasMoreTokens())
{
String s1=st.nextToken();
sb.append(s1.substring(0,1).toUpperCase());
sb.append(s1.substring(1));
sb.append(" ");
}
return sb.toString();
}
}
Write a program to that takes a positive integer andreturns true if the number is perfect number.
A positive integer is called a perfect number if the sum of all its factors (excluding the number
itself, i.e., proper divisor) is equal to its value.
For example, the number 6 is perfect because its proper divisors are 1, 2, and 3, and 6=1+2+3;
but the number 10 is not perfect because its proper divisors are 1, 2, and 5, and 1+2+5 is not
equal to 10
Include a class UserMainCode with a static method getPerfection which accepts the number.
The return type is boolean (true / false).
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
28
Sample Output 1:
TRUE
publicclass User {
publicstaticboolean scanStarNeighbors(intn) {
boolean b;
int sum=0;
for(int i=1;i<n;i++)
{
if(n%i==0)
{
sum=sum+i;
System.out.println(sum);
}
}
if(sum==n)
{
b=true;
}
else
{
b=false;
}
return b;
}
}
-----------------------------------------
51. Find Digits
For a given double number with atleast one decimal value, Write a program to compute the
number of digits before and after the decimal point in the following format –
noOfDigitsBeforeDecimal:noOfDigitsAfterDecimal.
Note: Ignore zeroes at the end of the decimal (Except if zero is the only digit after decimal. Refer
Example 2 and 3)
Include a class UserMainCode with a static method findNoDigits which accepts the decimal
value. The return type is string.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
843.21
Sample Output 1:
3:2
Sample Input 2:
20.130
Sample Output 2:
2:2
Sample Input 3:
20.130
Sample Output 3:
2:2
import java.util.*;
public class Main {
public static void main(String[] args) {
double d=845.69;
System.out.println(noOfDigits(d));
}
public static String noOfDigits(double d) {
int n1=0,n2=0;
String s=String.valueOf(d);
StringTokenizer t=new StringTokenizer(s,".");
String s1=t.nextToken();
String s2=t.nextToken();
n1=s1.length();
n2=s2.length();
if(s1.charAt(0)=='0')
n1=s1.length()-1;
if(n2!=1)
if(s2.charAt(s2.length()-1)=='0')
n2=s2.length()-1;
String s3=String.valueOf(n1)+":"+String.valueOf(n2);
return s3;
}
}
import java.util.StringTokenizer;
publicclass User{
publicstatic String noOfDigits(double d) {
int n1=0,n2=0;
String s=String.valueOf(d);
StringTokenizer t=new StringTokenizer(s,".");
String s1=t.nextToken();
String s2=t.nextToken();
n1=s1.length();
n2=s2.length();
if(s1.charAt(0)=='0')
n1=s1.length()-1;
//if(n2!=1)
if(s2.charAt(n2-1)=='0')
n2=s2.length()-1;
//String s3=String.valueOf(n1)+":"+String.valueOf(n2);
StringBuffer sb=new StringBuffer();
sb.append(n1).append(":").append(n2);
return sb.toString();
}
}
A Company wants to obtain employees of a particular designation. You have been assigned as
the programmer to build this package. You would like to showcase your skills by creating a quick
prototype. The prototype consists of the following steps:
Read Employee details from the User. The details would include name and designaton in the
given order. The datatype for name and designation is string.
Build a hashmap which contains the name as key and designation as value.
You decide to write a function obtainDesignation which takes the hashmap and designation
as input and returns a string List of employee names who belong to that designation as output.
Include this function in class UserMainCode. Display employee name's in ascending order.
Create a Class Main which would be used to read employee details in step 1 and build the
hashmap. Call the static method present in UserMainCode.
Sample Input 1:
4
Manish
MGR
Babu
CLK
Rohit
MGR
Viru
PGR
MGR
Sample Output 1:
Manish
Rohit
class Main
{
public static void main(String[] arg)
{
for(int i=0;i<n;i++)
{
hm.put(sc.nextLine(),sc.nextLine());
}
String b=sc.nextLine();
}
}}
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
while(itr.hasNext())
{
String key=itr.next();
String value=hm.get(key);
if(s.equals(value))
{
op.put(key,value);
}
}
return op;
}
}
53.Grade Calculator
A School wants to give assign grades to its students based on their marks. You have been
assigned as the programmer to automate this process. You would like to showcase your skills by
creating a quick prototype. The prototype consists of the following steps:
Read student details from the User. The details would include name, mark in the given order.
The datatype for name is string, mark is float.
You decide to build a hashmap. The hashmap contains name as key and mark as value.
BUSINESS RULE:
1. If Mark is less than 60, then grade is FAIL.
2. If Mark is greater than or equal to 60, then grade is PASS.
Note: FAIL/PASS should be in uppercase.
Store the result in a new Hashmap with name as Key and grade as value.
4. You decide to write a function calculateGrade which takes the above hashmap as input and
returns the hashmap as output. Include this function in class UserMainCode.
Create a Class Main which would be used to read student details in step 1 and build the
hashmap. Call the static method present in UserMainCode.
Input consists of student details. The first number indicates the size of the students. The next two
values indicate the name, mark.
Sample Input 1:
3
Avi
76.36
Sunil
68.42
Raja
36.25
Sample Output 1:
Avi
PASS
Sunil
PASS
Raja
FAIL
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Scanner;
public class Main
{
public static void main(String[]arg)
{
LinkedHashMap<String,Double>hm=new LinkedHashMap<String,Double>();
LinkedHashMap<String,String>hm1=new LinkedHashMap<String,String>();
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
for(int i=0;i<n;i++)
{
String s=sc.next();
double d=sc.nextDouble();
hm.put(s,d);
}
LinkedHashMap<String,String>hm2=UserMainCode.dis(hm);
for(Map.Entry<String,String>entry:hm2.entrySet())
{
System.out.println(entry.getKey());
System.out.println(entry.getValue());
}}}
import java.util.LinkedHashMap;
import java.util.Map;
class UserMainCode
{
public static LinkedHashMap<String,String>dis(LinkedHashMap<String,Double>h1)
{
LinkedHashMap<String,String>h2=new LinkedHashMap<String,String>();
for(Map.Entry m:h1.entrySet())
{
double d=(Double)m.getValue();
if(d>60)
{
String s=(String)m.getKey();
h2.put(s,"pass");
}
else
{
String s=(String)m.getKey();
h2.put(s,"fail");
}
}
return h2;
}
}
(Or)
import java.util.*;
publicclass Main {
publicstaticvoid main(String[] args) {
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
LinkedHashMap<String,Float> ip=new LinkedHashMap<String,Float>();
for(int i=0;i<n;i++)
{
ip.put(sc.next(),sc.nextFloat());
}
}
}}
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
publicclass User{
publicstatic LinkedHashMap<String,String> noOfDigits(HashMap<String,Float>
hm) {
float value=hm.get(key);
if(value>=60)
res="pass";
else
res="fail";
op.put(key,res);
}
}
return op;
}
}
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
publicclass User{
publicstatic LinkedHashMap<String,String> noOfDigits(HashMap<String,Float>
hm) {
LinkedHashMap<String,String> op=new LinkedHashMap<String,String>();
Iterator<String> itr=hm.keySet().iterator();
String res=null;
while(itr.hasNext())
{
String key=itr.next();
float value=hm.get(key);
if(value>=60)
res="pass";
else
res="fail";
op.put(key,res);
return op;
}
}
Write a program to validate the Date of Birth given as input in String format (MM/dd/yyyy) as per
the validation rules given below. Return true for valid dates else return false.
1. Value should not be null
2. month should be between 1-12, date should be between 1-31 and year should be a four digit
number.
Include a class UserMainCode with a static method ValidateDOB which accepts the string. The
return type is TRUE / FALSE.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
12/23/1985
Sample Output 1:
TRUE
Sample Input 2:
31/12/1985
Sample Output 2:
FALSE
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Scanner;
public class UserMainCode {
public static void main(String[] args)
{
String str=new String();
Scanner sc=new Scanner(System.in);
str=sc.nextLine();
SimpleDateFormat sdf=new SimpleDateFormat("MM/dd/yyyy");
sdf.setLenient(false);
try
{
Date d1=sdf.parse(str);
System.out.println("TRUE");
}
catch(Exception e)
{
System.out.println("FALSE");
}
}
}
1) Input consists of two String first represent the year of passed out and the second string
reperesent the year of experience.
2) create a function with name validateExp which accepts two string as input and boolean as
output.
3) The difference between current year and year of pass should be more than or equal to
Experience
Return true if all condition are true.
Create a Class Main which would be used to accept the boolean and call the static method
present in UserMainCode.
Sample Input:
2001
5
Sample Output:
TRUE
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Scanner;
String s=sc.nextLine();
String s1=sc.nextLine();
System.out.print(UserMainCode.getvalues(s,s1));
}
}
import java.util.Calendar;
import java.util.Date;
int y=Math.abs(y1-y2);
int e=Integer.parseInt(s1);
if(y>=e)
return true;
else
return false;
}}
Create a Class Main which would be used to read n strings and call the static method present in
UserMainCode.
Input consists of n+1 integers. The first integer denotes the size of the arraylist, the next n strings
are values to the arraylist.
Output consists of an arrayas per step 4.
Refer sample output for formatting specifications.
Sample Input 1:
4
a
d
c
b
Sample Output 1:
a
b
c
d
import java.util.ArrayList;
import java.util.Scanner;
class Main
{
public static void main(String[] arg)
{
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
sc.nextLine();
for(int i=0;i<n;i++)
{
aa.add(sc.nextLine());
}
}}
import java.util.ArrayList;
import java.util.Collections;
Include UserMainCode Class With static method getStateId which accepts String array and
return a hashmap.
Create a Class Main which would be used to read n strings and call the static method present in
UserMainCode.
Sample Input 1:
3
Kerala
Gujarat
Goa
Sample Output 1:
KER:Kerala
GUJ:Gujarat
GOA:Goa
import java.util.*;
publicclass Main
{
publicstaticvoid main(String[] args)
{
int n=sc.nextInt();
String s1[]=new String[n];
for(int i=0;i<n;i++)
{
s1[i]=sc.next();
}
LinkedHashMap<String,String>ip=new
LinkedHashMap<String,String>();
ip=User.Method(s1);
Iterator<String> itr=ip.keySet().iterator();
//while(itr.hasNext())
for(int i=0;i<ip.size();i++)
{
String key=itr.next();
String value=ip.get(key);
System.out.println(value+""+key);
}
}
}
import java.util.LinkedHashMap;
publicclass User
{
publicstatic LinkedHashMap<String,String> Method(String[] s1)
{
LinkedHashMap<String,String> op=new LinkedHashMap<String,String>();
for(int i=0;i<s1.length;i++)
{
StringBuffer sb=new StringBuffer();
StringBuffer key=sb.append(s1[i].substring(0,3)).append(":");
op.put(s1[i],key.toString().toUpperCase());
}
return op;
}
}
(or)
STATE id
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.HashMap;
catch(Exception e)
{
}
import java.util.HashMap;
Create a Class Main which would be used to read n strings and call the static method present in
UserMainCode.
Input consists of an integer (m) denoting the size of first arraylist. The next m elements would be
the values of the first arraylist. The next input would be n denoting the size of the second
arraylist. The next n elements would be the values of the second arraylist.
Output consists of an array as per step 6. Refer sample output for formatting specifications.
Sample Input 1:
3
Apple
Cherry
Grapes
4
Orange
Mango
Melon
Apple
Sample Output 1:
Cherry
Grapes
Orange
import java.util.*;
public class Main {
public static void main(String[] args) {
List<String> l1=new ArrayList<String>();
l1.add("Apple");
l1.add("Chery");
l1.add("Grapes");
List<String> l2=new ArrayList<String>();
l2.add("Orange");
l2.add("Mango");
l2.add("Melon");
l2.add("Apple");
String[] s2=fruitsList(l1,l2);
for(String s3:s2)
System.out.println(s3);
}
public static String[] fruitsList(List<String> l1, List<String> l2){
List<String> l3=new ArrayList<String>();
for(int i=0;i<l1.size();i++){
String s1=l1.get(i);
import java.util.*;
publicclass Main {
publicstaticvoid main(String[] args) {
List<String> l1=new ArrayList<String>();
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
for(int i=0;i<n;i++)
{
l1.add(sc.next());
}
List<String> l2=new ArrayList<String>();
int n1=sc.nextInt();
for(int i=0;i<n1;i++)
{
l2.add(sc.next());
}
String[] s2=User.fruitsList(l1,l2);
// for(int i=0;i<s2.length;i++)
// System.out.println(s2[i].toString());
for(String s3:s2)
System.out.println(s3);
}
}
publicclass User
{
publicstatic String[] fruitsList(List<String> l1, List<String> l2){
ArrayList<String> l3=new ArrayList<String>();
for(int i=0;i<l1.size();i++)
{
String s1=l1.get(i);
intlen=s1.length();
if(s1.charAt(len-1)!='a'&& s1.charAt(len-1)!='A'
&& s1.charAt(len-1)!='e'&& s1.charAt(len-1)!='E')
l3.add(s1);
}
for(int i=0;i<l2.size();i++)
{
String s1=l2.get(i);
if(s1.charAt(0)!='m'&& s1.charAt(0)!='M'&& s1.charAt(0)!='a'
&& s1.charAt(0)!='A')
l3.add(s1);
}
Collections.sort(l3);
String[] s2=new String[l3.size()];
for(int i=0;i<s2.length;i++)
s2[i]=l3.get(i);
return s2;
}
]
/’
Include a class UserMainCode with the static method arrayListSubtractor which accepts the two
arraylists and returns an array.
Create a Class Main which would be used to read the inputs and call the static method present in
UserMainCode.
Input consists of an integer (m) denoting the size of first arraylist. The next m elements would be
the values of the first arraylist. The next input would be n denoting the size of the second
arraylist. The next n elements would be the values of the second arraylist.
Output consists of an array. The elements in the output array need to be printed in sorted order.
Sample Input 1:
4
1
8
3
5
2
3
5
Sample Output 1:
1
8
Sample Input 2:
4
9
1
3
5
4
1
3
5
6
Sample Output 2:
6
9
import java.util.*;
publicclass Main
{
publicstaticvoid main(String[] args)
{
int n,m;
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
ArrayList<Integer> a1 = new ArrayList<Integer>();
for(int i=0;i<n;i++)
{
a1.add(sc.nextInt());
}
m = sc.nextInt();
ArrayList<Integer> a2 = new ArrayList<Integer>();
for(int i=0;i<m;i++)
{
a2.add(sc.nextInt());
}
int[] result = User.arrayListSubtractor(a1, a2);
Arrays.sort(result);
for(int i=0;i<result.length;i++)
System.out.println(result[i]);
}
}
import java.util.*;
publicclass User
{
publicstaticint[] arrayListSubtractor(ArrayList<Integer>
arrlist1,ArrayList<Integer> arrlist2)
{
TreeSet<Integer> ts1=new TreeSet<Integer>();
TreeSet<Integer> ts2=new TreeSet<Integer>();
TreeSet<Integer> ts3=new TreeSet<Integer>();
ArrayList<Integer> aa=new ArrayList<Integer>();
for(int i=0;i<arrlist1.size();i++)
ts1.add(arrlist1.get(i));
for(int i=0;i<arrlist2.size();i++)
ts2.add(arrlist2.get(i));
ts1.addAll(ts2);
for(int i=0;i<arrlist1.size();i++)
{
for(int j=0;j<arrlist2.size();j++)
{
if(arrlist1.get(i)==arrlist2.get(j))
ts3.add(arrlist1.get(i));
}
}
ts1.removeAll(ts3);
aa.addAll(ts1);
int res[]=newint[aa.size()];
for(int i=0;i<res.length;i++)
res[i]=aa.get(i);
return res;
}
}
Write a small price calculator application with the below mentioned flow:
1. Read a value n indicating the total count of devices. This would be followed by the name and
price of the device. The datatype for name would be String and price would be float.
2. Build a hashmap containing the peripheral devices with name as key and price as value.
3. Read a value m indicating the number of devices for which the price has to be calculated. This
would be followed by device names.
4. For each devices mentioned in the array calcuate the total price.
5. You decide to write a function costEstimator which takes the above hashmap and array as
input and returns the total price (float) as output with two decimal points. Include this function in
class UserMainCode.
Create a Class Main which would be used to read details in step 1 and build the hashmap. Call
the static method present in UserMainCode.
Input consists of device details. The first number indicates the size of the devices. The next two
values indicate the name,price.
This would be followed by m indicating the size of the device array. The next m values would be
the device names.
Output consists of the total price in float.
Refer sample output for formatting specifications.
Sample Input 1:
3
Monitor
1200.36
Mouse
100.42
Speakers
500.25
2
Speakers
Mouse
Sample Output 1:
600.67
import java.util.*;
public class UserMainCode {
public static void main(String[] args) {
HashMap<String, String> m1=new HashMap<String, String>();
m1.put("monitor", "1200.36");
m1.put("mouse","100.42");
m1.put("speaker", "500.25");
String[] s={"speaker","mouse"};
System.out.println(getTheTotalCostOfPheripherals(m1,s));
}
public static float getTheTotalCostOfPheripherals(HashMap<String,String> m1,String[] s) {
Float f=(float) 0;
Iterator<String> i=m1.keySet().iterator();
while(i.hasNext()){
String s1=(String) i.next();
Float f1=Float.parseFloat(m1.get(s1));
for(int j=0;j<s.length;j++)
if(s[j].equals(s1))
f+=f1;
}
return f;
}}
Include a class UserMainCode with a static method getLastDayOfMonth which accepts the
string. The return type is the integer having number of days.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
12-06-2012
Sample Output 1:
30
Sample Input 2:
10-02-2012
Sample Output 2:
29
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
Write a program to read a string containing date in DD/MM/YYYY format and check if its a leap
year. If so, return true else return false.
Include a class UserMainCode with a static method isLeapYear which accepts the string. The
return type is the boolean indicating TRUE / FALSE.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
23/02/2012
Sample Output 1:
TRUE
Sample Input 2:
12/12/2011
Sample Output 2:
FALSE
import java.text.ParseException;
import java.util.*;
publicclass Main
{
publicstaticvoid main(String[] args) throws ParseException {
}
}
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
publicclass User
{
publicstaticboolean leapYear(String s) throws ParseException
{
SimpleDateFormat sdf=new SimpleDateFormat("dd/MM/yyyy");
GregorianCalendar g=new GregorianCalendar();
Calendar cal=Calendar.getInstance();
Date d1=sdf.parse(s);
cal.setTime(d1);
intn=cal.get(Calendar.YEAR);
boolean b=g.isLeapYear(n);
return b;
}}
Write a program to read a string and return the length of the largest "chunk" in the string.
A chunk is a repetition of same character 2 or more number of times. If the given string doest not
contain any repeated chunk of characters return -1.
Include a class UserMainCode with a static method getLargestSpan which accepts the string.
The return type is the integer.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
This place is soooo good
Sample Output 1:
4
import java.util.*;
public class Main {
public static void main(String[] args) {
String s1="You are toooo good";
System.out.println(maxChunk(s1));
}
public static int maxChunk(String s1) {
int max=0;
StringTokenizer t=new StringTokenizer(s1," ");
while(t.hasMoreTokens()){
String s2=t.nextToken();
int n=0;
for(int i=0;i<s2.length()-1;i++)
if(s2.charAt(i)==s2.charAt(i+1))
n++;
if(n>max)
max=n;
}
return (max+1);
}
}
Write a program to read a integer array, find the largest span in the array.
Span is the count of all the elements between two repeating elements including the repeated
elements.
Include a class UserMainCode with a static method getLargestSpan which accepts the integer
array. The return type is integer.
Create a Class Main which would be used to accept the integer array and call the static method
present in UserMainCode.
Sample Input 1:
6
4
2
1
4
5
7
Sample Output 1:
4
Write a program to read a integer array, Remove the duplicate elements and display sum of even
numbers in the output. If input array contain only odd number then return -1.
Include a class UserMainCode with a static method sumElements which accepts the integer
array. The return type is integer.
Create a Class Main which would be used to accept the integer array and call the static method
present in UserMainCode.
Sample Input 1:
7
2
3
54
1
6
7
7
Sample Output 1:
62
Sample Input 2:
6
3
7
9
13
17
21
Sample Output 2:
-1
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.Scanner;
public class Main
{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
int a[]=new int[n];
for(int i=0;i<n;i++)
{
a[i]=sc.nextInt();
}
System.out.println(UserMainCode.display(a));
}}
import java.util.Iterator;
import java.util.LinkedHashSet;
Include a class UserMainCode with a static method passwordValidation which accepts the
string. The return type is the string.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
import java.util.*;
publicclass Main
{
publicstaticvoid main(String[] args) {
}
}
publicclass User{
publicstaticint leapYear(String s)
{
if(s.matches(".*[0-9]{1,}.*")
&&s.matches(".*[!@#$%^&*]{1,}.*") &&s.length()>=8 &&
s.matches(".*[A-Z]{1,}.*") &&s.matches(".*[a-z]{1,}.*"))
return 1;
else
return -1;
}}
67.Integer Factorial
Give an array of integer as input, store the numbers and their factorials in an hashmap and print
the same.
Include a class UserMainCode with a static method getFactorial which accepts the integer
array. The return type is the hashmap which is printed key:value.
Create a Class Main which would be used to accept the integer array and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a number denoting the size of the array and followed by the elements.
Output consists of a hashmap printed in the output format .
Refer sample output for formatting specifications.
Sample Input1:
4
2
3
5
4
Sample Output1:
2:2
3:6
5:120
4:24
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.Scanner;
import java.text.DecimalFormat;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
public class kapes4
{public static LinkedHashMap<Integer,Integer> display(int[] a)
{
LinkedHashMap<Integer,Integer>hm=new LinkedHashMap<Integer,Integer>();
for(int i=0;i<a.length;i++)
{
int u=1;
for(int j=1;j<=a[i];j++)
{
u=u*j;
}
hm.put(a[i],u);
}
return hm;
}}
Obtain two strings S1,S2 from user as input. Your program should form a string
of “long+short+long”, with the shorter string inside of the longer String.
Include a class UserMainCode with a static method getCombo which accepts two string
variables. The return type is the string.
Create a Class Main which would be used to accept two Input strings and call the static method
present in UserMainCode.
import java.util.StringTokenizer;
Given a date of birth (dd/MM/yyyy) of a person in string, compute his age as of 01/01/2015.
If his age is greater than 18, then println eligible else println not-eligible.
Include a class UserMainCode with a static method getAge which accepts the string value. The
return type is the string.
Create a Class Main which would be used to accept the two string values and call the static
method present in UserMainCode.
Sample Input 1:
16/11/1991
Sample Output 1:
eligible
import java.util.*;
publicclass Main
{
publicstaticvoid main(String[] args) {
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
publicclass User{
int year=0;
String now="01/01/2015";
SimpleDateFormat sdf1=new SimpleDateFormat("dd/MM/yyyy");
try
{
sdf1.setLenient(false);
Calendar c1=Calendar.getInstance();
Date d=sdf1.parse(n);
c1.setTime(d);
int y=c1.get(Calendar.YEAR);
int m=c1.get(Calendar.MONTH);
int day=c1.get(Calendar.DAY_OF_MONTH);
Calendar c2=Calendar.getInstance();
Date d1=sdf1.parse(now);
c1.setTime(d1);
int y1=c2.get(Calendar.YEAR);
int m1=c2.get(Calendar.MONTH);
int day1=c2.get(Calendar.DAY_OF_MONTH);
year=y1-y;
//System.out.println(year);
if(m>m1)
year--;
elseif(m==m1)
{if(day<day1)
year--;
}
}
catch(Exception e)
{
e.printStackTrace();
}
if(year>18)
return"eligible";
else
return"not-eligible";
}}
1. Remove 10's
Write a program to read an integer array and remove all 10s from the array, shift the
other elements towards left and fill the trailing empty positions by 0 so that the
modified array is of the same length of the given array.
Include a class UserMainCode with a static method removeTens which accepts the
number of elements and an integer array. The return type (Integer array) should return
the final array.
Create a Class Main which would be used to read the number of elements and the
input array, and call the static method present in UserMainCode.
Sample Input :
5
1
10
20
10
2
Sample Output :
1
20
2
o
o
import java.util.Scanner;
public class Main {
public static void main(String arg[])
{
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
int []sr=new int[n];
Integer []sr1=new Integer[n];
for(int i=0;i<n;i++)
{
sr[i]=sc.nextInt();
}
sr1=UserMainCode.remove(sr);
for(int i=0;i<n;i++){
System.out.println(sr1[i]);
}
}
import java.util.ArrayList;
import java.util.Iterator;
public class UserMainCode {
public static Integer[] remove(int s[]){
ArrayList<Integer> a=new ArrayList<Integer>();
ArrayList<Integer> b=new ArrayList<Integer>();
for(int i=0;i<s.length;i++)
{
a.add(s[i]);
}
Iterator <Integer> it=a.iterator();
while(it.hasNext())
{
int x=it.next();
if(x!=10)
{
b.add(x);
}
}
if(b.size()<s.length)
{
int len=s.length-b.size();
for(int i=0;i<len;i++)
{
b.add(0);
}
}
2. Programming Logic
Write a Program that accepts three integer values (a,b,c) and returns their sum.
However, if one of the values is 13 then it does not count towards the sum and the
next number also does not count. So for example, if b is 13, then both b and c do not
count.
Create a Class Main which would be used to accept the input integers and call the
static method present in UserMainCode.
Sample Input 1:
1
2
3
Sample Output 1:
6
Sample Input 2:
1
2
13
Sample Output 2:
3
Sample Input 3:
13
3
8
Sample Output 3:
8
import java.util.Scanner;
public class Main {
public static void main(String arg[])
{
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
int n1=sc.nextInt();
int n2=sc.nextInt();
int res=UserMainCode.sum(n,n1,n2);
System.out.println(res);
}
}
Write a program to read a string and return a modified string based on the following
rules.
Return the String without the first 2 chars except when
1. keep the first char if it is 'j'
2. keep the second char if it is 'b'.
Include a class UserMainCode with a static method getString which accepts a string.
The return type (string) should be the modified string based on the above rules.
Consider all letters in the input to be small case.
Create a Class Main which would be used to accept Input string and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of a string with maximum size of 100 characters.
Output consists of a string.
Refer sample output for formatting specifications.
Sample Input 1:
hello
Sample Output 1:
llo
Sample Input 2:
java
Sample Output 2:
jva
import java.util.Scanner;
public class Main {
public static void main(String arg[])
{
Scanner sc=new Scanner(System.in);
String n=sc.next();
String res=UserMainCode.stringManipulation(n);
System.out.println(res);
}
}
return sb.toString();
}
}
4. Color Code
Write a program to read a string and validate whether the given string is a valid color
code based on the following rules:
- Must start with "#" symbol
- Must contain six characters after #
- It may contain alphabets from A-F or digits from 0-9
Include a class UserMainCode with a static method validateColorCode which
accepts a string. The return type (integer) should return 1 if the color is as per the rules
else return -1.
Create a Class Main which would be used to accept a String and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string.
Output consists of a string (Valid or Invalid).
Refer sample output for formatting specifications.
Sample Input 1:
#FF9922
Sample Output 1:
Valid
Sample Input 2:
#FF9(22
Sample Output 2:
Invalid
import java.util.Scanner;
public class Main {
public static void main(String arg[])
{
Scanner sc=new Scanner(System.in);
String n=sc.next();
boolean s=UserMainCode.colorCode(n);
if(s==true){
System.out.println("valid");
}
else
System.out.println("invalid");
}
}
Write a program to read a non-negative integer n, compute the sum of its digits. If sum
is greater than 9 repeat the process and calculate the sum once again until the final
sum comes to single digit.Return the single digit.
Include a class UserMainCode with a static method getDigitSum which accepts the
integer value. The return type is integer.
Create a Class Main which would be used to accept the string and call the static
method present in UserMainCode.
Sample Input 1:
9999
Sample Output 1:
9
Sample Input 2:
698
Sample Output 2:
5
import java.io.*;
import java.util.*;
public class Main {
while(sum!=0)
{
rem1=sum%10;
dsum+=rem1;
sum/=10;
}
System.out.println(dsum);
}
}
}
Example:
Input Array = {10,15,20,25,30,100}
Number = 15
sum = 20 + 25 + 30 + 100 = 175
output = 571
Input and Output Format:
The first line of the input consists of an integer that corresponds to the number of
elements in the array.
The next n lines of the input consists of integers that correspond to the elements in the
array.
The last line of the input consists of an integer that corresponds to the number.
Output consists of a single integer.
Sample Input
6
10
15
20
25
30
100
15
Sample Output
571
import java.util.Scanner;
public class Main {
public static void main(String arg[])
{
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
int a[]=new int[n];
for(int i=0;i<n;i++)
{
a[i]=sc.nextInt();
}
int num=sc.nextInt();
int res=UserMainCode.digits(a,num);
System.out.println(res);
}
}
Write a program to read a two strings and one int value(N). check if Nth character of
first String from start and Nth character of second String from end are same or not. If
both are same return true else return false.
Check need not be Case sensitive
Include a class UserMainCode with a static method isEqual which accepts the two
strings and a integer n. The return type is the TRUE / FALSE.
Create a Class Main which would be used to read the strings and integer and call the
static method present in UserMainCode.
Sample Input 1:
AAAA
abab
2
Sample Output 1:
TRUE
Sample Input 2:
MNOP
QRST
3
Sample Output 2:
FALSE
import java.util.Scanner;
public class Main {
public static void main(String arg[])
{
Scanner sc=new Scanner(System.in);
String s1=sc.next();
String s2=sc.next();
int n=sc.nextInt();
boolean s=UserMainCode.digits(s1,s2,n);
if(s==true){
System.out.println("TRUE");
}
else
System.out.println("FALSE");
}
}
Given two inputs year and month (Month is coded as: Jan=0, Feb=1 ,Mar=2 ...), write
a program to find out total number of days in the given month for the given year.
Create a class Main which would get 2 integers as input and call the static
method getNumberOfDays present in the UserMainCode.
Sample Input:
2000
1
Sample Output:
29
import java.util.Scanner;
public class Main {
public static void main(String arg[])
{
Scanner sc=new Scanner(System.in);
int y=sc.nextInt();
int m=sc.nextInt();
int d=UserMainCode.month(y,m);
System.out.println(d);
}
}
import java.util.GregorianCalendar;
return f;
}
}
9. SumOdd
Write a program to read an integer and find the sum of all odd numbers from 1 to the
given number. [inclusive of the given number]
if N = 9 [ 1,3,5,7,9]. Sum = 25
Create a Class Main which would be used to accept the integer and call the static
method present in UserMainCode.
Sample Input 1:
6
Sample Output 1:
9
import java.util.Scanner;
public class Main {
public static void main(String arg[])
{
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
int d=UserMainCode.sumOdd(n);
System.out.println(d);
}
}
public class UserMainCode {
public static int sumOdd(int s1){
int sum=0;
for(int i=0;i<=s1;i++)
{
if(i%2!=0)
{
sum=sum+i;
}
}
return sum;
}
}
Write a program to read a integer array, Remove the duplicate elements and display
sum of even numbers in the output. If input array contain only odd number then return
-1.
Include a class UserMainCode with a static method sumElements which accepts the
integer array. The return type is integer.
Create a Class Main which would be used to accept the integer array and call the static
method present in UserMainCode.
Sample Input 1:
7
2
3
54
1
6
7
7
Sample Output 1:
62
Sample Input 2:
6
3
7
9
13
17
21
Sample Output 2:
-1
import java.util.Scanner;
int n=sc.nextInt();
for(int i=0;i<n;i++)
a[i]=sc.nextInt();
int d=UserMainCode.sumEven(a);
System.out.println(d);
import java.util.HashSet;
import java.util.Iterator;
int sum=0;
hs.add(s1[i]);
Iterator<Integer>it=hs.iterator();
while(it.hasNext())
int x=it.next();
if(x%2==0)
sum=sum+x;
else
sum=-1;
return sum;
Create a Class Main which would be used to read n strings and call the static method present
in UserMainCode.
Input consists of n+1 integers. The first integer denotes the size of the arraylist, the next n
strings are values to the arraylist.
Output consists of an arrayas per step 4.
Refer sample output for formatting specifications.
Sample Input 1:
4
a
d
c
b
Sample Output 1:
a
b
c
d
import java.util.ArrayList;
import java.util.Scanner;
ArrayList<String>al=new ArrayList<String>();
int n=sc.nextInt();
for(int i=0;i<n;i++)
al.add(sc.next());
}
String a[]=UserMainCode.listToArray(al);
for(int i=0;i<a.length;i++){
System.out.println(a[i]);}
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
Collections.sort(al);
al.toArray(s);
return s;
}}
Write a program to read a string from the user and remove all the alphabets and
spaces from the String, andonly store special characters and digit in the output
String. Print the output string.
Sample Input :
cogniz$#45Ant
Sample Output :
$#45
import java.util.ArrayList;
import java.util.Scanner;
String s=sc.next();
String a=UserMainCode.flushChar(s);
System.out.println(a);
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
return s1;
}}
Write a Program that accepts four int inputs(x1,y1,x2,y2) as the coordinates of two
points. Calculate the distance between the two points using the below formula.
Formula : square root of((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2))
Then, Round the result to return an int
Include a class UserMainCode with a static method findDistance which accepts four
integers. The return type is integer representing the formula.
Create a Class Main which would be used to accept the input integers and call the
static method present in UserMainCode.
Sample Input 1:
3
4
5
2
Sample Output 1:
3
Sample Input 2:
3
1
5
2
Sample Output 2:
2
import java.util.ArrayList;
import java.util.Scanner;
public class Main {
public static void main(String arg[])
{
Scanner sc=new Scanner(System.in);
int n1=sc.nextInt();
int n2=sc.nextInt();
int n3=sc.nextInt();
int n4=sc.nextInt();
int a=UserMainCode.distance(n1,n2,n3,n4);
System.out.println(a);
}
}
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
public class UserMainCode {
public static int distance(int n1,int n2,int n3,int n4){
int dis=0;
int x=Math.abs(n1-n3);
int y=Math.abs(n2-n4);
dis=(int)Math.round(Math.sqrt((x*x)+(y*y)));
return dis;
}}
Given a method with two strings as input. Write code to count the common and
unique letters in the two strings.
Note:
- Space should not be counted as a letter.
The return type of the output is the count of all common and unique characters in the
two strings.
Create a class Main which would get the inputs and call the static
method commonChars present in the UserMainCode.
Sample Input 1:
a black cow
battle ship
Sample Output 1:
2
[Explanation : b, l and a are the common letters between the 2 input strings. But 'a'
appears more than once in the 1st string. So 'a' should not be considered while
computing the count value.]
Sample Input 2:
australia
sri lanka
Sample Output 2:
4
import java.util.ArrayList;
import java.util.Scanner;
String n1=sc.nextLine();
String n2=sc.nextLine();
int a=UserMainCode.common(n1,n2);
System.out.println(a);
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
for(int i=0;i<sb1.length();i++){
int c=0;
for(int j=i+1;j<sb1.length();j++){
if(sb1.charAt(i)==sb1.charAt(j)){
sb1.deleteCharAt(j);
c++;
if(c>=1){
sb1.deleteCharAt(i);
System.out.println(sb1);
for(int i=0;i<sb2.length();i++){
int c=0;
for(int j=i+1;j<sb2.length();j++){
if(sb2.charAt(i)==sb2.charAt(j)){
sb2.deleteCharAt(j);
c++;
if(c>=1){
sb2.deleteCharAt(i);
}
System.out.println(sb2);
int count=0;
for(int i=0;i<sb1.length();i++){
for(int j=0;j<sb2.length();j++){
if(sb1.charAt(i)==sb2.charAt(j)){
count++;
return count;
Given an array of Strings, write a program to take the last character of each string and
make a new String by concatenating it.
Create a class Main which would get the String array as input and call the static
method concatCharacterpresent in the UserMainCode.
The first line of the input consists of an integer n that corresponds to the number of
strings in the input string array.
The next n lines of the input consist of the strings in the input string array.
Sample Input:
ab
abcd
Sample Output:
bad
import java.util.ArrayList;
import java.util.Scanner;
int n=sc.nextInt();
for(int i=0;i<n;i++)
a[i]=sc.next();
String res=UserMainCode.common(a);
System.out.println(res);
}
}
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
String s ="";
for(int i=0;i<n1.length;i++)
int x=n1[i].length()-1;
s=s+n1[i].charAt(x);
return s;}}
Input consists of an integer (m) denoting the size of first arraylist. The next m
elements would be the values of the first arraylist. The next input would be n denoting
the size of the second arraylist. The next n elements would be the values of the second
arraylist.
Output consists of an array as per step 6. Refer sample output for formatting
specifications.
Sample Input 1:
3
Apple
Cherry
Grapes
4
Orange
Mango
Melon
Apple
Sample Output 1:
Cherry
Grapes
Orange
import java.util.ArrayList;
import java.util.Scanner;
int n=sc.nextInt();
ArrayList<String>al=new ArrayList<String>();
for(int i=0;i<n;i++)
{
al.add(sc.next());
int n1=sc.nextInt();
ArrayList<String>al1=new ArrayList<String>();
for(int i=0;i<n1;i++)
al1.add(sc.next());
String res[]=UserMainCode.common(al,al1);
for(int i=0;i<res.length;i++){
System.out.println(res[i]);}
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
ArrayList<String>a=new ArrayList<String>();
ArrayList<String>b=new ArrayList<String>();
ArrayList<String>c=new ArrayList<String>();
Iterator <String>it=al.iterator();
while(it.hasNext())
String s=it.next();
int x=s.length()-1;
if(s.charAt(x)!='a'&&s.charAt(x)!='e')
a.add(s);
Iterator <String>itr=al1.iterator();
while(itr.hasNext())
String s=itr.next();
if(s.charAt(0)!='m'&&s.charAt(0)!='a')
b.add(s);
}
int len=a.size()+b.size();
for(int i=0;i<a.size();i++)
c.add(a.get(i));
for(int i=0;i<b.size();i++)
c.add(b.get(i));
c.toArray(arr);
return arr;}}
Create a Class Main which would be used to read the inputs and call the static method
present in UserMainCode.
Input consists of an integer (m) denoting the size of first arraylist. The next m
elements would be the values of the first arraylist. The next input would be n denoting
the size of the second arraylist. The next n elements would be the values of the second
arraylist.
Output consists of an array. The elements in the output array need to be printed in
sorted order.
Sample Input 1:
4
1
8
3
5
2
3
5
Sample Output 1:
1
8
Sample Input 2:
4
9
1
3
5
4
1
3
5
6
Sample Output 2:
6
9
import java.util.ArrayList;
import java.util.Scanner;
{
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
ArrayList<Integer>al=new ArrayList<Integer>();
for(int i=0;i<n;i++)
al.add(sc.nextInt());
int n1=sc.nextInt();
ArrayList<Integer>al1=new ArrayList<Integer>();
for(int i=0;i<n1;i++)
al1.add(sc.nextInt());
Integer res[]=UserMainCode.common(al,al1);
for(int i=0;i<res.length;i++){
System.out.println(res[i]);}
import java.util.ArrayList;
import java.util.Collections;
ArrayList<Integer>a=new ArrayList<Integer>();
a.addAll(al);
a.removeAll(al1);
al1.removeAll(al);
a.addAll(al1);
Collections.sort(a);
a.toArray(arr);
return arr;
Write code to get the sum of all the digits present in the given string.
Return the sum as output. If there is no digit in the given string return -1 as output.
Create a class Main which would get the input and call the static
method sumOfDigits present in the UserMainCode.
good23bad4
Sample Output 1:
9
Sample Input 2:
good
Sample Output 2:
-1
import java.util.ArrayList;
import java.util.Scanner;
public class Main {
public static void main(String arg[])
{
Scanner sc=new Scanner(System.in);
String n=sc.next();
int res=UserMainCode.common(n);
System.out.println(res);
}
}
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
if(s.replaceAll("[a-zA-Z]", "").isEmpty()){
sum=-1;}
return sum;
}
}
19. Word Count
Given a string array (s) and non negative integer (n) and return the number of
elements in the array which have same number of characters as the givent int N.
Include a class UserMainCode with a static method countWord which accepts the
string array and integer. The return type is the string formed based on rules.
Create a Class Main which would be used to accept the string and integer and call the
static method present in UserMainCode.
Sample Input 1:
4
a
bb
b
ccc
1
Sample Output 1:
2
Sample Input 2:
5
dog
cat
monkey
bear
fox
3
Sample Output 2:
3
import java.util.ArrayList;
import java.util.Scanner;
int n=sc.nextInt();
for(int i=0;i<n;i++)
a[i]=sc.next();
int num=sc.nextInt();
int res=UserMainCode.common(a,num);
System.out.println(res);
}
}
20. IP Validator
Write a program to read a string and validate the IP address. Print “Valid” if the IP
address is valid, else print “Invalid”.
Sample Input 1:
132.145.184.210
Sample Output 1:
Valid
Sample Input 2:
132.145.184.290
Sample Output 2:
Invalid
import java.util.ArrayList;
import java.util.Scanner;
{
Scanner sc=new Scanner(System.in);
String n=sc.next();
boolean s=UserMainCode.common(n);
if(s==true){
System.out.println("Valid");
else
System.out.println("Invalid");
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import java.util.StringTokenizer;
boolean c=false;
int cnt=0;
while(st.hasMoreTokens())
String s1=st.nextToken();
int num=Integer.parseInt(s1);
if(num>=0&&num<=255)
cnt++;
if(cnt==4)
c=true;
else
c=false;
return c;
21. Anagram
Write a program to check whether the two given strings are anagrams.
Note: Rearranging the letters of a word or phrase to produce a new word or phrase,
using all the original letters exactly once is called Anagram."
Create a class Main which would get 2 Strings as input and call the static
method getAnagram present in the UserMainCode.
Input consists of 2 strings. Assume that all characters in the string are lower case
letters.
Output consists of a string that is either “Anagrams” or “Not Anagrams”.
Sample Input 1:
Sample Output 1:
Anagrams
Sample Input 2:
orchestra
carthorse
Sample Output 2:
Anagrams
Sample Input 3:
cognizant
technologies
Sample Output 3:
Not Anagrams
import java.util.ArrayList;
import java.util.Scanner;
String n=sc.nextLine();
String n1=sc.nextLine();
boolean s=UserMainCode.common(n,n1);
if(s==true){
System.out.println("Anagrams");
else
System.out.println("Not Anagrams");
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import java.util.StringTokenizer;
boolean c=false;
try{
for(int i=0;i<s.length();i++)
char ch=s.charAt(i);
a.add(ch);
for(int i=0;i<s1.length();i++)
char ch=s.charAt(i);
b.add(ch);
Collections.sort(a);
Collections.sort(b);
if(a.containsAll(b)||b.containsAll(a))
c=true;
catch(Exception e){
c=false;
return c;
Obtain two strings S1,S2 from user as input. Your program should form a string
of “long+short+long”, with the shorter string inside of the longer String.
Include a class UserMainCode with a static method getCombo which accepts two
string variables. The return type is the string.
Create a Class Main which would be used to accept two Input strings and call the
static method present in UserMainCode.
Input and Output Format:
Input consists of two strings with maximum size of 100 characters.
Output consists of an string.
Refer sample output for formatting specifications.
Sample Input 1:
Hello
Hi
Sample Output 1:
HelloHiHello
import java.util.ArrayList;
import java.util.Scanner;
String n=sc.nextLine();
String n1=sc.nextLine();
String res=UserMainCode.common(n,n1);
System.out.println(res);
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import java.util.StringTokenizer;
public class UserMainCode {
int x=s.length();
String str="";
int y=s1.length();
if(x>y)
str=s+s1+s;
else
str=s1+s+s1;
return str;
}}
Write a program to input a String array. The input may contain digits and alphabets
(“de5g4G7R”). Extract odd digits from each string and find the sum and print the
output.
For example, if the string is "AKj375A" then take 3+7+5=15 and not as 375 as digit.
cog2nizant1
al33k
d2t4H3r5
Sample Output :
15
(1+3+3+3+5)
import java.util.ArrayList;
import java.util.Scanner;
int n=sc.nextInt();
for(int i=0;i<n;i++)
n1[i]=sc.next();
int res=UserMainCode.common(n1);
System.out.println(res); }
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import java.util.StringTokenizer;
int sum=0;
for(int i=0;i<s.length;i++)
String str=s[i];
int len=str.length();
char a[]=str.toCharArray();
for(int j=0;j<len;j++)
if(Character.isDigit(a[j]))
String num=String.valueOf(a[j]);
int no=Integer.parseInt(num);
if(no%2!=0)
{
System.out.println(no);
sum=sum+no;
return sum;
Write a program to read a string and a positive integer n as input and construct a string
with first n and last n characters in the given string.
The return type of the output should be a string (value) of first n character and last n
character.
Create a class Main which would get the input as a string and integer n and call the
static methodformNewWord present in the UserMainCode.
Sample Input 1:
California
Sample Output 1:
Calnia
Sample Input2:
this
Sample Output 2:
Ts
import java.util.ArrayList;
import java.util.Scanner;
String n1=sc.next();
int n=sc.nextInt();
String res=UserMainCode.common(n1,n);
System.out.println(res);
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import java.util.StringTokenizer;
String str=s.substring(0,n);
sb.reverse();
String st=sb.substring(0,n);
sb1.reverse();
str=str+sb1.toString();
return str;
Write a Program that accepts a decimal number n, and converts the number to binary.
Create a Class Main which would be used to accept the input integer and call the static
method present in UserMainCode.
Sample Input 1:
5
Sample Output 1:
101
import java.util.ArrayList;
import java.util.Scanner;
public class Main {
public static void main(String arg[])
{
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
long res=UserMainCode.common(n);
System.out.println(res);
}
}
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import java.util.StringTokenizer;
Write a program to check if a given string is palindrome and contains at least two
different vowels.
import java.util.ArrayList;
import java.util.Scanner;
public class Main {
public static void main(String arg[])
{
Scanner sc=new Scanner(System.in);
String n=sc.next();
boolean s=UserMainCode.common(n);
if(s==true){
System.out.println("Valid");
}
else
System.out.println("Invalid"); }}
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import java.util.StringTokenizer;
str=String.valueOf(ar[i]);
hs.add(str);
}
}
String st[]=new String[hs.size()];
hs.toArray(st);
if(st.length>=2)
{
fg1=1;}
if(fg==1&&fg1==1)
{
f=true;}
else
f=false;
return f;
}}
Or
import java.util.Scanner;
public class Main {
System.out.println(UserMainCode.empdis(n));
}
}
{
int r=0;
String rs;
if(s.contains("a") || s.contains("A"))
r++;
if( s.contains("e") || s.contains("E"))
r++;
if( s.contains("i") || s.contains("I"))
r++;
if (s.contains("o") || s.contains("O"))
r++;
if(s.contains("u") || s.contains("U"))
r++;
return rs;
}
}
26. States and Capitals
Write a program that construts a hashmap with “state” as key and “capital” as its value.
If the next input is a state, then it should return capital$state in lowercase.
Include a class UserMainCode with a static method getCapital which accepts a
hashmap. The return type is the string as given in the above statement
Create a Class Main which would be used to accept Input string and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of 2n+2 values. The first value corresponds to size of the hashmap. The
next n pair of numbers contains the state and capital. The last value consists of the
“state” input.
Output consists of a string as mentioned in the problem statement.
Refer sample output for formatting specifications.
Sample Input 1:
3
Karnataka
Bangaluru
Punjab
Chandigarh
Gujarat
Gandhinagar
Punjab
Sample Output 1:
chandigarh$punjab
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Scanner;
public class Main {
public static void main(String arg[])
{
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
HashMap<String,String>hm=new HashMap<String,String>();
for(int i=0;i<n;i++)
{
hm.put(sc.next(),sc.next());
}
String st=sc.next();
String s=UserMainCode.common(hm,st);
System.out.println(s);
}
}
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.StringTokenizer;
Or
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Scanner;
Write a program that construts a hashmap with “state” as key and “capital” as its value. If the
next input is a state, then it should return capital$state in lowercase.
Include a class UserMainCode with a static method getCapital which accepts a hashmap.
The return type is the string as given in the above statement
Create a Class Main which would be used to accept Input string and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of 2n+2 values. The first value corresponds to size of the hashmap. The next n
pair of numbers contains the state and capital. The last value consists of the “state” input.
Output consists of a string as mentioned in the problem statement.
Refer sample output for formatting specifications.
Sample Input 1:
3
Karnataka
Bangaluru
Punjab
Chandigarh
Gujarat
Gandhinagar
Punjab
Sample Output 1:
chandigarh$punjab
Same asQue26.
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class Main {
String s=sc.next();
System.out.println(UserMainCode.empdis(mp,s));
}
}
import java.util.Map;
import java.util.Set;
{ String rs="";
Set<String> k=mp.keySet();
for(String key:k)
{
if(key.equals(s))
{
rs=(mp.get(key)).toLowerCase()+"$"+key.toLowerCase();
}
}
return rs;
}
}
Write a program to read a string containing date in DD/MM/YYYY format and check
if its a leap year. If so, return true else return false.
Include a class UserMainCode with a static method isLeapYear which accepts the
string. The return type is the boolean indicating TRUE / FALSE.
Create a Class Main which would be used to accept the string and call the static
method present in UserMainCode.
Sample Input 1:
23/02/2012
Sample Output 1:
TRUE
Sample Input 2:
12/12/2011
Sample Output 2:
FALSE
import java.text.ParseException;
import java.util.*;
public class Main {
public static void main(String[] args) throws ParseException {
Scanner sc = new Scanner(System.in);
String s = sc.next();
boolean b = false;
StringTokenizer st = new StringTokenizer(s, "/");
while (st.hasMoreTokens()) {
int day = Integer.parseInt(st.nextToken());
int month = Integer.parseInt(st.nextToken());
int year = Integer.parseInt(st.nextToken());
GregorianCalendar gc = new GregorianCalendar();
b = gc.isLeapYear(year);
System.out.println(b);
}
}
}
Or
import java.text.ParseException;
import java.util.Scanner;
public class Main {
{
String r="";
SimpleDateFormat sdf=new SimpleDateFormat("dd/MM/yyyy");
Date d=sdf.parse(s);
GregorianCalendar gc=new GregorianCalendar();
gc.setTime(d);
if(gc.isLeapYear(gc.get(Calendar.YEAR)))
r="TRUE";
else
r="FALSE";
return r;
}
}
Write a program to read a String and check if that String contains all the vowels. Print
“yes” if the string contains all vowels else print “no”.
abceiduosp
Sample Output 1:
yes
Sample Input 2:
bceiduosp
Sample Output 2:
no
import java.text.ParseException;
import java.util.*;
public class Main {
public static void main(String[] args) throws ParseException {
Scanner sc = new Scanner(System.in);
String s = sc.next();
String s2 = s.replaceAll("[^aeiouAEIOU]", "");
System.out.println(s2);
HashSet<Character> hs = new HashSet<Character>();
for (int i = 0; i < s2.length(); i++) {
hs.add(s2.charAt(i));
}
if (hs.size() == 5) {
System.out.println("yes");
} else {
System.out.println("No");
}
}
}
0r
import java.text.ParseException;
import java.util.Scanner;
Or
import java.util.Scanner;
public class Main {
System.out.println(s);
}
}
{
int r;
if(s.contains("a") || s.contains("A") && s.contains("e") ||
s.contains("E") && s.contains("i") || s.contains("I") && s.contains("o") ||
s.contains("O") && s.contains("u") || s.contains("U") )
r=1;
else
r=-1;
return r;
}
}
Or
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Scanner;
public class Main {
public static void main(String arg[])
{
Scanner sc=new Scanner(System.in);
boolean s=UserMainCode.common(st);
if(s==true){
System.out.println("yes");
}
else
System.out.println("no");
}
}
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collections;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.StringTokenizer;
return f;
}
}
Given a method with string input. Write code to remove vowels from even position in
the string.
The return type of the output is string after removing all the vowels.
Create a Main class which gets string as an input and call the static
method removeEvenVowels present in the UserMainCode.
Sample Input 1:
commitment
Sample Output 1:
cmmitmnt
Sample Input 2:
capacity
Sample Output 2:
cpcty
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Scanner;
String st=sc.next();
String s=UserMainCode.common(st);
System.out.println(s);
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collections;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.HashMap;
import java.util.HashSet;
char arr[]=sd.toCharArray();
boolean f=false;
String st="";
for(int i=0;i<sd.length();i++){
if(arr[i]!='a'&&arr[i]!='e'&&arr[i]!='i'&&arr[i]!='o'&&arr[i]!='u')
String s=String.valueOf(arr[i]);
st=st+s;
return st;
or
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String s1 = sc.next();
StringBuffer sb1 = new StringBuffer();
for (int i = 0; i < s1.length(); i++) {
if ((i % 2) == 0) {
sb1.append(s1.charAt(i));
} else if ((i % 2) != 0)
{
if (s1.charAt(i) != 'a' && s1.charAt(i) != 'e'
&& s1.charAt(i) != 'i' && s1.charAt(i) != 'o'
&& s1.charAt(i) != 'u')
{
if (s1.charAt(i) != 'A' && s1.charAt(i) != 'E'
&& s1.charAt(i) != 'I' && s1.charAt(i) != 'O'
&& s1.charAt(i) != 'U') {
sb1.append(s1.charAt(i));
}
}
}
}
System.out.println(sb1.toString());
}
}
Or
import java.text.ParseException;
import java.util.Scanner;
public class Main {
{
String r="";
int l=s.length();
StringBuffer sb=new StringBuffer();
for(int i=0;i<l;i++)
{
if(i%2==0)
sb.append(s.charAt(i));
else if(i%2!=0)
{
}
}
}
r=sb.toString();
return r;
}
}
Write a program to read an int array of odd length, compare the first, middle and the
last elements in the array and return the largest. If there is only one element in the
array return the same element.
import java.io.*;
import java.util.*;
int s = sc.nextInt();
a[i] = sc.nextInt();
}
for (int i = 0; i < a.length; i++) {
first = a[0];
System.out.println(first);
System.out.println(mid);
System.out.println(last);
Or
import java.util.Scanner;
public class Main {
A Company wants to give away bonus to its employees. You have been assigned as the
programmer to automate this process. You would like to showcase your skills by creating a
quick prototype. The prototype consists of the following steps:
1. Read Employee details from the User. The details would include id, DOB (date of
birth) and salary in the given order. The datatype for id is integer, DOB is string and
salary is integer.
2. You decide to build two hashmaps. The first hashmap contains employee id as
key and DOB as value, and the second hashmap contains same employee ids as key
and salary as value.
3. If the age of the employee in the range of 25 to 30 years (inclusive), the employee
should get bonus of 20% of his salary and in the range of 31 to 60 years (inclusive)
should get 30% of his salary. store the result in TreeMap in which Employee ID as
key and revised salary as value. Assume the age is caculated based on the date 01-09-
2014. (Typecast the bonus to integer).
4. Other Rules:
a. If Salary is less than 5000 store -100.
b. If the age is less than 25 or greater than 60 store -200.
c. a takes more priority than b i.e both if a and b are true then store -100.
5. You decide to write a function calculateRevisedSalary which takes the above
hashmaps as input and returns the treemap as output. Include this function in class
UserMainCode.
Create a Class Main which would be used to read employee details in step 1 and build the
two hashmaps. Call the static method present in UserMainCode.
Input and Output Format:
Input consists of employee details. The first number indicates the size of the employees. The
next three values indicate the employee id, employee DOB and employee salary. The
Employee DOB format is “dd-mm-yyyy”
Output consists of a single string.
Refer sample output for formatting specifications.
Sample Input 1:
2
1010
20-12-1987
10000
2020
01-01-1985
14400
Sample Output 1:
1010
12000
2020
17280
import java.text.ParseException;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
import java.util.StringTokenizer;
import java.util.TreeMap;
public class Sum {
public static void main(String[] args) throws ParseException {
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
String s[]=new String[n];
String ss="01-09-2014";
StringTokenizer st=new StringTokenizer(ss,"-");
int ds=0,ms=0,ys=0;
while(st.hasMoreTokens()){
ds=Integer.parseInt(st.nextToken());
ms=Integer.parseInt(st.nextToken());
ys=Integer.parseInt(st.nextToken());
}
int ids[]=new int[n];
HashMap<Integer,String> h1=new HashMap<Integer, String>();
HashMap<Integer,Integer> h2=new HashMap<Integer, Integer>();
TreeMap<Integer,Integer> t1=new TreeMap<Integer, Integer>();
for(int i=0;i<n;i++){
int id=sc.nextInt();
ids[i]=id;
s[i]=sc.next();
int sal=sc.nextInt();
h1.put(id,s[i]);
h2.put(id,sal);
}
int d=0,y=0,m=0,sals=0;
for(int i=0;i<s.length;i++){
StringTokenizer st1=new StringTokenizer(s[i],"-");
while(st1.hasMoreTokens()){
d=Integer.parseInt(st1.nextToken());
m=Integer.parseInt(st1.nextToken());
y=Integer.parseInt(st1.nextToken());
}
int age=0;
if((d<ds || m<ms) && y==ys){
age=(ys-y)-1;
}
else{
age=ys-y;
}
System.out.println(age);
if(age>25 && age<=30){
sals=h2.get(ids[i]);
sals=sals+sals/5;
}
else if(age>30 && age<=60){
sals=h2.get(ids[i]);
sals=sals+((sals*3)/10);
}
t1.put(ids[i],sals);
}
for(Map.Entry<Integer,Integer> e:t1.entrySet()){
System.out.println(e.getKey()+"\n"+e.getValue());
}
}
}
33. Password
Validation Rule:
Atleast 8 characters
Atleast 1 number(1,2,3...)
Atleast 1 special character(@,#,%...)
Atleast 1 alphabet(a,B...)
Sample Output 1:
Valid
Sample Input 2:
punitha3
Sample Output 2:
Invalid
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Set;
import java.util.StringTokenizer;
import java.util.TreeSet;
public class UserMainCode {
public static boolean remove(String s){
String sn="aeiou";
boolean f;
if(s.length()>=8){
if(s.matches(".*[a-z].*")&&s.matches(".*[A-Z].*")&&s.matches(".*[0-
9].*")&&s.matches(".*[$#@!&].*"))
f=true;
else
f=false;
}
else
f=false;
return f;
}
}
or
import java.text.ParseException;
import java.util.*;
public class Main {
public static void main(String[] args) throws ParseException {
Scanner sc = new Scanner(System.in);
String s = sc.next();
if (s.matches("((?=.*[0-9])(?=.*[a-zA-Z])(?=.*[@#$!]).{8,})")) {
System.out.println("valid");
} else {
System.out.println("Not Valid");
}
}
}
Write a program to read a string containing multiple words find the first and last
words, if they are same, return the length and if not return the sum of length of the two
words.
Create a Class Main which would be used to accept the string and call the static
method present in UserMainCode.
Sample Input 1:
This is Cognizant Academy
Sample Output 1:
11
Sample Input 2:
Hello World Hello
Sample Output 2:
5
import java.text.ParseException;
import java.util.*;
}
}
import java.util.StringTokenizer;
}
}
Write a program to accept an int array as input, and calculate the median of the same.
The total number count is even, Median will be the average of two middle numbers,
After calculating the average, round the number to nearest integer.
Create a Class Main which would be used to accept the integer array and call the static
method present in UserMainCode.
Input consists of a an integer which denotes the size of the array followed by the array
of integers.
Output consists of a integer.
Refer sample output for formatting specifications.
Sample Input 1:
7
1
2
1
4
7
1
2
Sample Output 1:
2
Sample Input 2:
6
52
51
81
84
60
88
Sample Output 2:
71
import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int s = sc.nextInt();
int a[] = new int[s];
int mid;
for (int i = 0; i < s; i++) {
a[i] = sc.nextInt();
}
Arrays.sort(a);
if (s % 2 != 0) {
mid = a[(s - 1) / 2];
} else {
mid = Math.round((a[s / 2] + a[(s / 2) - 1]) / 2);
}
System.out.println(mid);
}
}
Or
import java.util.Scanner;
public class Main {
import java.util.Arrays;
{
int n,r,n1,l;
Arrays.sort(a);
if(a.length%2!=0)
{
r=a[a.length/2];
}
else
{
l=a.length;
n=a[l/2];
n1=a[(l/2)-1];
r=(int)Math.ceil(((n+n1)/2.00));
}
return r;
}
}
Write a program to read a string that contains a sentence and read a word. Check the
number of occurances of that word in the sentence.
Include a class UserMainCode with a static method countWords which accepts the
two strings. The return type is the integer giving the count.
Create a Class Main which would be used to accept the two strings and call the static
method present in UserMainCode.
Sample Input 1:
Hello world Java is best programming language in the world
world
Sample Output 1:
2
Sample Input 2:
hello world
World
Sample Output 2:
0
import java.util.Arrays;
import java.util.Scanner;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String s1 = sc.nextLine();
String s3 = sc.next();
int count = 0;
StringTokenizer st = new StringTokenizer(s1, " ");
while (st.hasMoreElements()) {
String s2 = st.nextToken();
if (s2.equals(s3)) {
count++;
}
}
System.out.println(count);
}
}
import java.util.Scanner;
System.out.println(UserMainCode.empdis(s,f));
}
}
import java.util.ArrayList;
import java.util.Collections;
import java.util.StringTokenizer;
{
ArrayList<String> r=new ArrayList<String>();
int n;
return n;
}
}
Given a string, startIndex and length, write a program to extract the substring from
right to left. Assume the last character has index 0.
second argument corresponds to the startIndex and the third argument corresponds to
the length.
Create a class Main which would get a String and 2 integers as input and call the
static method reverseSubstring present in the UserMainCode.
Sample Input:
rajasthan
2
3
Sample Output:
hts
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Scanner;
public class Main {
public static void main(String arg[])
{
Scanner sc=new Scanner(System.in);
String st=sc.next();
int n1=sc.nextInt();
int n2=sc.nextInt();
}
}
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collections;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.HashMap;
import java.util.HashSet;
String st="";
String st1="";
StringBuffer sb=new StringBuffer(sd);
StringBuffer sb1=new StringBuffer();
sb.reverse();
System.out.println(sb);
sb1.append(sb.substring(n1,n1+n2));
return sb1.toString();
}
}
or
import java.util.Arrays;
import java.util.Scanner;
import java.util.StringTokenizer;
Given a date as a string input in the format dd-mm-yy, write a program to extract the
month and to print the month name in upper case.
Create a class Main which would get the String as input and call the static
method getMonthName present in the UserMainCode.
The month names are {JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE,
JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, DECEMBER}
Sample Input:
01-06-82
Sample Output:
JUNE
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Scanner;
public class Main {
public static void main(String arg[]) throws ParseException
{
Scanner sc=new Scanner(System.in);
String st=sc.next();
String s=UserMainCode.common(st);
System.out.println(s);
}
}
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collections;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.HashMap;
import java.util.HashSet;
String st="";
SimpleDateFormat sf=new SimpleDateFormat("dd-MM-yy");
Date d=sf.parse(sd);
SimpleDateFormat sf1=new SimpleDateFormat("MMMM");
st=sf1.format(d);
return st.toUpperCase();
}
}
or
package gokul.javarevsi.dates;
import java.io.*;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
The return type is an ArrayList with elements from 2,6 and 8th index position .Array
index starts from position 0.
Create a Main class which gets two array list of size 5 as input and call the static
methodsortMergedArrayList present in the UserMainCode.
Sample Input 1:
3
1
17
11
19
5
2
7
6
20
Sample Output 1:
3
11
19
Sample Input 2:
1
2
3
4
5
6
7
8
9
10
Sample Output 2:
3
7
9
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Scanner;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
ArrayList<Integer> al1 = new ArrayList<Integer>();
ArrayList<Integer> al2 = new ArrayList<Integer>();
ArrayList<Integer> al3 = new ArrayList<Integer>();
for (int i = 0; i < a; i++) {
al1.add(sc.nextInt());
}
for (int i = 0; i < a; i++) {
al2.add(sc.nextInt());
}
al1.addAll(al2);
System.out.println(al1);
Collections.sort(al1);
System.out.println(al1);
for (int i = 0; i < al1.size(); i++) {
if (i == 2 || i == 6 || i == 8) {
al3.add(al1.get(i));
}
}
System.out.println(al3);
}
}
Or
import java.util.ArrayList;
import java.util.Scanner;
}
}
import java.util.ArrayList;
import java.util.Collections;
{
ArrayList<Integer> r=new ArrayList<Integer>();
ArrayList<Integer> res=new ArrayList<Integer>();
r.addAll(a);
r.addAll(b);
Collections.sort(r);
res.add(r.get(2));
res.add(r.get(6));
res.add(r.get(8));
return res;
}
}
Include a class UserMainCode with a static method fetchUserName which accepts the
string. The return type is the modified string.
Create a Class Main which would be used to accept the string and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of a string.
Output consists of string.
Refer sample output for formatting specifications.
Sample Input 1:
[email protected]
Sample Output 1:
admin
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Scanner;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String s1 = sc.nextLine();
StringTokenizer st = new StringTokenizer(s1, "@");
String name = st.nextToken();
System.out.println(name);
}
}
41. ID Validation
Write a program to get two string inputs and validate the ID as per the specified
format.
Create a class Main which would get the input and call the static
method validateIDLocations present in the UserMainCode.
Sample Input 2:
CTS-hyd-123
hyderabad
Sample Output 2:
Invalid id
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Scanner;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String s1 = sc.nextLine();
String s2 = sc.next();
StringTokenizer st = new StringTokenizer(s1, "-");
while (st.hasMoreElements()) {
String id = st.nextToken();
String loc = st.nextToken();
String xxx = st.nextToken();
if (loc.matches(s2.substring(0, 3)) && xxx.length() == 4) {
System.out.println("Valid");
} else {
System.out.println("Invalid");
}
}
}
}
42. Mastering Hashmap
You have recently learnt about hashmaps and in order to master it, you try and use it
in all of your programs.
Your trainer / teacher has given you the following exercise:
1. Read 2n numbers as input where the first number represents a key and second one
as value. Both the numbers are of type integers.
2. Write a function getAverageOfOdd to find out average of all values whose keys
are represented by odd numbers. Assume the average is an int and never a decimal
number. Return the average as output. Include this function in class UserMainCode.
Create a Class Main which would be used to read 2n numbers and build the hashmap.
Call the static method present in UserMainCode.
Input and Output Format:
Input consists of a 2n+ 1 integers. The first integer specifies the value of n (essentially
the hashmap size). The next pair of n numbers denote the key and value.
Output consists of an integer representing the average.
Refer sample output for formatting specifications.
Sample Input 1:
4
2
34
1
4
5
12
4
22
Sample Output 1:
8
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Scanner;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int s = sc.nextInt();
int sum = 0, avg = 0, count = 0, total;
HashMap<Integer, Integer> hm = new HashMap<Integer, Integer>();
for (int i = 0; i < s; i++) {
hm.put(sc.nextInt(), sc.nextInt());
}
System.out.println(hm);
Iterator<Integer> itr = hm.keySet().iterator();
{
while (itr.hasNext()) {
int j = itr.next();
if (j % 2 != 0) {
sum += hm.get(j);
count++;
}
}
total = sum / count;
System.out.println(total);
}
}
}
43. Test Vowels
Write a program to read a string and check if given string contains exactly five vowels
in any order. Print “Yes” if the condition satisfies, else print “No”.
Assume there is no repetition of any vowel in the given string and all characters are
lowercase.
Include a class UserMainCode with a static method testVowels which accepts a
string. The return type (Integer) should return 1 if all vowels are present, else return 2.
Create a Class Main which would be used to accept a string and call the static method
present in UserMainCode.
Sample Input 2:
cbisouzze
Sample Output 2:
No
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Scanner;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String s = sc.nextLine();
String s2 = s.replaceAll("[^aeiouAEIOU]", "");
System.out.println(s2);
HashSet<Character> hs = new HashSet<Character>();
for (int i = 0; i < s2.length(); i++) {
hs.add(s2.charAt(i));
}
System.out.println(hs);
if (hs.size() == 5) {
System.out.println("yes");
} else {
System.out.println("No");
}
}
}
{
System.out.println("Valid");
} else {
System.out.println("Invalid");
}
}
}
45. Average of Prime Locations
Write a program to read an integer array and find the average of the numbers located
on the Prime location(indexes).
Round the avarage to two decimal places.
Assume that the array starts with index 0.
Include a class UserMainCode with a static method averageElements which accepts a
single integer array. The return type (double) should be the average.
Create a Class Main which would be used to accept Input array and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of n+1 integers. The first integer corresponds to n, the number of
elements in the array. The next 'n' integers correspond to the elements in the array.
Output consists of a single Double value.
Refer sample output for formatting specifications.
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Scanner;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int flag = 0, sum = 0;
double tot = 0, count = 0.0;
int a[] = new int[8];
for (int i = 0; i < 8; i++) {
a[i] = sc.nextInt();
}
for (int i = 0; i < 8; i++) {
flag = 0;
for (int j = 1; j <= i; j++) {
if (i % j == 0) {
flag++;
}
}
if (flag == 2) {
sum = sum + a[i];
count++;
}
}
tot = (double) (sum / count);
System.out.println(tot);
}
}
Write a program to read an integer array and return the middle element in the array. The size
of the array would always be odd.
Include a class UserMainCode with a static method getMiddleElement which accepts a
single integer array. The return type (integer) should be the middle element in the array.
Create a Class Main which would be used to accept Input array and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of n+1 integers. The first integer corresponds to n, the number of elements in
the array. The next 'n' integers correspond to the elements in the array.
Output consists of a single Integer value.
Refer sample output for formatting specifications.
Sample Input 1:
5
1
5
23
64
9
Sample Output 1:
23
import java.util.Scanner;
}
}
public class UserMainCode {
Given a string input, write a program to replace every appearance of the word "is" by
"is not".
If the word "is" is immediately preceeded or followed by a letter no change should be
made to the string .
Create a class Main which would get a String as input and call the static
method negativeString present in the UserMainCode.
Sample Input 1:
This is just a misconception
Sample Output 1:
This is not just a misconception
Sample Input 2:
Today is misty
Sample Output 2:
Today is not misty
Write a program to find out sum of common elements in given two arrays. If no common
elements are found print - “No common elements”.
Sample Input 1:
2
3
Sample Output 1:
Sample Input 2:
12
31
Sample Output 2:
No common elements
import java.util.Scanner;
int n=sc.nextInt();
int m=sc.nextInt();
for(int i=0;i<n;i++){
a[i]=sc.nextInt();
for(int i=0;i<m;i++){
b[i]=sc.nextInt();
if(sum==0){
else{
System.out.println(sum);
int sum=0;
for(int i=0;i<a.length;i++){
for(int j=0;j<b.length;j++){
if(a[i]==b[j]){
sum=sum+b[j];
}
return sum;
Sample Input 1:
ab2
Sample Output 1:
TRUE
Sample Input 2:
72CAB
Sample Output 2:
FALSE
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String s1 = sc.next();
StringBuffer sb = new StringBuffer();
String s2 = sb.append(s1.substring(0, 1)).toString();
System.out.println(s2);
if (s2.matches("[a-z]{1}")) {
System.out.println("true");
} else {
System.out.println("False");
}
}
}
Write a program to read a string and return the length of the largest "chunk" in the string.
A chunk is a repetition of same character 2 or more number of times. If the given string doest
not contain any repeated chunk of characters return -1.
Include a class UserMainCode with a static method getLargestSpan which accepts the
string. The return type is the integer.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
This place is soooo good
Sample Output 1:
4
import java.util.Scanner;
String s=sc.nextLine();
if(UserMainCode.getLargestSpan(s)== -1)
System.out.println("No Chunks");
}
else{
System.out.println(UserMainCode.getLargestSpan(s));
import java.util.StringTokenizer;
int max=0;
while(st.hasMoreTokens()){
String s=st.nextToken();
for(int i=0;i<sb.length();i++){
int count=0;
for(int j=i+1;j<sb.length();j++){
if(sb.charAt(i)==sb.charAt(j)){
count++;
if(count>max){
max=count+1;
}
}
if(max==0){
return -1;
else{
return max;
Or
int r=UserMainCode.getstring(s);
System.out.println(r);
import java.util.StringTokenizer;
int c=0,max=0,lar=0;
if(c>max)
{
max=c+1;
lar=v.length();
}
}}
if(max>2)
return max;
else
return -1;
For a given double number with atleast one decimal value, Write a program to compute the
number of digits before and after the decimal point in the following format –
noOfDigitsBeforeDecimal:noOfDigitsAfterDecimal.
Note: Ignore zeroes at the end of the decimal (Except if zero is the only digit after decimal.
Refer Example 2 and 3)
Include a class UserMainCode with a static method findNoDigits which accepts the decimal
value. The return type is string.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
843.21
Sample Output 1:
3:2
Sample Input 2:
20.130
Sample Output 2:
2:2
Sample Input 3:
20.130
Sample Output 3:
2:2
import java.io.*;
import java.util.Scanner;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
double a = sc.nextDouble();
String b = String.valueOf(a);
StringBuffer sb = new StringBuffer();
StringTokenizer st = new StringTokenizer(b, ".");
String c = st.nextToken();
String d = st.nextToken();
System.out.println(c);
System.out.println(d);
int x = c.length();
int y = d.length();
sb.append(x).append(':').append(y);
System.out.println(sb);
}
}
Or
public class Main {
String r=UserMainCode.getstring(s);
System.out.println(r);
}
String s1,s2;
}
}
Write a program to read a string and an integer and return a string based on the below rules.
If input2 is equal or greater than 3 then repeat the first three character of the String by given
input2 times, separated by a space.
If input2 is 2 then repeat the first two character of String two times separated by a space,
If input2 is 1 then return the first character of the String.
Include a class UserMainCode with a static method repeatString which takes a string &
integer and returns a string based on the above rules.
Create a Class Main which would be used to accept Input string and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string and integer.
Output consists of a string.
Refer sample output for formatting specifications.
Sample Input 1:
COGNIZANT
4
Sample Output 1:
COG COG COG COG
Sample Input 2:
COGNIZANT
2
Sample Output 2:
CO CO
package Arrayy;
import java.util.Scanner;
Write a program to check whether the given input number is a Kaprekar number or not.
Note : A positive whole number ‘n’ that has ‘d’ number of digits is squared and split into two
pieces, a right-hand piece that has ‘d’ digits and a left-hand piece that has remaining ‘d’ or ‘d-
1’ digits. If the sum of the two pieces is equal to the number, then ‘n’ is a Kaprekar number.
Example 1:
Input1:9
Example 2:
Input1:45
Hint:
45^2 = 2025, right-hand piece of 2025 = 25 and left hand piece of 2025 = 20
Create a class Main which would get the an Integer as input and call the static
method getKaprekarNumber present in the UserMainCode.
Output consists of a single string that is either “Kaprekar Number” or “Not A Kaprekar
Number”
Sample Input 1:
Sample Output 1:
Kaprekar Number
Sample Input 2:
45
Sample Output 2:
Kaprekar Number
Sample Input 3:
Sample Output 3:
import java.io.*;
import java.util.Scanner;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int x = 0, y = 0, z = 0;
int b = a * a;
String c = String.valueOf(b);
int d = c.length();
if (d == 2) {
x = b % 10;
y = b / 10;
z = x + y;
}
else if (d == 4) {
x = b % 100;
y = b / 100;
z = x + y;
}
System.out.println(z);
if (z == a) {
System.out.println("Kaperakar number");
} else {
System.out.println("Not a Kaperakar Number");
}
}
}
54. Start Case
Write a program to read a sentence in string variable and convert the first letter of each word
to capital case. Print the final string.
Note: - Only the first letter in each word should be in capital case in final string.
Sample Output:
import java.util.Scanner;
import java.util.StringTokenizer;
Write code to get two strings as input and If strings are of same length simply append them
together and return the final string. If given strings are of different length, remove starting
characters from the longer string so that both strings are of same length then append them
together and return the final string.
Include a class UserMainCode with a static method concatstring which accepts two string
input.
The return type of the output is a string which is the concatenated string.
Create a class Main which would get the input and call the static
method concatstring present in the UserMainCode.
Sample Input 1:
Hello olleH
hi
Sample Output 1:
lohi
Sample Input 2:
Hello
Delhi
Sample Output 2:
HelloDelhi
import java.util.Scanner;
import java.util.StringTokenizer;
Write a program to read a string and count the number of words present in it.
Include a class UserMainCode with a static method countWord which accepts the string.
The return type is the integer giving out the count of words.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
Today is Sunday
Sample Output 1:
3
import java.util.Scanner;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String s1 = sc.nextLine();
int count = 0;
StringTokenizer st = new StringTokenizer(s1, " ");
while (st.hasMoreElements()) {
String s2 = st.nextToken();
count++;
}
System.out.println(count);
}
}
Write a program to read a integer array, find the largest difference between adjacent elements
and display the index of largest difference.
EXAMPLE:
input1: {2,4,5,1,9,3,8}
output1: 4 (here largest difference 9-1=8 then return index of 9 ie,4)
Include a class UserMainCode with a static method checkDifference which accepts the
integer array. The return type is integer.
Create a Class Main which would be used to accept the integer array and call the static
method present in UserMainCode.
Sample Input 1:
7
2
4
5
1
9
3
8
Sample Output 1:
4
import java.util.Scanner;
int n=sc.nextInt();
for(int i=0;i<n;i++){
a[i]=sc.nextInt();
System.out.println(UserMainCode.checkDifference(a));
int max=0,p=0;
for(int i=0;i<a.length-1;i++){
int j=i+1;
int t=a[i]-a[j];
if(t>max)
max=t;
p=i;
return p;
Write a program to validate the Date of Birth given as input in String format (MM/dd/yyyy)
as per the validation rules given below. Return true for valid dates else return false.
1. Value should not be null
2. month should be between 1-12, date should be between 1-31 and year should be a four
digit number.
Include a class UserMainCode with a static method ValidateDOB which accepts the string.
The return type is TRUE / FALSE.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
12/23/1985
Sample Output 1:
TRUE
Sample Input 2:
31/12/1985
Sample Output 2:
FALSE
import java.io.*;
import java.util.*;
59. Duplicates
GIven three integers (a,b,c) find the sum. However, if one of the values is the same as
another, both the numbers do not count towards the sum and the third number is returned as
the sum.
Include a class UserMainCode with a static method getDistinctSum which accepts three
integers and returns integer.
Create a Class Main which would be used to accept three integers and call the static method
present in UserMainCode.
Sample Input 1:
1
2
1
Sample Output 1:
2
Sample Input 2:
1
2
3
Sample Output 2:
6
import java.io.*;
import java.util.*;
Write a program to input a person's name in the format "FirstName LastName" and return the
person name in the following format - "LastName, InitialOfFirstName".
Include a class UserMainCode with a static method nameFormatter which accepts a string.
The return type (string) should return the expected format.
Create a Class Main which would be used to accept Input String and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string that corresponds to a Person's name.
Output consists of a string(person's name in expected format).
Refer sample output for formatting specifications.
Sample Input :
Jessica Miller
Sample Output:
Miller, J
import java.io.*;
import java.util.*;
}
Or
public class Main {
String r=UserMainCode.getstring(s);
System.out.println(r);
}}
String s1,s2;
StringTokenizer st=new StringTokenizer(s," ");
s1=st.nextToken();
s2=st.nextToken();
StringBuffer sb=new StringBuffer(s2);
String r=sb.append(",").append(s1.substring(0,1)).toString();
return r;
}
}
Include a class UserMainCode with a static method removeElements which accepts a string
array, the number of elements in the array and an integer. The return type (integer) should
return the size of the final array as output.
Create a Class Main which would be used to accept Input String array and a number and call
the static method present in UserMainCode.
Assume maximum length of array is 20.
Input and Output Format:
Input consists of a integers that corresponds to n, followed by n strings and finally m which
corresponds to the length value.
Output consists of a single Integer.
Refer sample output for formatting specifications.
Sample Input 1:
bb
ccc
ddd
Sample Output 1:
4
import java.util.*;
public class ClassSet28 {
public static int StringsNotOfGivenLength(List<String> l1,String s1){
int n1=s1.length();
int c=0;
for(int i=0;i<l1.size();i++)
{
int n2=l1.get(i).length();
if(n1!=n2)
c++;
}
return c;
}
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
System.out.println("enter the no.of elements:");
int n=s.nextInt();
List<String> l1=new ArrayList<String>();
for(int i=0;i<n;i++)
l1.add(s.next());
System.out.println("enter the input string:");
String s1=s.next();
System.out.println(StringsNotOfGivenLength(l1,s1));
}
}
Or
public class Main {
int nt=sc.nextInt();
int r=UserMainCode.getstring(s,nt);
System.out.println(r);
}}
int r=0;
for(int i=0;i<s.length;i++)
{
if(s[i].length()!=nt)
r++;
}
return r;
}
}
Include a class UserMainCode with a static method reshape which accepts a string and a
character. The return type (String) should return the final string.
Create a Class Main which would be used to accept a string and a character, and call the
static method present in UserMainCode.
Rabbit
Sample Output:
t-i-b-b-a-R
public class Main {
Or
import java.util.Scanner;
public class Main {
String r=UserMainCode.getstring(s,sym);
System.out.println(r);
}}
}
String r;
r=sb.substring(0,sb.length()-1);
return r;
}
}
Write a program that construts a hashmap and returns the value corresponding to the largest
key.
Include a class UserMainCode with a static method getMaxKeyValue which accepts a
string. The return type (String) should be the value corresponding to the largest key.
Create a Class Main which would be used to accept Input string and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of 2n+1 values. The first value corresponds to size of the hashmap. The next n
pair of numbers equals the integer key and value as string.
Output consists of a string which is the value of largest key.
Refer sample output for formatting specifications.
Sample Input 1:
3
12
amron
9
Exide
.0
7
SF
Sample Output 1:
Amron
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Scanner;
System.out.println(getvalues(hm));
}
public static String getvalues(HashMap<Integer, String> hm) {
int b=0,max=0;
String s1=new String();
Iterator<Integer> i=hm.keySet().iterator();
while(i.hasNext())
{
b=i.next();
if(b>max)
{
max=b;
s1=hm.get(b);
}
}
return s1;
}
}
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
for(int i=0;i<n;i++)
re.put(sc.nextInt(), sc.next());
String r=UserMainCode.getstring(re);
System.out.println(r);
}}
import java.util.Map;
import java.util.Set;
int m=0;
String r="";
Set<Integer> key=re.keySet();
for(Integer l:key)
{
if(l>m)
{
m=l;
r=re.get(l);
}
}
return r;
}
65. Scores
Write a program to read a integer array of scores, if 100 appears at two consecutive locations
return true else return false.
Include a class UserMainCode with a static method checkScores which accepts the integer
array. The return type is boolean.
Create a Class Main which would be used to accept the integer array and call the static
method present in UserMainCode.
Sample Input 1:
3
1
100
100
Sample Output 1:
TRUE
Sample Input 2:
3
100
1
100
Sample Output 2:
FALSE
import java.io.*;
import java.util.*;
int s = sc.nextInt();
a[i] = sc.nextInt();
System.out.println("true");
return;
System.out.println("True");
return;
else {
System.out.println("False");
return;
Or
import java.util.Scanner;
}}
String r;
int c=0;
for(int i=0;i<a.length-1;i++)
{
if(a[i]==a[i+1])
c++;
}
if(c==1)
r="TRUE";
else
r="FALSE";
return r;
}
}
Write a program to read a string of even length and to fetch two middle most characters from
the input string and return it as string output.
Include a class UserMainCode with a static method getMiddleChars which accepts a string
of even length as input . The return type is a string which should be the middle characters of
the string.
Create a class Main which would get the input as a string and call the static
method getMiddleChars present in the UserMainCode.
Sample Output 1:
hi
Sample Input 1:
Hell
Sample Output 1:
el
import java.io.*;
import java.util.*;
String s1 = sc.next();
if (s1.length() % 2 == 0) {
if (s1.length() > 2) {
System.out.println(s1.substring(s1.length() / 2 - 1,
s1.length() / 2 + 1));
Or
import java.util.Scanner;
}}
String r;
if(s.length()%2==0)
r=s.substring((s.length()/2)-1,(s.length()/2)+1);
else
r="Please enter even no. of. characters";
return r;
}
}
Given a method with a password in string format as input. Write code to validate the
password using following rules:
If the password is as per the given rules return 1 else return -1.If the return value is 1 then
print valid password else print as invalid password.
Create a Main class which gets string as an input and call the static
method validatePassword present in theUserMainCode.
Sample Input 2:
#@6Don
Sample Output 2:
Valid password
import java.io.*;
import java.util.*;
String s1 = sc.next();
if (s1.matches("((?=.*[0-9])(?=.*[#@$])(?=.*[a-z]).{6,20})")) {
System.out.println("Valid Password");
} else {
Or
public class Main {
}}
else
return -1;
}
}
68. Anagrams
Write a program to read two strings and checks if one is an anagram of the other.
An anagram is a word or a phrase that can be created by rearranging the letters of another
given word or phrase. We ignore white spaces and letter case. All letters of 'Desperation' can
be rearranged to the phrase 'A Rope Ends It'.
Include a class UserMainCode with a static method checkAnagram which accepts the two
strings. The return type is boolean which is TRUE / FALSE.
Create a Class Main which would be used to accept the two strings and call the static method
present in UserMainCode.
Sample Input 2:
Desperation
A Rope Ends It
Sample Output 2:
TRUE
import java.util.Scanner;
public class Main {
}}
import java.util.Set;
import java.util.TreeSet;
for(int i=0;i<s1.length();i++)
al.add(String.valueOf(s1.charAt(i)));
for(int i=0;i<s2.length();i++)
al1.add(String.valueOf(s2.charAt(i)));
if(al.equals(al1))
return true;
else
return false;
}
}
Write a program to read a string and check if it complies to the pattern 'CPT-XXXXXX'
where XXXXXX is a 6 digit number. If the pattern is followed, then print TRUE else print
FALSE.
Include a class UserMainCode with a static method CheckID which accepts the string. The
return type is a boolean value.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
CPT-302020
Sample Output 1:
TRUE
Sample Input 2:
CPT123412
Sample Output 2:
FALSE
import java.io.*;
import java.util.*;
String s1 = sc.next();
if (s1.matches("[CPT-]{4}[0-9]{6}"))
System.out.println("True");
}
else
System.out.println("False");
Or
import java.util.Scanner;
public class Main {
System.out.println(UserMainCode.getstring(s1));
}}
Write a program that reads details about number of admissions per year of a particular
college, return the year which had maximum admissions. The details are stored in an arraylist
with the first index being year and next being admissions count.
Include a class UserMainCode with a static method getYear which accepts a arraylist. The
return type is an integer indicating the year of max admissions.
Create a Class Main which would be used to accept Input string and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of 2n+1 values. The first value corresponds to size of the data (year &
admissions). The next n pair of numbers contains the year and admissions count.
Output consists of an integer as mentioned in the problem statement.
Refer sample output for formatting specifications.
Sample Input 1:
4
2010
200000
2011
300000
2012
45000
2013
25000
Sample Output 1:
2011
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Scanner;
System.out.println(getvalues(hm));
}
public static int getvalues(HashMap<Integer,Integer> hm) {
int b=0,max=0,c=0,d=0;
String s1=new String();
Iterator<Integer> i=hm.keySet().iterator();
while(i.hasNext())
{
b=i.next();
c=hm.get(b);
if(c>max)
{
max=c;
d=b;
}
}
return d;
}
}
Or
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class Main {
System.out.println(UserMainCode.getstring(stud));
}}
import java.util.Map;
import java.util.Set;
public class UserMainCode {
public static String getstring(Map<String, Integer> stud)
{ int m=0;
String s="";
Set<String> key=stud.keySet();
for(String l:key)
{
if(stud.get(l)>m)
{
m=stud.get(l);
s=l;
}
}
return s;
}
}
71. Grade Calculator
A School wants to give assign grades to its students based on their marks. You have been
assigned as the programmer to automate this process. You would like to showcase your skills
by creating a quick prototype. The prototype consists of the following steps:
Read student details from the User. The details would include name, mark in the given
order. The datatype for name is string, mark is float.
You decide to build a hashmap. The hashmap contains name as key and mark as value.
BUSINESS RULE:
1. If Mark is less than 60, then grade is FAIL.
2. If Mark is greater than or equal to 60, then grade is PASS.
Note: FAIL/PASS should be in uppercase.
Store the result in a new Hashmap with name as Key and grade as value.
4. You decide to write a function calculateGrade which takes the above hashmap as input
and returns the hashmap as output. Include this function in class UserMainCode.
Create a Class Main which would be used to read student details in step 1 and build the
hashmap. Call the static method present in UserMainCode.
Input consists of student details. The first number indicates the size of the students. The next
two values indicate the name, mark.
Sample Input 1:
3
Avi
76.36
Sunil
68.42
Raja
36.25
Sample Output 1:
Avi
PASS
Sunil
PASS
Raja
FAIL
import java.util.*;
public class ClassSeT23 {
public static void main(String[] args) {
Map<String, Integer> m1=new HashMap<String, Integer>();
m1.put("abc", 90);
m1.put("efg", 50);
m1.put("mno", 60);
m1.put("rst", 75);
m1.put("xyz", 35);
System.out.println(examResult(m1));
}
public static Map<String,String> examResult(Map<String, Integer> m1) {
Map<String,String> m2=new HashMap<String, String>();
String s1=new String();
String s2=new String();
int n=0;
Iterator<String> i=m1.keySet().iterator();
while(i.hasNext()){
s1=(String) i.next();
n=m1.get(s1);
if(n>=60)
s2="PASS";
else
s2="FAIL";
m2.put(s1, s2); }
return m2;
}
}
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Scanner;
public class Main {
System.out.println(UserMainCode.getstring(stud));
}}
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;
public class UserMainCode {
public static Map<String, String> getstring(Map<String, Float> stud)
{
Map<String, String> s=new LinkedHashMap<String, String>();
Set<String> key=stud.keySet();
for(String l:key)
{
if(stud.get(l)>=60)
{
s.put(l, "PASS");
}
else
s.put(l, "FAIL");
}
return s;
}
}
Given a string input, write a program to find the total number of vowels in the given string.
Include a class UserMainCode with a static method “countVowels” that accepts a String
argument and returns an int that corresponds to the total number of vowels in the given string.
Create a class Main which would get the String as input and call the static
method countVowels present in the UserMainCode.
Sample Input:
avinash
Sample Output:
3
import java.io.*;
import java.util.*;
String s1 = sc.next();
System.out.println(s1.length() - s2.length());
Or
import java.util.Scanner;
public class Main {
System.out.println(UserMainCode.getstring(s));
}}
public class UserMainCode {
public static Integer getstring(String s)
{
String s1;
s1=s.replaceAll("[aeiouAEIOU]", "");
int r=s.length()-s1.length();
return r;
}
}
Given a negative number as string input, write a program to validate the number and to print
the corresponding positive number.
Include a class UserMainCode with a static method “validateNumber” that accepts a string
argument and returns a string. If the argument string contains a valid negative number, the
method returns the corresponding positive number as a string. Else the method returns -1.
Create a class Main which would get a String as input and call the static
method validateNumber present in the UserMainCode.
Sample Input 1:
-94923
Sample Output 1:
94923
Sample Input 2:
-6t
Sample Output 2:
-1
import java.io.*;
import java.util.*;
String s1 = sc.next();
if (s1.matches("[-0-9]{1,}")) {
int s2 = Math.abs(Integer.parseInt(s1));
String s3 = String.valueOf(s2);
System.out.println(s3);
} else {
System.out.println("-1");
Or
import java.util.Scanner;
public class Main {
}}
String s1;
if(s.matches("[-0-9]{1,}"))
s1=s.replaceAll("-", "");
else
s1="-1";
return s1;
}
}
Write a program to read Date of Joining and current date as Strings and Experience as integer
and validate whether the given experience and calculated experience are the same. Print
“true” if same, else “false”.
Include a class UserMainCode with a static method calculateExperience which accepts 2
strings and an integer. The return type is boolean.
Create a Class Main which would be used to accept 2 string (dates) and an integer and call
the static method present in UserMainCode.
Input and Output Format:
Input consists of 2 strings and an integer, where the 2 strings corresponds to the date of
joining and current date, and the integer is the experience.
Output is either “true” or “false”.
Refer sample output for formatting specifications.
Sample Input 1:
11/01/2010
01/09/2014
Sample Output 1:
true
Sample Input 2:
11/06/2009
01/09/2014
Sample Output 2:
false
package gokul.javarevsi.dates;
import java.io.*;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
public class gkdate {
public static void main(String[] args) throws ParseException {
Scanner sc = new Scanner(System.in);
String s1 = sc.next();
String s2 = sc.next();
int val = sc.nextInt();
// first String Date
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
sdf.setLenient(false);
Date d1 = sdf.parse(s1);
Calendar cal = Calendar.getInstance();
cal.setTime(d1);
Date d2 = cal.getTime();
SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy");
int y1 = Integer.parseInt(sdf1.format(d2));
// Second String date
SimpleDateFormat sdf2 = new SimpleDateFormat("dd/MM/yyyy");
sdf2.setLenient(false);
Date d3 = sdf.parse(s2);
Calendar cal1 = Calendar.getInstance();
cal1.setTime(d3);
Date d4 = cal1.getTime();
SimpleDateFormat sdf3 = new SimpleDateFormat("yyyy");
int y2 = Integer.parseInt(sdf3.format(d4));
String s=sc.next();
String s1=sc.next();
int n=sc.nextInt();
System.out.println(UserMainCode.empdis(s,s1,n));
}
}
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
public class UserMainCode {
public static Boolean empdis(String d1,String d2,Integer diff) throws
ParseException
{
boolean res=false;
if(b2-b1==diff)
{
res=true;
}
else
res=false;
return res;
}
}
75. Retirement
Given an input as HashMap which contains key as the ID and dob as value of employees,
write a program to find out employees eligible for retirement. A person is eligible for
retirement if his age is greater than or equal to 60.
Create a class Main which would get the HashMap as input and call the static
method retirementEmployeeList present in the UserMainCode.
The first line of the input consists of an integer n, that corresponds to the number of
employees.
The next 2 lines of the input consists of strings that correspond to the id and dob of employee
1.
The next 2 lines of the input consists of strings that correspond to the id and dob of employee
2.
and so on...
Output consists of the list of employee ids eligible for retirement in sorted order.
Sample Input :
4
C1010
02/11/1987
C2020
15/02/1980
C3030
14/12/1952
T4040
20/02/1950
Sample Output :
[C3030, T4040]
import java.text.ParseException;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
for(int i=0;i<n;i++)
{
String s=sc.next();
String s1=sc.next();
mid.put(s, s1);
}
System.out.println(UserMainCode.empdis(mid));
}
}
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
Set<String> s1=m1.keySet();
for(String k1:s1)
{
String d=m1.get(k1);
SimpleDateFormat sdf=new
SimpleDateFormat("dd/MM/yyyy");
GregorianCalendar gc1=new GregorianCalendar();
Date dt=sdf.parse(d);
gc1.setTime(dt);
gc1.add(Calendar.YEAR, 60);
if(gc.after(gc1) || gc.equals(gc1))
{
res.add(k1);
}
}
return res;
}
}
Get a string and a positive integer n as input .The last n characters should repeat the number
of times given as second input.Write code to repeat the set of character from the given string.
Include a class UserMainCode with a static method getString which accepts a string and an
integer n as input.
Create a class Main which would get the input and call the static method getString present in
the UserMainCode.
Sample Input 1:
Cognizant
Sample Output 1:
Cognizantantantant
Sample Input 2:
myacademy
Sample Output 2:
myacademymymy
import java.io.*;
import java.util.*;
String s1 = sc.next();
int s2 = sc.nextInt();
int s3 = s1.length();
System.out.println(s4);
sb.append(s4);
System.out.println(sb);
Or
import java.util.Scanner;
public class Main {
}}
Create a class Main which would get the input as a positive integer and call the static method
sumOfSquaresOfEvenDigits present in the UserMainCode.
Sample Output 1:
100
import java.io.*;
import java.util.*;
int a = sc.nextInt();
while (a != 0) {
rem = a % 10;
if (rem % 2 == 0) {
sum += square;
}
a /= 10;
System.out.println(sum);
Or
import java.util.Scanner;
public class Main {
int n=sc.nextInt();
System.out.println(UserMainCode.getstring(n));
}}
int p=n,r,s=0;
while(p>0)
{
r=p%10;
if(r%2==0)
s=s+(r*r);
p=p/10;
}
return s;
}
If all the conditions are satisifed then print TRUE else print FALSE.
Include a class UserMainCode with a static method validate which accepts the string. The
return type is the boolean formed based on rules.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
vR4u
Sample Output 1:
TRUE
Sample Input 2:
vRau
Sample Output 2:
FALSE
Sample Input 3:
vrau
Sample Output 3:
FALSE
import java.io.*;
import java.util.*;
String s1 = sc.next();
if (s1.matches("[a-zA-Z0-9]{1}[R]{1}[0-9]{1}[a-zA-Z]{1}")) {
System.out.println("True");
} else {
System.out.println("False");
Or
import java.util.Scanner;
public class Main {
String s=sc.next();
System.out.println(UserMainCode.getstring(s));
}}
}
if(s.matches("([a-zA-Z0-9]{1})(R){1}([0-9]{1})([a-zA-Z]{1})"))
s="TRUE";
else
s="FALSE";
return s;
}
Write a program to read a positive number as input and to get the reverse of the given number
and return it as output.
The return type is an integer value which is the reverse of the given number.
Create a Main class which gets the input as a integer and call the static
method reverseNumber present in the UserMainCode
Sample Input 1:
543
Sample Output 1:
345
Sample Input 1:
1111
Sample Output 1:
1111
import java.io.*;
import java.util.*;
int a = sc.nextInt();
while (a != 0) {
rem = a % 10;
a /= 10;
System.out.println(rev);
}
}
import java.util.Scanner;
public class Main {
String s=sc.next();
System.out.println(UserMainCode.getstring(s));
}}
public class UserMainCode {
public static String getstring(String s)
{
return sb.toString();
}
Or
import java.util.Scanner;
public class Main {
Integer s=sc.nextInt();
System.out.println(UserMainCode.getstring(s));
}}
int n=0,r;
while(s>0)
{
r=s%10;
n=n*10+r;
s=s/10;
}
return n;
}
Create a class Main which would get the input array and call the static
method getBoundaryAverage present in the UserMainCode.
The first line of the input consists of an integer n, that corresponds to the size of the array.
The next n lines consist of integers that correspond to the elements in the array.
Assume that the maximum number of elements in the array is 10.
Output consists of a single float value that corresponds to the average of the max and min
element in the array.
Sample Input :
Sample Output:
5.5
import java.util.*;
import java.util.Arrays;
int n=sc.nextInt();
int a[]=new int[n];
for(int i=0;i<n;i++)
{
a[i]=sc.nextInt();
}
System.out.println(UserMainCode.getstring(a));
}}
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import com.sun.xml.internal.bind.v2.schemagen.xmlschema.List;
int d=a[0]+a[a.length-1];
float a1=(float)d/2;
return a1;
}
}
Write a program to calculate discount of the acccount holders based on the transaction
amount and registration date using below mentioned prototype:
1. Read account details from the User. The details would include id, DOR (date of
registration) and transaction amount in the given order. The datatype for id is string, DOR is
string and transaction amount is integer.
2. You decide to build two hashmaps. The first hashmap contains employee id as key and
DOR as value, and the second hashmap contains same employee ids as key and amount as
value.
3. Discount Amount as on 01/01/2015:
a. If the transaction amount greater than or equal to 20000 and registration greater than or
equal to 5 year then discount rate is 20% of transaction amount.
b. If the transaction amount greater than or equal to 20000 and registration less then to 5
year then discount rate is 10% of transaction amount.
c. If the transaction amount less than to 20000 and registration greater than or equal to 5
year then discount rate is 15% of transaction amount.
d. If the transaction amount less than to 20000 and registration less then to 5 year then
discount rate is 5% of transaction amount.
4. You decide to write a function calculateDiscount which takes the above hashmaps as
input and returns the treemap as output. Include this function in class UserMainCode.
Create a Class Main which would be used to read employee details in step 1 and build the
two hashmaps. Call the static method present in UserMainCode.
Input and Output Format:
Input consists of transaction details. The first number indicates the size of the employees. The
next three values indicate the user id, user DOR and transaction amount. The DOR (Date of
Registration) format is “dd-mm-yyyy”
Output consists of a string which has the user id and discount amount one in a line for each
user.
Refer sample output for formatting specifications.
Sample Input 1:
4
A-1010
20-11-2007
25000
B-1011
04-12-2010
30000
C-1012
11-11-2005
15000
D-1013
02-12-2012
10000
Sample Output 1:
A-1010:5000
B-1011:3000
C-1012:2250
D-1013:500
import java.text.ParseException;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
import java.util.Set;
import java.util.TreeMap;
}
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
Set<String> s1=m1.keySet();
Set<String> s2=m2.keySet();
SimpleDateFormat sdf1=new SimpleDateFormat("dd-MM-yyyy");
String ss="01-01-2015";
Date dr=sdf1.parse(ss);
GregorianCalendar gc1=new GregorianCalendar();
gc1.setTime(dr);
}
else if(sal>=20000 && gc.after(gc1))
{
cal=.1f*sal;
}
else if(sal<20000 && gc1.after(gc) ||
gc.equals(gc1))
{
cal=.15f*sal;
}
else if(sal<20000 && gc.after(gc1))
{
cal=.05f*sal;
}
rm.put(k1, (int)cal);
}
}
}
return rm;
}
}
Write a program to read a integer array, find the largest span in the array.
Span is the count of all the elements between two repeating elements including the repeated
elements.
Include a class UserMainCode with a static method getLargestSpan which accepts the
integer array. The return type is integer.
Create a Class Main which would be used to accept the integer array and call the static
method present in UserMainCode.
Sample Input 1:
6
4
2
1
4
5
7
Sample Output 1:
4
import java.util.*;
import java.util.Arrays;
int n=sc.nextInt();
int a[]=new int[n];
for(int i=0;i<n;i++)
{
a[i]=sc.nextInt();
}
System.out.println(UserMainCode.getstring(a));
}}
public class UserMainCode {
public static int getstring(int a[])
{
int c,m=0,l;
l=a.length;
for(int i=0;i<l;i++)
{
for(int j=i+1;j<l;j++)
{
if(a[i]==a[j])
{ c=i+j+1;
if(c>m)
m=c;
}
}
}
return m;
}
}
Write a program that accepts a positive number as input and calculates the sum of squares of
individual digits of the given number.
Create a class Main which would get an integer as input and call the static
method getSumOfSquaresOfDigits present in the UserMainCode.
Sample Input:
321
Sample Output:
14
import java.util.*;
import java.util.Arrays;
int n=sc.nextInt();
System.out.println(UserMainCode.getstring(n));
}}
102.Write a code get a password as string input and validate using the rules specified below.
Apply following validations:
Create a class Main which would get the input and call the static
method validatePassword present in the UserMainCode.
Input and Output Format:
ashok_23
Sample Output 1:
Valid
Sample Input 2:
1980_200
Sample Output 2:
Invalid
import java.util.*;
public class ClassSeT40 {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
String s1=s.next();
boolean b=passwordValidation(s1);
if(b==true)
System.out.println("valid password");
else
System.out.println("not a valid password");
}
public static boolean passwordValidation(String s1) {
boolean b=false,b1=false,b2=false;
if(s1.length()>=8)
if(!Character.isDigit(s1.charAt(0)))
if(s1.charAt(0)!='@' && s1.charAt(0)!='_' && s1.charAt(0)!='#')
if(s1.charAt(s1.length()-1)!='@' && s1.charAt(s1.length()-1)!='_' &&
s1.charAt(s1.length()-1)!='#')
b1=true;
if(b1==true)
for(int i=0;i<s1.length();i++)
if(Character.isAlphabetic(s1.charAt(i)) || Character.isDigit(s1.charAt(i)) ||
s1.charAt(i)=='#' || s1.charAt(i)=='@' || s1.charAt(i)=='_')
b2=true;
if(b2==true)
if(s1.contains("#") || s1.contains("@") || s1.contains("_"))
b=true;
return b;
}
}
import java.util.Scanner;
System.out.println(UserMainCode.usermethod(pw));
String r="";
if(pw.length()==8)
{
if(pw.matches("([a-zA-z]{1})([a-zA-z0-9@#_]{6})([a-zA-Z0-
9]{1})"))
{
r="Valid";
}
else
r="Invalid";
}
else
r="Invalid";
return r;
}
Write a program to get an int array as input and identify even and odd numbers. If number is
odd get cube of it, if number is even get square of it. Finally add all cubes and squares
together and return it as output.
Include a class UserMainCode with a static method addEvenOdd which accepts integer
array as input.
The return type of the output is an integer which is the sum of cubes and squares of elements
in the array.
Create a class Main which would get the input and call the static
method addEvenOdd present in the UserMainCode.
86.Interest Calculation
Write a program to calculate amount of the acccount holders based on the below mentioned
prototype:
1. Read account details from the User. The details would include id, DOB (date of birth) and
amount in the given order. The datatype for id is string, DOB is string and amount is integer.
2. You decide to build two hashmaps. The first hashmap contains employee id as key and
DOB as value, and the second hashmap contains same employee ids as key and amount as
value.
3. Rate of interest as on 01/01/2015:
a. If the age greater than or equal to 60 then interest rate is 10% of Amount.
b.If the age less then to 60 and greater than or equal to 30 then interest rate is 7% of
Amount.
v. If the age less then to 30 interest rate is 4% of Amount.
4. Revised Amount= principle Amount + interest rate.
5. You decide to write a function calculateInterestRate which takes the above hashmaps as
input and returns the treemap as output. Include this function in class UserMainCode.
Create a Class Main which would be used to read employee details in step 1 and build the
two hashmaps. Call the static method present in UserMainCode.
import java.text.ParseException;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
import java.util.Set;
import java.util.TreeMap;
Set<String> s1=m1.keySet();
Set<String> s2=m2.keySet();
SimpleDateFormat sdf1=new SimpleDateFormat("dd-MM-yyyy");
String ss="01-01-2015";
Date dr=sdf1.parse(ss);
GregorianCalendar gc=new GregorianCalendar();
gc.setTime(dr);
if(gc.after(gc1) || gc.equals(gc1))
{
cal=sal+.1f*sal;
}
if(gc.before(gc1)|| gc.equals(gc1))
{
if(gc.after(gc2)||gc.equals(gc2))
cal=sal+.07f*sal;
}
if(gc2.after(gc) )
{
cal=sal+.04f*sal;
}
rm.put(k1, (int)cal);
}
}
}
return rm;
}
}
87.String Processing - V
Write a program to read a string and also a number N. Form a new string made up of n
repetitions of the last n characters of the String. You may assume that n is between 1 and the
length of the string.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Input 1:
Hello
2
Sample Output 1:
lolo
Sample Input 2:
Hello
3
Sample Output 2:
llollollo
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String s = sc.next();
int a = sc.nextInt();
StringBuffer sb = new StringBuffer();
for (int i = 0; i < a; i++) {
sb.append(s.substring(s.length() - a));
}
System.out.println(sb);
}
}
Or
import java.util.Scanner;
System.out.println(UserMainCode.usermethod(pw,n));
String r="";
int c=n;
StringBuffer sb=new StringBuffer();
while(c>0)
{sb.append(pw.substring(pw.length()-n));
c--;
}
r=sb.toString();
return r;
Include a class UserMainCode with a static method moveX which accepts the string. The
return type is the modified string.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
xxhixx
Sample Output 1:
hixxxx
Sample Input 2:
XXxxtest
Sample Output 2:
XXtestxx
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String s = sc.next();
String s1 = s.replaceAll("[x]", "");
String s2 = s.replaceAll("[^x]", "");
System.out.println(s1);
System.out.println(s2);
System.out.println(s1 + s2);
}
}
89.Duplicate Characters
Write a Program which removes duplicate characters from the string. Your program should
read a sentence (string) as input from user and return a string removing duplicate characters.
Retain the first occurance of the duplicate character. Assume the characters are case –
sensitive.
Include a class UserMainCode with a static method removeDuplicates which accepts a
string. The return type is the modified sentence of type string.
Create a Class Main which would be used to accept the input string and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string with maximum size of 100 characters.
Output consists of a single string.
Refer sample output for formatting specifications.
Sample Input 1:
hi this is sample test
Sample Output 1:
hi tsample
Sample Input 2:
ABC DEF
Sample Output 2:
ABC DEF
89.
import java.util.*;
String r="";
for(int i=0;i<pw.length();i++)
{
if(!r.contains(String.valueOf(pw.charAt(i))))
r=r+String.valueOf(pw.charAt(i));
}
return r;
90.Dash Check
Write a program to read two strings and check whether or not they have dashes in the same
places. Print “Yes” if the condition satisfies, else print “No”.
Include a class UserMainCode with a static method compareDashes which accepts two
strings. The return type (Integer) should return 1 if all dashes are placed correctly, else return
2.
Create a Class Main which would be used to accept two strings and call the static method
present in UserMainCode.
Note: The strings must have exactly the same number of dashes in exactly the same
positions. The strings might be of different length.
hi—there-you.
12--(134)-7539
Sample Output 1:
Yes
Sample Input 2:
-15-389
-xyw-zzy
Sample Output 2:
No
package gokul.javarevsi.dates;
import java.io.*;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
public class gkdate {
public static void main(String[] args) throws ParseException {
Scanner sc = new Scanner(System.in);
int i = 0, j = 0, count = 0;
String s1 = sc.next();
String s2 = sc.next();
int a = s1.length();
int b = s2.length();
int l1[] = new int[a];
int l2[] = new int[b];
StringTokenizer st1 = new StringTokenizer(s1, "-");
StringTokenizer st2 = new StringTokenizer(s2, "-");
while (st1.hasMoreElements()) {
String x = st1.nextToken();
l1[i] = x.length();
i++;
}
while (st2.hasMoreElements()) {
String x2 = st2.nextToken();
l2[j] = x2.length();
j++;
}
for (int c = 0; c < i; c++) {
if (l1[c] == l2[c]) {
count = 1;
} else {
count = 0;
break;
}
}
if (count == 1)
System.out.println("yes");
else if (count == 0)
System.out.println("no");
}
}
91.Maximum Difference
Write a program to read an integer array and find the index of larger number of the two
adjacent numbers with largest difference. Print the index.
Sample Output :
[In the sequence 4 8 6 1 9 4 the maximum distance is 8 (between 1 and 9). The function
should return the index of the greatest of two. In this case it is 9 (which is at index 4). output
= 4.]
import java.util.Scanner;
public class Main {
int c=0,r=0,m=0;
for(int i=0;i<a.length-1;i++)
{
int b=a[i+1]-a[i];
if(b<0)
b=b*-1;
System.out.println(b);
if(b>m)
{
m=b;
c=i+1;
}
}
return c;
}
Write a program that takes a string and returns the number of unique characters in the string.
If the given string doest not contain any unique characters return -1
Include a class UserMainCode with a static method uniqueCounter which accepts a string
as input.
The return type of the output is the count of all unique characters in the strings.
Create a class Main which would get the input and call the static
method uniqueCounter present in the UserMainCode.
Sample Input 1:
HelloWorld
Sample Output 1:
5
Sample Input 2:
coco
Sample Output 2:
-1
import java.text.ParseException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Scanner;
String r="";
int c=0;
StringBuffer sb=new StringBuffer(pw);
for(int i=0;i<sb.length();i++)
{
c=0;
for(int j=i+1;j<sb.length();j++)
{
if(sb.charAt(i)==sb.charAt(j))
{
sb.deleteCharAt(j);
c++;
j--;
}
}
if(c>=1){
sb.deleteCharAt(i);
i--;
}
}
System.out.println(sb);
return sb.length();
Write a program that accepts a positive number as input and calculates the sum of digits at
even indexes (say evenSum) and sum of digits at odd indexes (say oddSum) in the given
number. If both the sums are equal , print 'yes', else print no.
Example:
input = 23050
evenSum = 2 + 0 + 0 = 2
oddSum = 3 + 5 = 8
output = no
Create a class Main which would get an integer as input and call the static
method sumOfOddEvenPositioned present in the UserMainCode.
Sample Input 1:
23050
Sample Output 1:
no
Sample Input 2:
231
Sample Output 2:
yes
import java.text.ParseException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Scanner;
Write a program to accept a string array as input, convert all the elements into lowercase and
sort the string array. Display the sorted array.
Include a class UserMainCode with a static method sortArray which accepts the string array.
The return type is the string array formed based on requirement.
Create a Class Main which would be used to accept the string array and call the static method
present in UserMainCode.
Input consists of a an integer which denotes the size of the array followed by the array of
strings,
Output consists of a string array.
Refer sample output for formatting specifications.
Sample Input 1:
5
AAA
BB
CCCC
A
ABCDE
Sample Output 1:
a
aaa
abcde
bb
cccc
import java.text.ParseException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Scanner;
s3[i] = al.get(i).toLowerCase();
System.out.println(s3[i]);
}
}
}
----------------0r----------------------
import java.text.ParseException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Scanner;
import java.util.Scanner;
for(int i=0;i<a.length;i++)
{
a[i]=a[i].toLowerCase();
}
Arrays.sort(a);
}
}
Given a method with two date strings in yyyy-mm-dd format as input. Write code to find the
difference between two dates in months.
Include a class UserMainCode with a static method getMonthDifference which accepts two
date strings as input.
The return type of the output is an integer which returns the diffenece between two dates in
months.
Create a class Main which would get the input and call the static
method getMonthDifference present in the UserMainCode.
Output is an integer.
Refer sample output for formatting specifications.
Sample Input 1:
2012-03-01
2012-04-16
Sample Output 1:
1
Sample Input 2:
2011-03-01
2012-04-16
Sample Output 2:
13
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Scanner;
96.String Encryption
Given an input as string and write code to encrypt the given string using following rules and
return the encrypted string:
Note:
Include a class UserMainCode with a static method encrypt which accepts a string.
Create a Main class which gets string as an input and call the static method encrypt present
in theUserMainCode.
Sample Output 1:
dusipsjtz
Sample Input 2:
zzzz
Sample Output 2:
Azaz
import java.util.Scanner;
Or
import java.util.Scanner;
String al="abcdefghijklmnopqrstuvwxyza";
StringBuffer sb=new StringBuffer();
for(int i=0;i<a.length();i++)
{
if(i%2!=0)
sb.append(a.charAt(i));
else
{ if(i==0 && a.charAt(i)=='z')
sb.append('A');
else
{int n=al.indexOf(a.charAt(i));
sb.append(al.charAt(n+1));}
}
}
return sb.toString();
97.ArrayFront
Write a program to read a integer array and return true if one of the first 4 elements in the
array is 9 else return false.
Note: The array length may be less than 4.
Include a class UserMainCode with a static method scanArray which accepts the integer
array. The return type is true / false.
Create a Class Main which would be used to accept the integer array and call the static
method present in UserMainCode.
Sample Input 1:
6
1
2
3
4
5
6
Sample Output 1:
FALSE
Sample Input 2:
3
1
2
9
Sample Output 2:
TRUE
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
System.out.println("False");
}
}
}
98.Max Vowels
Write a Program which fetches the word with maximum number of vowels. Your program
should read a sentence as input from user and return the word with max number of vowels. In
case there are two words of maximum length return the word which comes first in the
sentence.
Include a class UserMainCode with a static method getWordWithMaximumVowels which
accepts a string The return type is the longest word of type string.
Create a Class Main which would be used to accept two Input strings and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of a string with maximum size of 100 characters.
Output consists of a single string.
Refer sample output for formatting specifications.
Sample Input 1:
Appreciation is the best way to motivate
Sample Output 1:
Appreciation
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
String s=sc.nextLine();
System.out.println(UserMainCode.getstring(s));
}}
public class UserMainCode {
public static String getstring(String s)
{
int m=0;
String op="";
StringTokenizer st=new StringTokenizer(s," ");
while(st.hasMoreTokens())
{
String v=st.nextToken();
String r=v;
r=r.replaceAll("[aeiouAEIOU]", "");
if(m<(v.length()-r.length()))
{
m=v.length()-r.length();
op=v;
}
}
return op;
}
}
99.Date Validation
Write a program to read a string representing a date. The date can be in any of the three
formats
1:dd-MM-yyyy 2: dd/MM/yyyy 3: dd.MM.yyyy
If the date is valid, print valid else print invalid.
Include a class UserMainCode with a static method getValidDate which accepts a string. The
return type (integer) should be based on the validity of the date.
Create a Class Main which would be used to accept Input string and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string.
Output consists of a string.
Refer sample output for formatting specifications.
Sample Input 1:
03.12.2013
Sample Output 1:
valid
Sample Input 2:
03$12$2013
Sample Output 3:
Invalid
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
Given a phone number as a string input, write a program to verify whether the phone number
is valid using the following business rules:
Create a class Main which would get a String as input and call the static
method validatePhoneNumber present in the UserMainCode.
Sample Input 1:
265-265-7777
Sample Output 1:
Valid
Sample Input 2:
265-65-7777
Sample Output 1:
Invalid
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
101.Average of Primes
Write a program to read an array and find average of all elements located at index i, where i
is a prime number. Type cast the average to an int and return as output. The index starts from
0.
Include a class UserMainCode with a static method addPrimeIndex which accepts a single
integer array. The return type (integer) should be the average of all elements located at index
i where i is a prime number.
Create a Class Main which would be used to accept Input array and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of n+1 integers. The first integer corresponds to n, the number of elements in
the array. The next 'n' integers correspond to the elements in the array.
Output consists of a single Integer.
Refer sample output for formatting specifications.
Assume that the maximum number of elements in the array is 20 and minimum number of
elements is 3.
Sample Input 1:
4
2
5
2
4
Sample Output 1:
3
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
if (i % j == 0) {
c++;
}
}
if (c == 0) {
sum += a[i];
}
}
int avg = sum / 2;
System.out.println(sum);
System.out.println(avg);
}
}
102.Palindrome - In Range
Write a program to input two integers, which corresponds to the lower limit and upper limit
respectively, and find the sum of all palindrome numbers present in the range including the
two numbers. Print the sum.
Include a class UserMainCode with a static method addPalindromes which accepts two
integers. The return type (Integer) should return the sum if the palindromes are present, else
return 0.
Create a Class Main which would be used to accept two integer and call the static method
present in UserMainCode.
Note1 : A palindrome number is a number which remains same after reversing its digits.
130
150
Sample Output :
272
(131+141 = 272)
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
int ll = sc.nextInt();
int ul = sc.nextInt();
rev = 0;
temp = i;
while (temp != 0) {
temp /= 10;
if (rev == i) {
sum += rev;
System.out.println(sum);
103.Math Calculator
Write a program that accepts three inputs, first two inputs are operands in int form and third
one being one of the following five operators: +, -, *, /, %. Implement calculator logic and
return the result of the given inputs as per the operator provided. In case of division, Assume
the result would be integer.
Include a class UserMainCode with a static method calculator which accepts two integers,
one operand and returns the integer.
Create a Class Main which would be used to accept three integers and call the static method
present in UserMainCode.
Sample Input 1:
23
2
*
Sample Output 1:
46
import java.io.*;
import java.util.*;
104.Shift Left
Write a program to read a integer array of scores, and return a version of the given array
where all the 5's have been removed. The remaining elements should shift left towards the
start of the array as needed,
and the empty spaces at the end of the array should be filled with 0.
So {1, 5, 5, 2} yields {1, 2, 0, 0}.
Include a class UserMainCode with a static method shiftLeft which accepts the integer array.
The return type is modified array.
Create a Class Main which would be used to accept the integer array and call the static
method present in UserMainCode.
Input consists of an integer n which is the number of elements followed by n integer values.
Sample Input 1:
7
1
5
2
4
5
3
5
Sample Output 1:
1
2
4
3
0
0
0
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int i, k = 0;
int a[] = new int[n];
ArrayList<Integer> al = new ArrayList<Integer>();
for (i = 0; i < n; i++) {
a[i] = sc.nextInt();
}
for (i = 0; i < n; i++) {
if (a[i] != 5) {
al.add(a[i]);
}
}
if (al.size() < n) {
k = n - al.size();
for (i = 0; i < k; i++) {
al.add(0);
}
}
int b[] = new int[al.size()];
for (i = 0; i < al.size(); i++) {
b[i] = al.get(i);
System.out.println(b[i]);
}
}
105.Repeat Front
Given a string (s) and non negative integer (n) apply the following rules.
2. If the length of the string is less than 3, then consider the entire string as front
and repeat it n times.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Input 1:
Coward
2
Sample Output 1:
CowCow
Sample Input 2:
So
3
Sample Output 2:
SoSoSo
import java.io.*;
import java.util.*;
sb.append(s1.substring(0, s1.length()));
}
}
System.out.println(sb);
}
Given a phone number as string, validate the same based on the following rules.
If all the conditions are satisifed then print TRUE else print FALSE.
Include a class UserMainCode with a static method validatePhone which accepts the string.
The return type is the boolean formed based on rules.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
9987684321
Sample Output 1:
TRUE
Sample Input 2:
0014623452
Sample Output 2:
FALSE
import java.io.*;
import java.util.*;
Given input as HashMap, value consists of marks and rollno as key.Find the sum of the
lowest three subject marks from the HashMap.
Include a class UserMainCode with a static method getLowest which accepts a Hashmap
with marks and rollno.
The return type of the output is the sum of lowest three subject marks.
Create a class Main which would get the input and call the static method getLowest present
in the UserMainCode.
Input and Output Format:
First line of the input corresponds to the HashMap size.
Input consists a HashMap with marks and rollno.
Output is an integer which is the sum of lowest three subject marks.
Refer sample output for formatting specifications.
Sample Input 1:
5
54
85
74
59
57
Sample Output 1:
170
Sample Input 2:
4
10
56
20
58
30
87
40
54
Sample Output 2:
168
import java.io.*;
import java.util.*;
Write a program to read a string and check if it starts with '_ix' where '_' is any one char(a-z,
A-Z, 0-9).
Include a class UserMainCode with a static method checkPattern which accepts the string.
The return type is TRUE / FALSE.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Input and Output Format:
Sample Input 1:
Mix Mania
Sample Output 1:
TRUE
import java.util.*;
} else {
System.out.println("invalid");
}
}
109.Perfect Number
Write a program to that takes a positive integer and returns true if the number is perfect
number.
A positive integer is called a perfect number if the sum of all its factors (excluding the
number itself, i.e., proper divisor) is equal to its value.
For example, the number 6 is perfect because its proper divisors are 1, 2, and 3, and
6=1+2+3; but the number 10 is not perfect because its proper divisors are 1, 2, and 5, and
1+2+5 is not equal to 10
Include a class UserMainCode with a static method getPerfection which accepts the number.
The return type is boolean (true / false).
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
28
Sample Output 1:
TRUE
import java.io.*;
import java.util.*;
Write a program to read a string and to test whether first and last character are same. The
string is said to be be valid if the 1st and last character are the same. Else the string is said to
be invalid.
Include a class UserMainCode with a static method checkCharacters which accepts a string
as input .
The return type of this method is an int. Output should be 1 if the first character and last
character are same . If they are different then return -1 as output.
Create a class Main which would get the input as a string and call the static
method checkCharacterspresent in the UserMainCode.
Sample Output 1:
Valid
Sample Input 1:
this
Sample Output 1:
Invalid
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String s = sc.nextLine();
StringBuffer sb = new StringBuffer(s);
sb.reverse();
String s1 = sb.toString();
if (s.charAt(0) == s1.charAt(0)) {
System.out.println("valid");
} else {
System.out.println("invalid");
}
}
111.Max Scorer
while (st.hasMoreTokens()) {
String s = st.nextToken();
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
int c = Integer.parseInt(st.nextToken());
sum = a + b + c;
if (sum > max) {
max = sum;
s1 = s;
}
}
}
System.out.println(s1);
}
}
112.Valid Date
Given a date string as input, write a program to validate if the given date is in any of the
following formats:
dd.mm.yyyy
dd/mm/yy
dd-mm-yyyy
Include a class UserMainCode with a static method “validateDate” that accepts a String and
returns an integer. This method returns 1 if the date is valid, else return -1.
Create a class Main which would get a String as input and call the static
method validateDate present in the UserMainCode.
Sample Input 1:
12.03.2012
Sample Output 1:
Valid
Sample Input 2:
27#01#1977
Sample Output 2:
Invalid
import java.io.*;
import java.util.*;
A Company wants to obtain employees of a particular designation. You have been assigned
as the programmer to build this package. You would like to showcase your skills by creating
a quick prototype. The prototype consists of the following steps:
Read Employee details from the User. The details would include name and designaton in
the given order. The datatype for name and designation is string.
Build a hashmap which contains the name as key and designation as value.
You decide to write a function obtainDesignation which takes the hashmap and
designation as input and returns a string array of employee names who belong to that
designation as output. Include this function in class UserMainCode.
Create a Class Main which would be used to read employee details in step 1 and build the
hashmap. Call the static method present in UserMainCode.
Sample Input 1:
4
Manish
MGR
Babu
CLK
Rohit
MGR
Viru
PGR
MGR
Sample Output 1:
Manish
Rohit
import java.io.*;
import java.util.*;
if (e.getValue().equals(s)) {
s1[k] = (String) e.getKey();
k++;
}
}
for (i = 0; i < s1.length - 1; i++)
System.out.println(s1[i]);
}
}
import java.text.DecimalFormat;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Map;
import java.util.Scanner;
import java.util.Set;
import java.util.StringTokenizer;
import java.util.TreeSet;
int i,j,n;
System.out.println("Enter no of student");
n=sc.nextInt();
String name;
DecimalFormat dc=new DecimalFormat("##.00");
for(i=0;i<n;i++)
name=sc.next();
for(j=0;j<3;j++)
num.add(sc.nextInt());
record.put(name,num);
Set<String> keys=record.keySet();
for(String nam:keys)
{ int sum=0;
System.out.println(nam);
List<Integer> bb=record.get(nam);
for(int marks:bb)
{ sum=sum+marks;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import java.text.ParseException;
import java.text.SimpleDateFormat;
Date dat=sdf.parse(d);
Date dat1=sdf.parse(da1);
int dr,mr,yr;
gc.setTime(dat);
int d1=gc.get(Calendar.DATE);
int m1=gc.get(Calendar.MONTH);
int y1=gc.get(Calendar.YEAR);
gc.setTime(dat1);
int d2=gc.get(Calendar.DATE);
int m2=gc.get(Calendar.MONTH);
int y2=gc.get(Calendar.YEAR);
if(d2>d1)
dr=(d1+30)-d2;
m1-=1;
else
dr=d1-d2;
if(m2>m1)
mr=(m1+12)-m2;
y1-=1;
}
else
mr=m1-m2;
yr=y2-y1;
return res;
Include a class UserMainCode with a static method checkSum which accepts a positive
integer . The return type should be 1 if the sum is odd . In case the sum is even return -1
as output.
Create a class Main which would get the input as a positive integer and call the static
method checkSum present in the UserMainCode.
Sample Input 1:
56895
Sample Output 1:
Sum of odd digits is odd.
Sample Input 2:
84228
Sample Output 2:
Sum of odd digits is even.
public class UserMainCode {
public static int SumOfOddsAndEvens(int n){
int n1,n2=0,n3;
while(n!=0)
{
n1=n%10;
if((n1%2)!=0)
n2+=n1;
n/=10;
}
if(n2%2==0)
n3=-1;
else
n3=1;
return n3;
}
public static void main(String[] args) {
int n=84882;
System.out.println(SumOfOddsAndEvens(n));
}
}
2.Number Validation
Write a program to read a string of 10 digit number , check whether the string contains a 10
digit number in the format XXX-XXX-XXXX where 'X' is a digit.
Include a class UserMainCode with a static method validateNumber which accepts a string
as input .
The return type of the output should be 1 if the string meets the above specified format . In
case the number does not meet the specified format then return -1 as output.
Create a class Main which would get the input as a String of numbers and call the static
method validateNumberpresent in the UserMainCode.
Sample Input 1:
123-456-7895
Sample Output 1:
Valid number format
Sample Input 2:
-123-12344322
Sample Output 2:
Invalid number format
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
String pan=s.next();
int b=panNumberValidation(pan);
if(b==1)
System.out.println("valid Pancard Number");
else
System.out.println("not a valid credential");
}
public static int panNumberValidation(String input) {
int b=0;
if(input.matches("[0-9]{3}[-]{1}[0-9]{3}[-]{1}[0-9]{4}"))
{b=1;}
else
b=0;
return b;
}
}
Write a program to read a number , calculate the sum of squares of even digits (values)
present in the given number.
Create a class Main which would get the input as a positive integer and call the static method
sumOfSquaresOfEvenDigits present in the UserMainCode.
Sample Input 1:
56895
Sample Output 1:
100
Write a program to read a string of even length and to fetch two middle most characters from
the input string and return it as string output.
Include a class UserMainCode with a static method getMiddleChars which accepts a string
of even length as input . The return type is a string which should be the middle characters of
the string.
Create a class Main which would get the input as a string and call the static
method getMiddleChars present in the UserMainCode.
Sample Input 1:
this
Sample Output 1:
hi
Sample Input 1:
Hell
Sample Output 1:
el
import java.util.Scanner;
String s=sc.nextLine();
StringBuffer sb=new StringBuffer();
if(s.length()%2==0)
{
sb.append(s.substring(s.length()/2-1,s.length()/2+1));
//System.out.println(sb.toString());
}
System.out.println(sb.toString());
}
}
Include a class UserMainCode with a static method checkCharacters which accepts a string
as input .
The return type of this method is an int. Output should be 1 if the first character and last
character are same . If they are different then return -1 as output.
Create a class Main which would get the input as a string and call the static
method checkCharacters present in the UserMainCode.
Sample Input 1:
the picture was great
Sample Output 1:
Valid
Sample Input 1:
this
Sample Output 1:
Invalid
import java.util.Scanner;
public class Main {
}
else
System.out.println("Invalid");
}
}
{
int res=-1;
if(s.charAt(0)==s.charAt(s.length()-1))
{
res=1;
}
return res;
}
}
Include a class UserMainCode with a static method formNewWord which accepts a string
and positive integer .
The return type of the output should be a string (value) of first n character and last n
character.
Create a class Main which would get the input as a string and integer n and call the static
method formNewWordpresent in the UserMainCode.
Sample Input 1:
California
3
Sample Output 1:
Calnia
Sample Input 2:
this
1
Sample Output 2:
ts
import java.util.Scanner;
public class Main {
}
}
7.Reversing a Number
Write a program to read a positive number as input and to get the reverse of the given number
and return it as output.
The return type is an integer value which is the reverse of the given number.
Create a Main class which gets the input as a integer and call the static
method reverseNumber present in theUserMainCode
Sample Input 1:
543
Sample Output 1:
345
Sample Input 1:
1111
Sample Output 1:
1111
import java.util.Scanner;
public class Main
{
}
}
String s=String.valueOf(a);
StringBuffer sb=new StringBuffer(s);
sb.reverse(); //reverse return type is void
int res=Integer.parseInt(sb.toString());
return res;
}
}
8.Array List Sorting and Merging
Write a code to read two int array lists of size 5 each as input and to merge the two
arrayLists, sort the merged arraylist in ascending order and fetch the elements at 2nd, 6th and
8th index into a new arrayList and return the final ArrayList.
The return type is an ArrayList with elements from 2,6 and 8th index position .Array index starts
from position 0.
Create a Main class which gets two array list of size 5 as input and call the static
method sortMergedArrayListpresent in the UserMainCode.
Sample Input 1:
3
1
17
11
19
5
2
7
6
20
Sample Output 1:
3
11
19
Sample Input 2:
1
2
3
4
5
6
7
8
9
10
Sample Output 2:
3
7
9
Include a class UserMainCode with a static method validateDate which accepts a string .
The return type of the validateDate method is 1 if the given date format matches the specified
format , If the validation fails return the output as -1.
Create a Main class which gets date string as an input and call the static
method validateDate present in theUserMainCode.
Sample Input 1:
12/06/1987
Sample Output 1:
Valid date format
Sample Input 2:
03/1/1987
Sample Output 2:
Invalid date format
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Scanner;
public class Qus8Main {
try {
Date d=sdf.parse(s);
res=1;
} catch (ParseException e) {
res=-1;
}
System.out.println(res);
}
}
}
10.Validate Time
Obtain a time string as input in the following format 'hh:mm am' or 'hh:mm pm'. Write code
to validate it using the following rules:
Include a class UserMainCode with a static method validateTime which accepts a string.
If the given time is as per the given rules then return 1 else return -1.If the value returned is 1
then print as valid time else print as Invalid time.
Create a Main class which gets time(string value) as an input and call the static
method validateTime present in theUserMainCode.
Sample Input 1:
09:59 pm
Sample Output 1:
Valid time
Sample Input 2:
10:70 AM
Sample Output 2:
Invalid time
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Scanner;
public class Qus8Main {
try {
Date d=sdf.parse(s);
res=1;
} catch (ParseException e) {
res=-1;
}
System.out.println(res);
}
}
11.String Encryption
Given an input as string and write code to encrypt the given string using following rules and
return the encrypted string:
Note:
- If an odd position charater is 'z' replace it by 'a'.
- Assume the first character in the string is at position 1.
Include a class UserMainCode with a static method encrypt which accepts a string.
Create a Main class which gets string as an input and call the static method encrypt present
in the UserMainCode.
Sample Input 1:
curiosity
Sample Output 1:
dusipsjtz
Sample Input 2:
zzzz
Sample Output 2:
azaz
12.Password Validation
Given a method with a password in string format as input. Write code to validate the
password using following rules:
If the password is as per the given rules return 1 else return -1.If the return value is 1 then
print valid password else print as invalid password.
Create a Main class which gets string as an input and call the static
method validatePassword present in theUserMainCode.
Sample Input 2:
#@6Don
Sample Output 2:
Valid password
The return type of the output is string after removing all the vowels.
Create a Main class which gets string as an input and call the static
method removeEvenVowels present in theUserMainCode.
Sample Input 1:
commitment
Sample Output 1:
cmmitmnt
Sample Input 2:
capacity
Sample Output 2:
Cpcty
The return type of the output is an integer which is the sum powers of each element in the
array.
Create a Main class which gets integer array as an input and call the static
method getSumOfPower present in theUserMainCode.
Sample Input 1:
4
3
6
2
1
Sample Output 1:
12
Sample Input 2:
4
5
3
7
2
Sample Output 2:
61
{
int sum=0;
for(int i=0;i<n;i++)
sum=(int)(sum+Math.pow(a[i], i));
return sum;
}}}
Include a class UserMainCode with a static method getBigDiff which accepts a integer array
as input.
The return type of the output is an integer which is the difference between the largest and
smallest elements in the array.
Create a Main class which gets integer array as an input and call the static
method getBigDiff present in theUserMainCode.
Sample Output 1:
5
Sample Input 2:
4
5
3
7
2
Sample Output 2:
5
import java.util.Arrays;
public class kape1 {
public static int display(int []array)
{
Arrays.sort(array);
int n=array[array.length-1]-array[0];
int b=array.length;
if(b==1)
{
n=array[0];
}
return n;
}
}
The return type of the output is an integer which is the position of given string value from the
array.
Create a Main class which gets string array and a string variable as an input and call the static
methodgetElementPosition present in the UserMainCode.
Input and Output Format:
Input is an string array. First element in the input represents the size the array
Assume the position of first element is 1.
Sample Input 1:
4
red
green
blue
ivory
ivory
Sample Output 1:
2
Sample Input 2:
3
grape
mango
apple
apple
Sample Output 2:
3
17.Generate the series
Given a method taking an odd positive Integer number as input. Write code to evaluate the
following series:
1+3-5+7-9…+/-n.
Include a class UserMainCode with a static method addSeries which accepts a positive
integer .
Create a class Main which would get the input as a positive integer and call the static
method addSeries present in the UserMainCode.
Sample Input 1:
9
Sample Output 1:
-3
Sample Input 2:
11
Sample Output 2:
8
for(i=3;i<=n;i=i+4)
{
sumo=sumo+i;
}
for(i=5;i<=n;i=i+4)
{
sume=sume+i;
}
sum+=sumo-sume;
return sum;
}
}
Given a method calculateElectricityBill() with three inputs. Write code to calculate the
current bill.
Create a class Main which would get the inputs and call the static
method calculateElectricityBill present in the UserMainCode.
Sample Input 1:
ABC2012345
ABC2012660
4
Sample Output 1:
1260
Sample Input 2:
ABCDE11111
ABCDE11222
3
Sample Output 2:
333
import java.util.Scanner;
public class Main {
}
}
int a=Integer.parseInt(s1.substring(5));
int b=Integer.parseInt(s2.substring(5));
int res=Math.abs((b-a)*c);
return res;
}
}
19.Sum of Digits in a String
Write code to get the sum of all the digits present in the given string.
Include a class UserMainCode with a static method sumOfDigits which accepts string input.
Return the sum as output. If there is no digit in the given string return -1 as output.
Create a class Main which would get the input and call the static
method sumOfDigits present in the UserMainCode.
Sample Input 1:
good23bad4
Sample Output 1:
9
Sample Input 2:
good
Sample Output 2:
-1
20.String Concatenation
Write code to get two strings as input and If strings are of same length simply append them
together and return the final string. If given strings are of different length, remove starting
characters from the longer string so that both strings are of same length then append them
together and return the final string.
Include a class UserMainCode with a static method concatstring which accepts two string
input.
The return type of the output is a string which is the concatenated string.
Create a class Main which would get the input and call the static
method concatstring present in the UserMainCode.
Sample Input 1:
Hello
hi
Sample Output 1:
lohi
Sample Input 2:
Hello
Delhi
Sample Output 2:
HelloDelhi
import java.util.Scanner;
public class Main {
System.out.println(UserMainCode.concatString(s1,s2));
}
}
public class UserMainCode
{
public static String concatString(String s1,String s2)
{
StringBuffer sb=new StringBuffer();
int n=s2.length();
sb.append(s1.substring(s1.length()-n));
sb.append(s2.substring(0));
return sb.toString();
}
}
21.Color Code
Write a program to read a string and validate whether the given string is a valid color code
based on the following rules:
- Must start with "#" symbol
- Must contain six characters after #
- It may contain alphabets from A-F or digits from 0-9
Sample Input 2:
#FF9(22
Sample Output 2:
Invalid
import java.util.Scanner;
}
else
{
System.out.println("Invalid color code ");
}
}
public class UserMainCode
{
public static int validateColorCode(String a)
{
int r=-1;
if(a.matches("(#)[A-F0-9]{6}"))
{
r=1;
}
return r;
}
}
22.Three Digits
Write a program to read a string and check if the given string is in the format "CTS-XXX"
where XXX is a three digit number.
Include a class UserMainCode with a static method validatestrings which accepts a string.
The return type (integer) should return 1 if the string format is correct else return -1.
Create a Class Main which would be used to accept a String and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string.
Output consists of a string (Valid or Invalid).
Refer sample output for formatting specifications.
Sample Input 1:
CTS-215
Sample Output 1:
Valid
Sample Input 2:
CTS-2L5
Sample Output 2:
Invalid
***************************************************************************
** CTS-215
public class Main {
public static void main(String[] args) {
String s1="CTS-2j4";
getvalues(s1);
}
public static void getvalues(String s1) {
if(s1.matches("(CTS)[-]{1}[0-9]{3}"))
{
System.out.println(1);
}
else
System.out.println(-1);
}
}
Include a class UserMainCode with a static method sizeOfResultandHashMap which accepts hashmap
as input.
The return type of the output is an integer which is the size of the resultant hashmap.
Create a class Main which would get the input and call the static
method sizeOfResultandHashMap present in the UserMainCode.
Sample Input 1:
3
2
hi
4
hello
12
hello world
Sample Output 1:
1
Sample Input 2:
3
2
hi
4
sdfsdf
3
asdf
Sample Output 2:
2
24.Largest Element
Write a program to read an int array of odd length, compare the first, middle and the last
elements in the array and return the largest. If there is only one element in the array return the
same element.
import java.util.Scanner;
public class Main {
}
}
return max;
}
}
25.nCr
Write a program to calculate the ways in which r elements can be selected from n population,
using nCr formula nCr=n!/r!(n-r)! where first input being n and second input being r.
Include a class UserMainCode with a static method calculateNcr which accepts two
integers. The return type (integer) should return the value of nCr.
Create a Class Main which would be used to accept Input elements and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of 2 integers. The first integer corresponds to n, the second integer corresponds
to r.
Output consists of a single Integer.
Refer sample output for formatting specifications.
Sample Input 1:
4
3
Sample Output 1:
4
import java.util.Scanner;
public class Main {
System.out.println(UserMainCode.calculateNcr(n,r) );
}
}
}
for(i=1;i<=r;i++)
{
prod1=prod1*i;
}
int diff=n-r;
for(i=1;i<=diff;i++)
{
prod2=prod2*i;
}
int dem=prod1*prod2;
int res=prod/dem;
return res;
}
}
26.Sum of Common Elements
Write a program to find out sum of common elements in given two arrays. If no common
elements are found print - “No common elements”.
Include a class UserMainCode with a static method getSumOfIntersection which accepts
two integer arrays and their sizes. The return type (integer) should return the sum of common
elements.
Create a Class Main which would be used to accept 2 Input arrays and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of 2+m+n integers. The first integer corresponds to m (Size of the 1st array),
the second integer corresponds to n (Size of the 2nd array), followed by m+n integers
corresponding to the array elements.
Output consists of a single Integer corresponds to the sum of common elements or a string
“No common elements”.
Refer sample output for formatting specifications.
Assume the common element appears only once in each array.
Sample Input 1:
4
3
2
3
5
1
1
3
9
Sample Output 1:
4
Sample Input 2:
4
3
2
3
5
1
12
31
9
Sample Output 2:
No common elements
public class Main {
public static void main(String[] args)
{
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
int m=sc.nextInt();
int[] a=new int[n];
int[] b=new int[m];
for(int i=0;i<n;i++)
a[i]=sc.nextInt();
for(int i=0;i<m;i++)
b[i]=sc.nextInt();
int u=UserMainCode.display(a,b);
if(u==-1)
System.out.println("No common elements");
else
System.out.println(u);}}
int sum=0;
for(int i=0;i<a.length;i++)
{
for(int j=0;j<b.length;j++)
{if(a[i]==b[j])
sum=sum+a[i];
}}
if(sum==0)
return -1;
else
return sum;
}}
Create a class Main which would get the input and call the static
method validatePassword present in the UserMainCode.
Sample Input 1:
ashok_23
Sample Output 1:
Valid
Sample Input 2:
1980_200
Sample Output 2:
Invalid
if(s.length()>=8&&s.matches("[^0-9|#|_|@](.*)[#|_|@](.*)[^@|_|#]"))
{
System.out.println("valid");
}
28.ID Validation
Write a program to get two string inputs and validate the ID as per the specified format.
Include a class UserMainCode with a static method validateIDLocations which accepts two
strings as input.
Sample Input 1:
CTS-hyd-1234
hyderabad
Sample Output 1:
Valid id
Sample Input 2:
CTS-hyd-123
hyderabad
Sample Output 2:
Invalid id
import java.util.*;
public class Main {
public static void main(String[] args) {
String s1="CTS-hyd-1234";
String s2="hyderabad";
boolean b=formattingString(s1,s2);
if(b==true)
System.out.println("String format:CTS-LLL-XXXX// valid id");
else
System.out.println("not in required format");
}
public static boolean formattingString(String s1, String s2) {
String s3=s2.substring(0, 3);
boolean b=false;
StringTokenizer t=new StringTokenizer(s1,"-");
String s4=t.nextToken();
String s5=t.nextToken();
String s6=t.nextToken();
if(s4.equals("CTS") && s5.equals(s3) && s6.matches("[0-9]{4}"))
b=true;
else{
b=false;}
return b;
}
}
29.Remove Elements
Write a program to remove all the elements of the given length and return the size of the final
array as output. If there is no element of the given length, return the size of the same array as
output.
Include a class UserMainCode with a static method removeElements which accepts a string
array, the number of elements in the array and an integer. The return type (integer) should
return the size of the final array as output.
Create a Class Main which would be used to accept Input String array and a number and call
the static method present in UserMainCode.
Assume maximum length of array is 20.
Input and Output Format:
Input consists of a integers that corresponds to n, followed by n strings and finally m which
corresponds to the length value.
Output consists of a single Integer.
Refer sample output for formatting specifications.
Sample Input 1:
5
a
bb
b
ccc
ddd
2
Sample Output 1:
4
import java.util.*;
int n=sc.nextInt();
sc.nextLine();
int m=sc.nextInt();
System.out.println(UserMainCode.display(a,m));
}}
import java.util.*;
int u=a.length;
for(int i=0;i<a.length;i++)
{
if(a[i].length()==m)
u--;
}
return u;
}}
Include a class UserMainCode with a static method getMonthDifference which accepts two
date strings as input.
The return type of the output is an integer which returns the diffenece between two dates in
months.
Create a class Main which would get the input and call the static
method getMonthDifference present in the UserMainCode.
Output is an integer.
Refer sample output for formatting specifications.
Sample Input 1:
2012-03-01
2012-04-16
Sample Output 1:
1
Sample Input 2:
2011-03-01
2012-04-16
Sample Output 2:
13
import java.text.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws ParseException {
String s1="2012-03-01";
String s2="2012-03-16";
System.out.println(monthsBetweenDates(s1,s2));
}
public static int monthsBetweenDates(String s1, String s2) throws ParseException {
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
Date d1=sdf.parse(s1);
Date d2=sdf.parse(s2);
Calendar cal=Calendar.getInstance();
cal.setTime(d1);
int months1=cal.get(Calendar.MONTH);
int year1=cal.get(Calendar.YEAR);
cal.setTime(d2);
int months2=cal.get(Calendar.MONTH);
int year2=cal.get(Calendar.YEAR);
int n=((year2-year1)*12)+(months2-months1);
return n;
}
}
Include a class UserMainCode with a static method addEvenOdd which accepts integer
array as input.
The return type of the output is an integer which is the sum of cubes and squares of elements
in the array.
Create a class Main which would get the input and call the static
method addEvenOdd present in the UserMainCode.
Sample Input 1:
5
2
6
3
4
5
Sample Output 1:
208
32.IP Validator
Write a program to read a string and validate the IP address. Print “Valid” if the IP address is
valid, else print “Invalid”.
Include a class UserMainCode with a static method ipValidator which accepts a string. The
return type (integer) should return 1 if it is a valid IP address else return 2.
Create a Class Main which would be used to accept Input String and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string that corresponds to an IP.
Output consists of a string(“Valid” or “Invalid”).
Refer sample output for formatting specifications.
Note: An IP address has the format a.b.c.d where a,b,c,d are numbers between 0-255.
Sample Input 1:
132.145.184.210
Sample Output 1:
Valid
Sample Input 2:
132.145.184.290
Sample Output 2:
Invalid
import java.util.*;
public class Main {
public static void main(String[] args) {
String ipAddress="10.230.110.160";
boolean b=validateIpAddress(ipAddress);
if(b==true)
System.out.println("valid ipAddress");
else
System.out.println("not a valid ipAddress");
}
public static boolean validateIpAddress(String ipAddress) {
boolean b1=false;
StringTokenizer t=new StringTokenizer(ipAddress,".");
String s=t.nextToken();
int a=Integer.parseInt(s);
int
b=Integer.parseInt(t.nextToken());
int c=Integer.parseInt(t.nextToken());
int d=Integer.parseInt(t.nextToken());
if((a>=0 && a<=255)&&(b>=0 && b<=255)&&(c>=0 &&
c<=255)&&(d>=0 && d<=255))
b1=true;
return b1;
}
}
Include a class UserMainCode with a static method getDateDifference which accepts two
date strings as input.
The return type of the output is an integer which returns the diffenece between two dates in
days.
Create a class Main which would get the input and call the static
method getDateDifference present in the UserMainCode.
Output is an integer.
Refer sample output for formatting specifications.
Sample Input 1:
2012-03-12
2012-03-14
Sample Output 1:
2
Sample Input 2:
2012-04-25
2012-04-28
Sample Output 2:
3
import java.text.*;
import java.util.*;
public class Main {
public static int dateDifference(String s1,String s2) throws ParseException{
SimpleDateFormat sd=new SimpleDateFormat("yyyy-MM-dd");
Date d=sd.parse(s1);
Calendar c=Calendar.getInstance();
c.setTime(d);
long d1=c.getTimeInMillis();
d=sd.parse(s2);
c.setTime(d);
long d2=c.getTimeInMillis();
int n=Math.abs((int) ((d1-d2)/(1000*3600*24)));
return n;
}
public static void main(String[] args) throws ParseException {
String s1="2012-03-12";
String s2="2012-03-14";
System.out.println(dateDifference(s1,s2));
}
}
34.File Extension
Write a program to read a file name as a string and find out the file extension and return it as
output. For example, the file sun.gif has the extension gif.
Include a class UserMainCode with a static method fileIdentifier which accepts a string.
The return type (string) should return the extension of the input string (filename).
Create a Class Main which would be used to accept Input String and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string that corresponds to a file name.
Output consists of a string(extension of the input string (filename)).
Refer sample output for formatting specifications.
Sample Input 1:
sun.gif
Sample Output 1:
Gif
import java.util.*;
public class Main {
public static String extensionString(String s1){
StringTokenizer t=new StringTokenizer(s1,".");
String ss=t.nextToken();
String s2=t.nextToken();
return s2;
}
public static void main(String[] args) {
String s1="sun.gif";
System.out.println(extensionString(s1));
}
}
35.Find common characters and unique characters in string
Given a method with two strings as input. Write code to count the common and unique letters
in the two strings.
Note:
- Space should not be counted as a letter.
- Consider letters to be case sensitive. ie, "a" is not equal to "A".
Include a class UserMainCode with a static method commonChars which accepts two
strings as input.
The return type of the output is the count of all common and unique characters in the two
strings.
Create a class Main which would get the inputs and call the static
method commonChars present in the UserMainCode.
Sample Input 1:
a black cow
battle ship
Sample Output 1:
2
[Explanation : b, l and a are the common letters between the 2 input strings. But 'a' appears
more than once in the 1st string. So 'a' should not be considered while computing the count
value.]
Sample Input 2:
australia
sri lanka
Sample Output 2:
4
import java.util.Arrays;
import java.util.StringTokenizer;
public class PO
{
public static int display(String s,String s1)
{
int c=0,m=0;String t=null;
char a[]=s.toCharArray();
char b[]=s1.toCharArray();
Arrays.sort(a);
Arrays.sort(b);
s=new String(a);
s1=new String(b);
StringTokenizer st=new StringTokenizer(s);
StringTokenizer st1=new StringTokenizer(s1);
s=st.nextToken();
s1=st1.nextToken();
if(s.length()>s1.length())
{t=s1;
s1=s;
s=t;
}
for(int i=0;i<s.length();i++)
{
for(int j=0;j<s1.length();j++)
{
if(s.charAt(i)==s1.charAt(j))
{
if((s.indexOf(s.charAt(i))==s.lastIndexOf(s.charAt(i)))&&(s1.indexOf(s1.charAt(j))==s1.last
IndexOf(s1.charAt(j))))
{
c++;
}
}}}
return c;
}
}
36.)Initial Format
Write a program to input a person's name in the format "FirstName LastName" and return the
person name in the following format - "LastName, InitialOfFirstName".
Include a class UserMainCode with a static method nameFormatter which accepts a string.
The return type (string) should return the expected format.
Create a Class Main which would be used to accept Input String and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string that corresponds to a Person's name.
Output consists of a string(person's name in expected format).
Refer sample output for formatting specifications.
Sample Input :
Jessica Miller
Sample Output:
Miller, J
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) {
String s1="vishal jadiya";
getvalues(s1);
}
public static void getvalues(String s1) {
StringBuffer sb=new StringBuffer();
StringTokenizer st=new StringTokenizer(s1," ");
String s2=st.nextToken();
String s3=st.nextToken();
sb.append(s3);
sb.append(",");
sb.append(s2.substring(0,1).toUpperCase());
System.out.println(sb);
}
}
Sample Input :
elephant
e
Sample Output:
lphant
import java.util.Scanner;
public class Qus8Main {
Sample Input 2:
bceiduosp
Sample Output 2:
No
import java.util.Scanner;
String s1=name;
int n1=0,n2=0,n3=0,n4=0,n5=0;
for(int i=0;i<s1.length();i++){
char c=s1.charAt(i);
if(c=='a' || c=='A')
n1++;
if(c=='e' || c=='E')
n2++;
if(c=='i' || c=='I')
n3++;
if(c=='o' || c=='O')
n4++;
if(c=='u' || c=='U')
n5++;}
if(n1==1 && n2==1 && n3==1 && n4==1 && n5==1)
return 1;
else
return 0 ;
}
Sample Input 2:
TOM ANDJERRY
Sample output 2:
OT MNAJDREYR
import java.util.Scanner;
public class Qus8Main {
[Hint : If the average is 5.901, the rounded average value is 5.9 . It the average is 6.333, the
rounded average value is 6.33 . ]
The return type of the output is a floating point value which is the average of all values whose
key elements are even numbers.
Create a class Main which would get the input and call the static method avgOfEven present
in the UserMainCode.
Sample Input 1:
3
1
2.3
2
4.1
6
6.2
Sample Output 1:
5.15
Sample Input 2:
3
9
3.1
4
6.3
1
2.6
Sample Output 2:
6.3
41)Calculate Average – Hash Map
Write amethod that accepts the input data as a hash map and finds out the avg of all values
whose keys are odd numbers.
Create a class Main which would get the input and call the static
method countSequentialChars present in the UserMainCode.
Sample Input 1:
abcXXXabc
Sample Output 1:
1
Sample Input 2:
aaaxxyzAAAx
Sample Output 2:
2
Sample Input 2:
who are u
Sample Output 2:
No chunks
import java.util.*;
public class Main {
public static void main(String[] args) {
String s1="You are toooo good";
System.out.println(maxChunk(s1));
}
public static int maxChunk(String s1) {
int max=0;
StringTokenizer t=new StringTokenizer(s1," ");
while(t.hasMoreTokens()){
String s2=t.nextToken();
int n=0;
for(int i=0;i<s2.length()-1;i++)
if(s2.charAt(i)==s2.charAt(i+1))
n++;
if(n>max)
max=n;
}
return (max+1);
}
}
44) Unique Characters in a string
Write a program that takes a string and returns the number of unique characters in the string.
If the given string doest not contain any unique characters return -1
Include a class UserMainCode with a static method uniqueCounter which accepts a string
as input.
The return type of the output is the count of all unique characters in the strings.
Create a class Main which would get the input and call the static
method uniqueCounter present in the UserMainCode.
Sample Input 1:
HelloWorld
Sample Output 1:
5
Sample Input 2:
coco
Sample Output 2:
-1
Input string format is 'fn mn ln'. Output string format is 'ln [mn's 1st character].[fn's 1st
character]'
import java.util.Scanner;
public class Main {
import java.util.StringTokenizer;
{
StringTokenizer st=new StringTokenizer(s," ");
StringBuffer sb=new StringBuffer();
while(st.hasMoreTokens())
{
String a=st.nextToken();
String b=st.nextToken();
String c=st.nextToken();
sb.append(c.substring(0));
sb.append(" ");
sb.append(b.substring(0,1));
sb.append(".");
sb.append(a.substring(0,1));
//String ss=sb.toString();
}
return sb.toString();
}
import java.util.Scanner;
Note: A Unique number is a positive integer (without leading zeros) with no duplicate
digits.For example 7, 135, 214 are all unique numbers whereas 33, 3121, 300 are not.
Include a class UserMainCode with a static method getUnique which accepts an integer.
The return type (Integer) should return 1 if the number is unique else return -1.
Create a Class Main which would be used to accept Input Integer and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of an integer .
Output consists of a String (“Unique” or “Not Unique”).
Refer sample output for formatting specifications.
Sample Input 1:
123
Sample Output 1:
Unique
Sample Input 2:
33
Sample Output 2:
Not Unique
Include a class UserMainCode with a static method getLowest which accepts a Hashmap
with marks and rollno.
The return type of the output is the sum of lowest three subject marks.
Create a class Main which would get the input and call the static method getLowest present
in the UserMainCode.
Sample Input 1:
5
1
54
2
85
3
74
4
59
5
57
Sample Output 1:
170
Sample Input 2:
4
10
56
20
58
30
87
40
54
Sample Output 2:
168
49) Color Code Validation
Give a String as colour code as input and write code to validate whether the given string is a
valid color code or not.
Validation Rule:
String should start with the Character '#'.
Length of String is 7.
It should contain 6 Characters after '#' Symbol.
It should contain Characters between 'A-F' and Digits '0-9'.
If String acceptable the return true otherwise false.
The return type of the output is a boolean which returns true if its is a valid color code else it
returns false.
Create a class Main which would get the input and call the static
method validateColourCode present in the UserMainCode.
Sample Input 1:
#99FF33
Sample Output 1:
true
Sample Input 2:
#CCCC99#
Sample Output 2:
False
import java.util.Scanner;
class Main
{
public static void main(String[] a)
{
Scanner sc=new Scanner(System.in);
String s=sc.nextLine();
if(s.matches("(#)[A-Z0-9]{6}"))
{
System.out.println("valid");
}
else
System.out.println("invalid");
}
}
Create a class Main which would get the input and call the static method getString present in
the UserMainCode.
Sample Input 1:
Cognizant
3
Sample Output 1:
Cognizantantantant
Sample Input 2:
myacademy
2
Sample Output 2:
Myacademymymy
import java.util.*;
public class useerm {
public static String lengthiestString(String s1,int n){
StringBuffer sb=new StringBuffer();
sb.append(s1);
for(int i=0;i<n;i++)
sb.append(s1.substring(s1.length()-n,s1.length()));
// sb.append(s1.substring(s1.length()-n))
}
return sb.toString();
}
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
System.out.println("enter the String:");
String s1=s.nextLine();
int n=s.nextInt();
System.out.println("the lengthiest string is:"+lengthiestString(s1,n));
}
}
51) Finding the day of birth
Given an input as date of birth of person, write a program to calculate on which day
(MONDAY,TUESDAY....) he was born store and print the day in Upper Case letters.
The return type of the output is a string which should be the day in which the person was
born.
Create a class Main which would get the input and call the static
method calculateBornDay present in the UserMainCode.
Sample Input 1:
29-07-2013
Sample Output 1:
MONDAY
Sample Input 2:
14-12-1992
Sample Output 2:
MONDAY
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Scanner;
import java.text.SimpleDateFormat;
import java.text.ParseException;
import java.util.Date;
public class UserMainCode {
public static String calculateBornDay(String s1) throws ParseException
{
SimpleDateFormat sdf=new SimpleDateFormat("dd-MM-yyyy");
SimpleDateFormat sdf1=new SimpleDateFormat("EEEEE");
Date d=sdf.parse(s1);
String s=sdf1.format(d);
return s.toUpperCase();
}
}
Include a class UserMainCode with a static method afterDelete which accepts a HashMap
as input.
The return type of the output is an integer which represents the count of remaining elements
in the hashmap.
Create a class Main which would get the input and call the static method afterDelete present
in the UserMainCode.
Sample Input 1:
4
339
RON
1010
JONS
3366
SMITH
2020
TIM
Sample Output 1:
2
Sample Input 2:
5
1010
C2WE
6252
XY4E
1212
M2ED
7070
S2M41ITH
8585
J410N
Sample Output 2:
3
Sample Input 1:
11/01/2010
01/09/2014
4
Sample Output 1:
true
Sample Input 2:
11/06/2009
01/09/2014
4
Sample Output 2:
False
import java.util.Date;
import java.text.SimpleDateFormat;
public class Usermaincode
{public static boolean display(String s,String s1,int n)
{
boolean b=false;
SimpleDateFormat sdf=new SimpleDateFormat("dd/MM/yyyy");
try{
Date d=sdf.parse(s);
Date d1=sdf.parse(s1);
int y=d.getYear();
int y1=d1.getYear();
int m=d.getMonth();
int m1=d1.getMonth();
int day=d.getDay();
int day1=d1.getDay();
int age=y1-y;
if(m>m1)
age--;
else if(m==m1)
{if(day<day1)
age--;
}
if(age==n)
b=true;
else
b=false;
}
catch(Exception e)
{e.printStackTrace();
}
return b;
}
}
Include a class UserMainCode with a static method getSpecialChar which accepts a string.
The return type (String) should return the character removed string.
Create a Class Main which would be used to accept a string and call the static method present
in UserMainCode.
Input and Output Format:
Input consists of a strings.
Output consists of an String (character removed string).
Refer sample output for formatting specifications.
Sample Input :
cogniz$#45Ant
Sample Output :
$#45
public class User {
public static String repeatString (String s)
{
StringBuffer sb=new StringBuffer();
for(int i=0;i<s.length();i++)
{
/* char c=s.charAt(i);
if(!Character.isAlphabetic(c)) */
// if(!Character.isAlphabetic(s.charAt(i))
&& (!charachter.isWhiteSpace(s.CharAt(i)))
if( (!Character.isAlphabetic(s.charAt(i)))
&& (!Character.isWhitespace(s.charAt(i))) )
sb.append(s.charAt(i));
}
return sb.toString();
}
}
55) String Repetition
Write a program to read a string and an integer and return a string based on the below rules.
If input2 is equal or greater than 3 then repeat the first three character of the String by given input2
times, separated by a space.
If input2 is 2 then repeat the first two character of String two times separated by a space,
If input2 is 1 then return the first character of the String.
Include a class UserMainCode with a static method repeatString which takes a string & integer and
returns a string based on the above rules.
Create a Class Main which would be used to accept Input string and call the static method present in
UserMainCode.
Input and Output Format:
Input consists of a string and integer.
Output consists of a string.
Refer sample output for formatting specifications.
Sample Input 1:
COGNIZANT
4
Sample Output 1:
COG COG COG COG
Sample Input 2:
COGNIZANT
2
Sample Output 2:
CO CO
return sb.toString();
}
}
56) Average of Prime Locations
Write a program to read an integer array and find the average of the numbers located on the Prime
location(indexes).
Round the avarage to two decimal places.
Assume that the array starts with index 0.
Include a class UserMainCode with a static method averageElements which accepts a single integer
array. The return type (double) should be the average.
Create a Class Main which would be used to accept Input array and call the static method present in
UserMainCode.
Input and Output Format:
Input consists of n+1 integers. The first integer corresponds to n, the number of elements in the array.
The next 'n' integers correspond to the elements in the array.
Output consists of a single Double value.
Refer sample output for formatting specifications.
Sample Input 1:
8
4
1
7
6
5
8
6
9
Sample Output 1:
7.5
}
if(c==1)
{
k++;
sum=sum+a[i];
}
}
avg=(float)sum/k;
return avg;
}
}
Write a program to read two integer arrays and find the sum of common elements in both the arrays.
If there are no common elements return -1 as output
Include a class UserMainCode with a static method sumCommonElements which accepts two single
integer array. The return type (integer) should be the sum of common elements.
Create a Class Main which would be used to accept Input array and call the static method present in
UserMainCode.
Assume that all the elements will be distinct.
Input and Output Format:
Input consists of 2n+1 integers. The first integer corresponds to n, the number of elements in the
array. The next 'n' integers correspond to the elements in the array, The last n elements correspond to
the elements of the second array.
Output consists of a single Integer value.
Refer sample output for formatting specifications.
Sample Input 1:
4
1
2
3
4
2
3
6
7
Sample Output 1:
5
}
}
return sum;
}
}
58) Middle of Array
Write a program to read an integer array and return the middle element in the array. The size of the
array would always be odd.
Include a class UserMainCode with a static method getMiddleElement which accepts a single integer
array. The return type (integer) should be the middle element in the array.
Create a Class Main which would be used to accept Input array and call the static method present in
UserMainCode.
Input and Output Format:
Input consists of n+1 integers. The first integer corresponds to n, the number of elements in the array.
The next 'n' integers correspond to the elements in the array.
Output consists of a single Integer value.
Refer sample output for formatting specifications.
Sample Input 1:
5
1
5
23
64
9
Sample Output 1:
23
}
}
Write a program to read a string and return a modified string based on the following rules.
Return the String without the first 2 chars except when
1. keep the first char if it is 'j'
2. keep the second char if it is 'b'.
Include a class UserMainCode with a static method getString which accepts a string. The return type
(string) should be the modified string based on the above rules. Consider all letters in the input to be
small case.
Create a Class Main which would be used to accept Input string and call the static method present in
UserMainCode.
Input and Output Format:
Input consists of a string with maximum size of 100 characters.
Output consists of a string.
Refer sample output for formatting specifications.
Sample Input 1:
hello
Sample Output 1:
llo
Sample Input 2:
java
Sample Output 2:
Jva
}
}
Write a program to read a string representing a date. The date can be in any of the three formats
1:dd-MM-yyyy 2: dd/MM/yyyy 3: dd.MM.yyyy
If the date is valid, print valid else print invalid.
Include a class UserMainCode with a static method getValidDate which accepts a string. The return
type (integer) should be based on the validity of the date.
Create a Class Main which would be used to accept Input string and call the static method present in
UserMainCode.
Input and Output Format:
Input consists of a string.
Output consists of a string.
Refer sample output for formatting specifications.
Sample Input 1:
03.12.2013
Sample Output 1:
valid
Sample Input 2:
03$12$2013
Sample Output 3:
Invalid
else if(s.matches("[0-9]{2}[-]{1}[0-9]{2}[-]{1}[0-9]{4}"))
{
SimpleDateFormat sdf3=new
SimpleDateFormat("dd/MM/yyyy");
sdf3.setLenient(false);
try
{
Date d1=sdf3.parse(s);
res=1;
}
catch (ParseException e)
{
res=-1;
}
}
else
res=0;
return res;
}
}
Given an int array as input, write a program to compute the average of the maximum and
minimum element in the array.
Include a class UserMainCode with a static method “getBoundaryAverage” that accepts an
integer array as argument and returns a float that corresponds to the average of the maximum
and minimum element in the array.
Create a class Main which would get the input array and call the static
method getBoundaryAverage present in the UserMainCode.
Output consists of a single float value that corresponds to the average of the max and min
element in the array.
Sample Input :
6
3
6
9
4
2
5
Sample Output:
5.5
Given a string input, write a program to find the total number of vowels in the given string.
Include a class UserMainCode with a static method “countVowels” that accepts a String
argument and returns an int that corresponds to the total number of vowels in the given string.
Create a class Main which would get the String as input and call the static
method countVowels present in the UserMainCode.
Sample Input:
avinash
Sample Output:
3
}
}
Given a date as a string input in the format dd-mm-yy, write a program to extract the month and
to print the month name in upper case.
Include a class UserMainCode with a static method “getMonthName” that accepts a String
argument and returns a String that corresponds to the month name.
Create a class Main which would get the String as input and call the static
method getMonthName present in the UserMainCode.
The month names are {JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST,
SEPTEMBER, OCTOBER, NOVEMBER, DECEMBER}
Sample Input:
01-06-82
Sample Output:
JUNE
return month.toUpperCase();
}
}
Given a string, startIndex and length, write a program to extract the substring from right to left.
Assume the last character has index 0.
second argument corresponds to the startIndex and the third argument corresponds to the
length.
Create a class Main which would get a String and 2 integers as input and call the static
method reverseSubstring present in the UserMainCode.
Sample Input:
rajasthan
2
3
Sample Output:
hts
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
}
}
{
StringBuffer sb=new StringBuffer(s);
sb.reverse();
String ss=sb.substring(n1,n1+n2);
return ss.toString();
}
}
Given three strings say Searchstring, Str1 and Str2 as input, write a program to find out if Str2
comes after Str1 in the Searchstring.
Include a class UserMainCode with a static method “stringFinder” that accepts 3 String
arguments and returns an integer. The 3 arguments correspond to SearchString, Str1 and Str2.
The function returns 1 if Str2 appears after Str1 in the Searchtring. Else it returns 2.
Create a class Main which would get 3 Strings as input and call the static
method stringFinder present in the UserMainCode.
Sample Input 1:
geniousRajKumarDev
Raj
Dev
Sample Output 1:
yes
Sample Input 2:
geniousRajKumarDev
Dev
Raj
Sample Output 2:
no
Given a phone number as a string input, write a program to verify whether the phone number is
valid using the following business rules:
-It should contain only numbers or dashes (-)
- dashes may appear at any position
-Should have exactly 10 digits
Create a class Main which would get a String as input and call the static
method validatePhoneNumber present in the UserMainCode.
Sample Input 1:
265-265-7777
Sample Output 1:
Valid
Sample Input 2:
265-65-7777
Sample Output 1:
Invalid
public class User {
public static int validatePhoneNumber(String s)
{
int res=0;
if(s.matches("[0-9]{3}(-)[0-9]{3}(-)[0-9]{4}"))
res=1;
else
res=-1;
return res;
}
}
Given two inputs year and month (Month is coded as: Jan=0, Feb=1 ,Mar=2 ...), write a program
to find out total number of days in the given month for the given year.
Create a class Main which would get 2 integers as input and call the static
method getNumberOfDays present in the UserMainCode.
Sample Input:
2000
1
Sample Output:
29
int days=gc.getActualMaximum(Calendar.DAY_OF_MONTH);
return days;
}
}
Given a string input, write a program to replace every appearance of the word "is" by "is not".
If the word "is" is immediately preceeded or followed by a letter no change should be made to the
string .
Include a class UserMainCode with a static method “negativeString” that accepts a String
arguement and returns a String.
Create a class Main which would get a String as input and call the static
method negativeString present in the UserMainCode.
Sample Input 1:
This is just a misconception
Sample Output 1:
This is not just a misconception
Sample Input 2:
Today is misty
Sample Output 2:
Today is not misty
// sb.deleteCharAt((sb.length()-1));
return sb.toString();
}
}
Given a negative number as string input, write a program to validate the number and to print the
corresponding positive number.
Include a class UserMainCode with a static method “validateNumber” that accepts a string
argument and returns a string. If the argument string contains a valid negative number, the
method returns the corresponding positive number as a string. Else the method returns -1.
Create a class Main which would get a String as input and call the static
method validateNumber present in the UserMainCode.
Sample Input 1:
-94923
Sample Output 1:
94923
Sample Input 2:
-6t
Sample Output 2:
-1
}
}
71) Digits
Write a program to read a non-negative integer n, that returns the count of the occurances of 7
as digit.
Include a class UserMainCode with a static method countSeven which accepts the integer
value. The return type is integer which is the count value.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
717
Sample Output 1:
2
Sample Input 2:
4534
Sample Output 2:
0
Write a program to read a string where all the lowercase 'x' chars have been moved to the end of
the string.
Include a class UserMainCode with a static method moveX which accepts the string. The return
type is the modified string.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
xxhixx
Sample Output 1:
hixxxx
Sample Input 2:
XXxxtest
Sample Output 2:
XXtestxx
public class User {
public static String getStringUsingNthCharacter (String s)
{
StringBuffer sb=new StringBuffer();
StringBuffer sb1=new StringBuffer();
for(int i=0;i<s.length();i++)
{
if(s.charAt(i)=='x')
{
Sb1.append(s.charAt(i));
}
else
{
sb.append(s.charAt(i));
}
}
sb.append(sb1);
return sb.toString();
}
Write a program to read a string and also a number N. Form a new string starting with 1st
character and with every Nth character of the given string. Ex - if N is 3, use chars 1, 3, 6, ... and
so on to form the new String. Assume N>=1.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Output 1:
HelWrd
Write a program to read two integers and return true if they have the same last digit.
Include a class UserMainCode with a static method compareLastDigit which accepts two
integers and returns boolean. (true / false)
Create a Class Main which would be used to accept two integers and call the static method
present in UserMainCode.
Sample Input 1:
59
29
Sample Output 1:
TRUE
GIven three integers (a,b,c) find the sum. However, if one of the values is the same as another,
both the numbers do not count towards the sum and the third number is returned as the sum.
Include a class UserMainCode with a static method getDistinctSum which accepts three
integers and returns integer.
Create a Class Main which would be used to accept three integers and call the static method
present in UserMainCode.
Sample Input 1:
1
2
1
Sample Output 1:
2
Sample Input 2:
1
2
3
Sample Output 2:
6
int sum=0;
if(a==b&&a==c&&b==c)
sum=0;
else if(a!=b&&a!=c&b==c)
sum=a;
else if(a!=b&&b!=c&a==c)
sum=b;
else if(a==b&&b!=c&&a!=c)
sum=c;
else
sum=a+b+c;
return sum;
else if(a==c)
{
sum=b;
}
else if(a==b)
{
sum=c;
}
else if(b==c)
{
sum=a;
}
else
sum=0;
System.out.println(sum);
}
}
Write a program to read a string and check if it starts with '_ix' where '_' is any one char(a-z, A-Z,
0-9).
Include a class UserMainCode with a static method checkPattern which accepts the string. The
return type is TRUE / FALSE.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Output 1:
TRUE
Write a program to read a string and return a new string where the first and last chars have been
interchanged.
Include a class UserMainCode with a static method exchangeCharacters which accepts the
string. The return type is the modified string.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
HelloWorld
Sample Output 1:
delloWorlH
}
}
sb.append(s.substring(s.length()-1));
sb.append(s.substring(1,s.length()-1));
sb.append(s.substring(0,1));
return sb.toString();
}
}
If all the conditions are satisifed then print TRUE else print FALSE.
Include a class UserMainCode with a static method validateString which accepts the string. The
return type is the boolean formed based on rules.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
AcB
Sample Output 1:
TRUE
Sample Input 2:
A2B
Sample Output 2:
FALSE
Write a program to read a string and also a number N. Return the replica of original string for n
given time.
Include a class UserMainCode with a static method repeatString which accepts the the string
and the number n. The return type is the string based on the problem statement.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Input 1:
Lily
2
Sample Output 1:
LilyLily
80) SumOdd
Write a program to read an integer and find the sum of all odd numbers from 1 to the given
number. [inclusive of the given number]
if N = 9 [ 1,3,5,7,9]. Sum = 25
Include a class UserMainCode with a static method addOddNumbers which accepts the number
n. The return type is the integer based on the problem statement.
Create a Class Main which would be used to accept the integer and call the static method
present in UserMainCode.
Sample Input 1:
6
Sample Output 1:
9
Write a program to read a string array, concatenate the array elements one by one separated by
comma and return the final string as output.
Include a class UserMainCode with a static method concatString which accepts the string array.
The return type is the string.
Create a Class Main which would be used to accept the string array and call the static method
present in UserMainCode.
Sample Input 1:
3
AAA
BBB
CCC
Sample Output 1:
AAA,BBB,CCC
GIven three integers (a,b,c) , Write a program that returns the number of unique integers among
the three.
Include a class UserMainCode with a static method calculateUnique which accepts three
integers and returns the count as integer.
Create a Class Main which would be used to accept three integers and call the static method
present in UserMainCode.
Sample Input 1:
12
4
3
Sample Output 1:
3
Sample Input 2:
4
-4
4
Sample Output 2:
2
if(res[i]==res[i+1])
{
count++;
}
}
return count+1;
}
}
if(a!=b)
ct1=ct1+1;
if(a!=c)
ct1=ct1+1;
if(b!=c)
ct1=ct1+1;
System.out.println("output "+ct1);
}
}
int d=0;
if(a!=b&&a!=c)
{
d=3;
}
else if(a==b&&a==c)
{
d=1;
}
else if(a!=b&&a==c)
{
d=2;
}
else if(a==b&&a!=c)
{
d=2;
}
System.out.println(d);
}
}
Write a program that accepts three inputs, first two inputs are operands in int form and third one
being one of the following five operators: +, -, *, /, %. Implement calculator logic and return the
result of the given inputs as per the operator provided. In case of division, Assume the result
would be integer.
Include a class UserMainCode with a static method calculator which accepts two integers, one
operand and returns the integer.
Create a Class Main which would be used to accept three integers and call the static method
present in UserMainCode.
Sample Input 1:
23
2
*
Sample Output 1:
46
case '+':
res=a+b;
case '-':
res=Math.abs(a-b);
case '*':
res=a*b;
case '/':
res=Math.round(a/b);
case '%':
res=Math.round(a%b);
}
return res;
}
}
84) Scores
Write a program to read a integer array of scores, if 100 appears at two consecutive locations
return true else return false.
Include a class UserMainCode with a static method checkScores which accepts the integer
array. The return type is boolean.
Create a Class Main which would be used to accept the integer array and call the static method
present in UserMainCode.
Sample Input 1:
3
1
100
100
Sample Output 1:
TRUE
Sample Input 2:
3
100
1
100
Sample Output 2:
FALSE
for(int i=0;i<s.length-1;i++)
{
if(s[i]==100&&s[i+1]==100)
{
b=true;
break;
}
else
b=false;
}
return b;
}
}
85) ArrayFront
Write a program to read a integer array and return true if one of the first 4 elements in the array is
9 else return false.
Note: The array length may be less than 4.
Include a class UserMainCode with a static method scanArray which accepts the integer array.
The return type is true / false.
Create a Class Main which would be used to accept the integer array and call the static method
present in UserMainCode.
Sample Input 1:
6
1
2
3
4
5
6
Sample Output 1:
FALSE
Sample Input 2:
3
1
2
9
Sample Output 2:
TRUE
Given a string array (s) and non negative integer (n) and return the number of elements in the
array which have same number of characters as the givent int N.
Include a class UserMainCode with a static method countWord which accepts the string array
and integer. The return type is the string formed based on rules.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Input 1:
4
a
bb
b
ccc
1
Sample Output 1:
2
Sample Input 2:
5
dog
cat
monkey
bear
fox
3
Sample Output 2:
3
Write a Program that accepts four int inputs(x1,y1,x2,y2) as the coordinates of two points.
Calculate the distance between the two points using the below formula.
Formula : square root of((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2))
Then, Round the result to return an int
Include a class UserMainCode with a static method findDistance which accepts four integers.
The return type is integer representing the formula.
Create a Class Main which would be used to accept the input integers and call the static method
present in UserMainCode.
Sample Input 2:
3
1
5
2
Sample Output 2:
2
public class Main {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int x1=sc.nextInt();
int y1=sc.nextInt();
int x2=sc.nextInt();
int y2=sc.nextInt();
System.out.println(User.findDistance(x1,y1,x2,y2));
}
}
Write a program to read a string and count the number of words present in it.
Include a class UserMainCode with a static method countWord which accepts the string. The
return type is the integer giving out the count of words.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
Today is Sunday
Sample Output 1:
3
Write a Program that accepts three integers, and returns the sum of maximum and minimum
numbers.
Include a class UserMainCode with a static method getSumMaxMin which accepts three
integers. The return type is integer representing the formula.
Create a Class Main which would be used to accept the input integers and call the static method
present in UserMainCode.
Sample Input 1:
12
17
19
Sample Output 1:
31
Write a Program that accepts a decimal number n, and converts the number to binary.
Create a Class Main which would be used to accept the input integer and call the static method
present in UserMainCode.
Sample Input 1:
5
Sample Output 1:
101
public class Main {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
System.out.println(User.convertDecimalToBinary(n));
}
}
long res=Integer.parseInt(Integer.toBinaryString(n));
return res;
}
}
Write a program to read a string and also a number N. Form a new string made up of n
repetitions of the last n characters of the String. You may assume that n is between 1 and the
length of the string.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Input 1:
Hello
2
Sample Output 1:
lolo
Sample Input 2:
Hello
3
Sample Output 2:
llollollo
public class Main {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
String s1=sc.next();
int n=sc.nextInt();
System.out.println(User.returnLastRepeatedCharacters (s1,n));
}
}
Sample Input 1:
ab2
Sample Output 1:
TRUE
Sample Input 2:
72CAB
Sample Output 2:
FALSE
}
}
Write a program to read a string and return a new string which is made of every alternate
characters starting with the first character. For example NewYork will generate Nwok, and
Samurai will generate Smri.
Include a class UserMainCode with a static method getAlternateChars which accepts the string.
The return type is the modified string.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
Hello
Sample Output 1:
Hlo
public class Main {
}
}
Include a class UserMainCode with a static method fetchUserName which accepts the string.
The return type is the modified string.
Create a Class Main which would be used to accept the string and call the static method present
in UserMainCode.
Sample Input 1:
[email protected]
Sample Output 1:
admin
return name;
}
}
Write a program to read a two strings and one int value(N). check if Nth character of first String
from start and Nth character of second String from end are same or not. If both are same return
true else return false.
Check need not be Case sensitive
Include a class UserMainCode with a static method isEqual which accepts the two strings and a
integer n. The return type is the TRUE / FALSE.
Create a Class Main which would be used to read the strings and integer and call the static
method present in UserMainCode.
Sample Input 1:
AAAA
abab
2
Sample Output 1:
TRUE
Sample Input 2:
MNOP
QRST
3
Sample Output 2:
FALSE
}
}
return b;
}
}
Write a program to read a integer array, find the largest difference between adjacent elements
and display the index of largest difference.
EXAMPLE:
input1: {2,4,5,1,9,3,8}
output1: 4 (here largest difference 9-1=8 then return index of 9 ie,4)
Include a class UserMainCode with a static method checkDifference which accepts the integer
array. The return type is integer.
Create a Class Main which would be used to accept the integer array and call the static method
present in UserMainCode.
Sample Input 1:
7
2
4
5
1
9
3
8
Sample Output 1:
4
int n2,n3=0,n4=0,i;
for(i=0;i<n1.length-1;i++){
n2=Math.abs(n1[i]-n1[i+1]);
if(n2>n3){
n3=n2;
n4=i+1; }}
return n4;
int[] n1={2,4,5,1,9,3,8};
System.out.println(getDiffArray(n1));
2. Number Validation
Write a program to read a string of 10 digit number , check whether the string contains a 10
digit number in the format XXX-XXX-XXXX where 'X' is a digit.
Include a class UserMainCode with a static method validateNumber which accepts a string
as input .
The return type of the output should be 1 if the string meets the above specified format . In
case the number does not meet the specified format then return -1 as output.
Create a class Main which would get the input as a String of numbers and call the static
methodvalidateNumber present in the UserMainCode.
Sample Input 1:
123-456-7895
Sample Output 1:
Valid number format
Sample Input 2:
-123-12344322
Sample Output 2:
Invalid number format
importjava.util.Scanner;
publicclassUserMainCode {
staticintvalidateNumber(String s1)
{
if(s1.matches("[0-9]{3}[-]{1}[0-9]{3}[-]{1}[0-9]{4}"))
{
return 1;
else
return -1;
}
}
}
Write a program to read a string of even length and to fetch two middle most characters
from the input string and return it as string output.
Include a class UserMainCode with a static method getMiddleChars which accepts a string
of even length as input . The return type is a string which should be the middle characters of
the string.
Create a class Main which would get the input as a string and call the static
method getMiddleCharspresent in the UserMainCode.
Sample Input 1:
this
Sample Output 1:
hi
Sample Input 1:
Hell
Sample Output 1:
el
importjava.util.Scanner;
publicclassUserMainCode {
/**
* @paramargs
*/
staticvoidgetMiddleChars(String s1)
{
int k=s1.length();
int mid=k/2;
StringBuffersb1= newStringBuffer();
if(k%2==0)
{
sb1.append(s1.charAt(mid-1));
sb1.append(s1.charAt(mid));
}
System.out.println(sb1);
}
publicstaticvoid main(String[] args) {
// TODO Auto-generated method stub
Scanner in=newScanner(System.in);
String n1=in.nextLine();
UserMainCode.getMiddleChars(n1);
Include a class UserMainCode with a static method checkCharacters which accepts a string
as input .
The return type of this method is an int. Output should be 1 if the first character and last
character are same . If they are different then return -1 as output.
Create a class Main which would get the input as a string and call the static
method checkCharacterspresent in the UserMainCode.
Sample Input 1:
the picture was great
Sample Output 1:
Valid
Sample Input 1:
this
Sample Output 1:
Invalid
importjava.util.Scanner;
publicclassUserMainCode {
/**
* @paramargs
*/
staticvoidcheckCharacters(String s1)
{
int k=s1.length();
char c=s1.charAt(0);
char d=s1.charAt(k-1);
if(c==d)
{
System.out.println("VALID");
}
else
System.out.println("INVALID");
}
publicstaticvoid main(String[] args) {
// TODO Auto-generated method stub
Scanner in=newScanner(System.in);
String n1=in.nextLine();
UserMainCode.checkCharacters(n1);
}
6. Forming New Word from a String
Write a program to read a string and a positive integer n as input and construct a string with
first n and last n characters in the given string.
Include a class UserMainCode with a static method formNewWord which accepts a string
and positive integer .
The return type of the output should be a string (value) of first n character and last n
character.
Create a class Main which would get the input as a string and integer n and call the static
methodformNewWord present in the UserMainCode.
Sample Input 1:
California
3
Sample Output 1:
Calnia
Sample Input 2:
this
1
Sample Output 2:
Ts
importjava.util.Scanner;
publicclassUserMainCode {
/**
* @paramargs
*/
staticvoidcheckCharacters(String s1,int a)
{
int k=s1.length();
StringBuffer sb1= newStringBuffer();
if((2*a)<=k)
{
sb1.append(s1.substring(0,a));
sb1.append(s1.substring(k-a));
}
System.out.println(sb1);
}
publicstaticvoid main(String[] args) {
// TODO Auto-generated method stub
Scanner in=newScanner(System.in);
String n1=in.nextLine();
intnum=in.nextInt();
UserMainCode.checkCharacters(n1,num);
}
11. String Encryption
Given an input as string and write code to encrypt the given string using following rules and
return the encrypted string:
1. Replace the characters at odd positions by next character in alphabet.
2. Leave the characters at even positions unchanged.
Note:
- If an odd position charater is 'z' replace it by 'a'.
- Assume the first character in the string is at position 1.
Include a class UserMainCode with a static method encrypt which accepts a string.
Create a Main class which gets string as an input and call the static method encrypt present
in theUserMainCode.
Sample Input 1:
curiosity
Sample Output 1:
dusipsjtz
Sample Input 2:
zzzz
Sample Output 2:
Azaz
importjava.util.Scanner;
publicclassUserMainCode {
staticvoidcheckCharacters(String s1)
{
int k=s1.length();
StringBuffer sb1= newStringBuffer();
for(inti=0;i<k;i++)
{
chard=s1.charAt(i);
if((i+1)%2!=0)
{
if(d=='z')
{
sb1.append('a');
}
else if(d=='Z')
{
sb1.append('A');
}
else
{
int c=(int)d;
++c;
sb1.append((char)c);
}
}
else
{
sb1.append(d);
}
}
System.out.println(sb1);
}
Publicstaticvoidmain(String[] args) {
// TODO Auto-generated method stub
Scanner in=newScanner(System.in);
String n1=in.nextLine();
UserMainCode.checkCharacters(n1);
}
}
12. Password Validation
Given a method with a password in string format as input. Write code to validate the
password using following rules:
If the password is as per the given rules return 1 else return -1.If the return value is 1 then
print valid password else print as invalid password.
Create a Main class which gets string as an input and call the static
method validatePassword present in the UserMainCode.
Sample Input 1:
%Dhoom%
Sample Output 1:
Invalid password
Sample Input 2:
#@6Don
Sample Output 2:
Valid password
importjava.util.Scanner;
publicclassUserMainCode {
staticvoidcheckCharacters(String s1)
{
int k=s1.length();
if((k>=6 && k<=20) && s1.matches(".*[0-9]{1}.*")
&&s1.matches(".*[@$#]{1}.*"))
{
System.out.println("VALID");
else
System.out.println("INVALID");
}
}
}
13. Removing vowels from String
Given a method with string input. Write code to remove vowels from even position in the
string.
The return type of the output is string after removing all the vowels.
Create a Main class which gets string as an input and call the static
method removeEvenVowels present in the UserMainCode.
Sample Input 1:
commitment
Sample Output 1:
cmmitmnt
Sample Input 2:
capacity
Sample Output 2:
Cpcty
importjava.util.Scanner;
publicclassUserMainCode {
publicstatic String removeEvenElements(String s1)
{
StringBuffer sb1=newStringBuffer();
for(inti=0;i<s1.length();i++)
{
char k=s1.charAt(i);
if((i+1)%2!=0)
{
sb1.append(k);
}
else
{
if(k!='a'&& k!='e'&& k!='i'&& k!='o'&& k!='u'&& k!='A'&& k!='E'&& k!='I'&&
k!='O'&& k!='U')
{
sb1.append(k);
}
}
}
return sb1.toString();
}
publicstaticvoid main(String[] args) {
Scanner in=newScanner(System.in);
String s1=in.nextLine();
System.out.println(removeEvenElements(s1));
in.close();
}
}
Given a method calculateElectricityBill() with three inputs. Write code to calculate the
current bill.
Create a class Main which would get the inputs and call the static
method calculateElectricityBill present in the UserMainCode.
Sample Input 1:
ABC2012345
ABC2012660
4
Sample Output 1:
1260
Sample Input 2:
ABCDE11111
ABCDE11222
3
Sample Output 2:
333
importjava.util.Scanner;
publicclassUserMainCode {
}
publicstaticvoid main(String args[])
{
String s1,s2;
int n;
Scanner in=newScanner(System.in);
s1=in.nextLine();
s2=in.nextLine();
n=in.nextInt();
intans=UserMainCode.calculateElectricityBill(s1,s2,n);
System.out.println(ans);
Write code to get the sum of all the digits present in the given string.
Include a class UserMainCode with a static method sumOfDigits which accepts string input.
Return the sum as output. If there is no digit in the given string return -1 as output.
Create a class Main which would get the input and call the static
method sumOfDigits present in the UserMainCode.
Sample Input 1:
good23bad4
Sample Output 1:
9
Sample Input 2:
good
Sample Output 2:
-1
importjava.util.Scanner;
publicclassUserMaincode
{
staticintsumOfDigits(String str)
{
int k=str.length();
int sum=0,i;
for(i=0;i<k;i++)
{
if(str.charAt(i)>='0'&&str.charAt(i)<='9')
{
/*StringBuffer s=newStringBuffer();
s.append(str.charAt(i));*/
sum=sum+Integer.parseInt(str.charAt(i)+””);
}
}
if(sum>=0)
return sum;
else
return -1;
}
}
20.String Concatenation
Write code to get two strings as input and If strings are of same length simply append them
together and return the final string. If given strings are of different length, remove starting
characters from the longer string so that both strings are of same length then append them
together and return the final string.
Include a class UserMainCode with a static method concatstring which accepts two string
input.
The return type of the output is a string which is the concatenated string.
Create a class Main which would get the input and call the static
method concatstring present in the UserMainCode.
Sample Input 1:
Hello
hi
Sample Output 1:
lohi
Sample Input 2:
Hello
Delhi
Sample Output 2:
HelloDelhi
importjava.util.Scanner;
/**
* @paramargs
*/
static String concatstring(String s1,String s2)
{
intk=s1.length();
int a=s2.length();
String s3="0";
if(k==a)
{
s3=s1.concat(s2);
}
if(k>a)
{
s3=(s1.substring(k-a).concat(s2));
}
if(k<a)
{
s3=((s1.concat(s2.substring(a-k))));
}
return s3;
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner in=new Scanner(System.in);
String n1=in.nextLine();
String n2=in.nextLine();
String n3=UserMainCode.concatstring(n1,n2);
System.out.println(n3);
}
Write a program to read a string and validate whether the given string is a valid color code
based on the following rules:
- Must start with "#" symbol
- Must contain six characters after #
- It may contain alphabets from A-F or digits from 0-9
Sample Input 2:
#FF9(22
Sample Output 2:
Invalid
importjava.util.Scanner;
publicclassUserMainCode {
publicstaticintvalidateColorCode(String s1)
{
if(s1.matches("[#]{1}[A-F|0-9]{6}"))
return 1;
else
return -1;
}
publicstaticvoid main(String[] args) {
Scanner in=newScanner(System.in);
String s1=in.nextLine();
int k=UserMainCode.validateColorCode(s1);
if(k==1)
System.out.println("VALID");
else
System.out.println("INVALID");
in.close();
}
}
22.Three Digits
Write a program to read a string and check if the given string is in the format "CTS-XXX"
where XXX is a three digit number.
Include a class UserMainCode with a static method validatestrings which accepts a string.
The return type (integer) should return 1 if the string format is correct else return -1.
Create a Class Main which would be used to accept a String and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string.
Output consists of a string (Valid or Invalid).
Refer sample output for formatting specifications.
Sample Input 1:
CTS-215
Sample Output 1:
Valid
Sample Input 2:
CTS-2L5
Sample Output 2:
Invalid
importjava.util.Scanner;
publicclassUserMainCode {
publicstaticintvalidatestrings(String s1)
{
if(s1.matches("(CTS)[-]{1}[0-9]{3}"))
return 1;
else
return -1;
}
publicstaticvoid main(String[] args) {
Scanner in=newScanner(System.in);
String s1=in.nextLine();
int k=UserMainCode.validatestrings(s1);
if(k==1)
System.out.println("VALID");
else
System.out.println("INVALID");
in.close();
}
}
27.Validating Input Password
102.Write a code get a password as string input and validate using the rules specified below.
Apply following validations:
Create a class Main which would get the input and call the static
method validatePassword present in the UserMainCode.
Sample Input 1:
ashok_23
Sample Output 1:
Valid
Sample Input 2:
1980_200
Sample Output 2:
Invalid
importjava.util.Scanner;
publicclassUserMainCode {
publicstaticintvalidatePassword(String s1)
{
int k=s1.length();
return 1;
}
else
return -1;
}
publicstaticvoid main(String[] args) {
Scanner in=newScanner(System.in);
String s1=in.nextLine();
int k=UserMainCode.validatePassword(s1);
if(k==1)
System.out.println("VALID");
else
System.out.println("INVALID");
in.close();
}
}
28.iD Validation
Write a program to get two string inputs and validate the ID as per the specified format.
Include a class UserMainCode with a static method validateIDLocations which accepts two
strings as input.
Create a class Main which would get the input and call the static
method validateIDLocations present in the UserMainCode.
Sample Input 1:
CTS-hyd-1234
hyderabad
Sample Output 1:
Valid id
Sample Input 2:
CTS-hyd-123
hyderabad
Sample Output 2:
Invalid id
importjava.util.Scanner;
publicclassUserMainCode {
if(s1.matches("(CTS)[-]{1}[a-zA-Z]{3}[-]{1}[0-9]{4}"))
{
if(s1.charAt(4)==s2.charAt(0) && s1.charAt(5)==s2.charAt(1) &&
s1.charAt(6)==s2.charAt(2))
return"valid";
}
return"invalid";
}
publicstaticvoid main(String[] args) {
Scanner in=newScanner(System.in);
String s1=in.nextLine();
String s2=in.nextLine();
System.out.println(UserMainCode.validateIDLocations(s1,s2));
in.close();
}
29.Remove Elements
Write a program to remove all the elements of the given length and return the size of the
final array as output. If there is no element of the given length, return the size of the same
array as output.
Include a class UserMainCode with a static method removeElements which accepts a string
array, the number of elements in the array and an integer. The return type (integer) should
return the size of the final array as output.
Create a Class Main which would be used to accept Input String array and a number and call
the static method present in UserMainCode.
Assume maximum length of array is 20.
Input and Output Format:
Input consists of a integers that corresponds to n, followed by n strings and finally m which
corresponds to the length value.
Output consists of a single Integer.
Refer sample output for formatting specifications.
Sample Input 1:
5
a
bb
b
ccc
ddd
2
Sample Output 1:
4
importjava.util.Scanner;
publicclassUserMainCode {
publicstaticintremoveElements(String s1[],int k)
{
int a=s1.length;
for(inti=0;i<s1.length;i++)
{
if(s1[i].length()==k)
--a;
return a;
}
publicstaticvoid main(String[] args) {
Scanner in=newScanner(System.in);
int l=Integer.parseInt(in.nextLine());
String s1[]=new String[l];
for(inti=0;i<l;i++)
s1[i]=in.nextLine();
int k=Integer.parseInt(in.nextLine());
System.out.println(UserMainCode.removeElements(s1,k));
in.close();
}
}
32.IP Validator
Write a program to read a string and validate the IP address. Print “Valid” if the IP address is
valid, else print “Invalid”.
Include a class UserMainCode with a static method ipValidator which accepts a string. The
return type (integer) should return 1 if it is a valid IP address else return 2.
Create a Class Main which would be used to accept Input String and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string that corresponds to an IP.
Output consists of a string(“Valid” or “Invalid”).
Refer sample output for formatting specifications.
Note: An IP address has the format a.b.c.d where a,b,c,d are numbers between 0-255.
Sample Input 1:
132.145.184.210
Sample Output 1:
Valid
Sample Input 2:
132.145.184.290
Sample Output 2:
Invalid
importjava.util.Scanner;
importjava.util.StringTokenizer;
publicclassUserMainCode {
publicstaticStringipValidator(String s1)
{
StringTokenizerst=newStringTokenizer(s1,".");
inti=0;
while(st.hasMoreTokens())
{
int k=Integer.parseInt(st.nextToken());
if(k>=0 && k<=255)
++i;
}
if(i==4)
return"VALID";
return"Invalid";
}
publicstaticvoid main(String[] args) {
Scanner in=newScanner(System.in);
String s1=in.nextLine();
System.out.println(UserMainCode.ipValidator(s1));
in.close();
}
}
34.File Extension
Write a program to read a file name as a string and find out the file extension and return it
as output. For example, the file sun.gif has the extension gif.
Include a class UserMainCode with a static method fileIdentifier which accepts a string. The
return type (string) should return the extension of the input string (filename).
Create a Class Main which would be used to accept Input String and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string that corresponds to a file name.
Output consists of a string(extension of the input string (filename)).
Refer sample output for formatting specifications.
Sample Input 1:
sun.gif
Sample Output 1:
Gif
importjava.util.Scanner;
importjava.util.StringTokenizer;
publicclassUserMainCode {
publicstaticStringipValidator(String s1)
{
StringTokenizerst=newStringTokenizer(s1,".");
st.nextToken();
String s=st.nextToken();
return s;
}
publicstaticvoid main(String[] args) {
Scanner in=newScanner(System.in);
String s1=in.nextLine();
System.out.println(UserMainCode.ipValidator(s1));
in.close();
}
}
Note:
- Space should not be counted as a letter.
- Consider letters to be case sensitive. ie, "a" is not equal to "A".
Include a class UserMainCode with a static method commonChars which accepts two
strings as input.
The return type of the output is the count of all common and unique characters in the two
strings.
Create a class Main which would get the inputs and call the static
method commonChars present in the UserMainCode.
Sample Input 1:
a black cow
battle ship
Sample Output 1:
2
[Explanation : b, l and a are the common letters between the 2 input strings. But 'a' appears
more than once in the 1st string. So 'a' should not be considered while computing the count
value.]
Sample Input 2:
australia
sri lanka
Sample Output 2:
4
importjava.util.Scanner;
publicclassUserMainCode
{
temp1=s1.substring(0,k).concat(s1.substring(k+1));
else
temp1=s1.substring(k+1);
String d=s1.charAt(k)+"";
if(!temp.contains(c))
{
++l;
}
}
}
return l;
}
publicstaticvoid main(String args[])
{
Scanner in=newScanner(System.in);
String str=in.nextLine();
String str1=in.nextLine();
intans=UserMainCode.uniqueCounter(str,str1);
System.out.println(ans);
in.close();
}
}
36.Initial Format
Write a program to input a person's name in the format "FirstName LastName" and return
the person name in the following format - "LastName, InitialOfFirstName".
Include a class UserMainCode with a static method nameFormatter which accepts a string.
The return type (string) should return the expected format.
Create a Class Main which would be used to accept Input String and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string that corresponds to a Person's name.
Output consists of a string(person's name in expected format).
Refer sample output for formatting specifications.
Sample Input :
Jessica Miller
Sample Output:
Miller, J
importjava.util.Scanner;
importjava.util.StringTokenizer;
publicclassUserMainCode {
}
publicstaticvoid main(String[] args) {
Scanner in=newScanner(System.in);
String s1=in.nextLine();
System.out.println(UserMainCode.nameFormatter(s1));
in.close();
}
}
37.Character cleaning
Write a program to input a String and a character, and remove that character from the given
String. Print the final string.
Include a class UserMainCode with a static method removeCharacter which accepts a string
and a character. The return type (string) should return the character cleaned string.
Create a Class Main which would be used to accept Input String and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string and a character.
Output consists of a string(the character cleaned string).
Refer sample output for formatting specifications.
Sample Input :
elephant
e
Sample Output:
Lphant
importjava.util.Scanner;
publicclassUserMainCode {
/**
* @paramargs
*/
staticStringremoveCharacter(String s1,char s2)
{
int k=s1.length();
StringBuffer sb1= newStringBuffer();
for(inti=0;i<k;i++)
{
char c=s1.charAt(i);
if(c!=s2)
sb1.append(c);
}
return sb1.toString();
}
publicstaticvoid main(String[] args) {
// TODO Auto-generated method stub
Scanner in=newScanner(System.in);
String n1=in.nextLine();
char n2=in.next().charAt(0);
String n3=UserMainCode.removeCharacter(n1,n2);
System.out.println(n3);
}
38.Vowel Check
Write a program to read a String and check if that String contains all the vowels. Print “yes”
if the string contains all vowels else print “no”.
Include a class UserMainCode with a static method getVowels which accepts a string. The
return type (integer) should return 1 if the String contains all vowels else return -1.
Create a Class Main which would be used to accept Input String and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string.
Output consists of a string(“yes” or “no”).
Refer sample output for formatting specifications.
Sample Input 1:
abceiduosp
Sample Output 1:
yes
Sample Input 2:
bceiduosp
Sample Output 2:
No
importjava.util.Scanner;
publicclassUserMainCode {
publicstaticStringgetVowels(String s1)
{ String s=”yes”;
if(s1.contains(“a”) && s1.contains(“e”) &&s1.contains(“i”)
&&s1.contains(“o”) && s1.contains(“u”))
s=yes;
else
s=”no”;
return s;
}
publicstaticvoid main(String[] args) {
Scanner in=newScanner(System.in);
String s1=in.nextLine();
System.out.println(UserMainCode.getVowels(s1));
in.close();
}
}
39.Swap Characters
Write a program to input a String and swap the every 2 characters in the string. If size is an
odd number then keep the last letter as it is. Print the final swapped string.
Include a class UserMainCode with a static method swapCharacter which accepts a string.
The return type (String) should return the character swapped string.
Create a Class Main which would be used to accept Input String and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string.
Output consists of a string.
Refer sample output for formatting specifications.
Sample Input 1:
TRAINER
Sample Output 1:
RTIAENR
Sample Input 2:
TOM ANDJERRY
Sample output 2:
OT MNAJDREYR
importjava.util.Scanner;
publicclassUserMainCode {
}
returnsb.toString();
}
publicstaticvoid main(String[] args) {
Scanner in=newScanner(System.in);
String s1=in.nextLine();
System.out.println(UserMainCode.swapCharacter(s1));
in.close();
}
}
Create a class Main which would get the input and call the static
method countSequentialChars present in the UserMainCode.
Sample Input 1:
abcXXXabc
Sample Output 1:
1
Sample Input 2:
aaaxxyzAAAx
Sample Output 2:
2
importjava.util.Scanner;
publicclassUserMainCode {
staticintcountSequentialChars(String str1)
{
int c=0;
for(inti=0;i<str1.length()-1;i++)
{
if(str1.charAt(i)==str1.charAt(i+1))
{
if(str1.charAt(i+1)==str1.charAt(i+2))
{
++c;
i=i+2;
}
}
}
return c;
}
publicstaticvoid main(String args[])
{
String s1;
Scanner in=newScanner(System.in);
s1=in.nextLine();
intans=UserMainCode.countSequentialChars(s1);
System.out.println(ans);
}
43.Length of the Largest Chunk
Write a program to read a string and find the length of the largest chunk in the string. If
there are no chunk print “No chunks” else print the length.
NOTE: chunk is the letter which is repeating 2 or more than 2 times.
Include a class UserMainCode with a static method largestChunk which accepts a string.
The return type (Integer) should return the length of the largest chunk if the chunk is
present, else return -1.
Create a Class Main which would be used to accept Input String and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string.
Refer sample output for formatting specifications.
Sample Input 1:
You are toooo good
Sample Output 1:
4
(Because the largest chunk is letter 'o' which is repeating 4 times)
Sample Input 2:
who are u
Sample Output 2:
No chunks
importjava.util.Scanner;
importjava.util.StringTokenizer;
publicclassUserMainCode {
staticintlargestChunk(String str1)
{
intc,max=0,i=0,j=0;
StringTokenizerst=newStringTokenizer(str1);
while(st.hasMoreTokens())
{
String s1=st.nextToken();
for(i=0;i<s1.length()-1;i++)
{
c=1;
if(s1.charAt(i)==s1.charAt(i+1))
{ ++c;
for(j=i+2;j<s1.length();j++)
{
if(s1.charAt(i)==s1.charAt(j))
{
++c;
}
else
break;
}
}
if(c>max)
{
max=c;
i=j-1;
}
}
}
return (max);
}
publicstaticvoid main(String args[])
{
String s1;
Scanner in=newScanner(System.in);
s1=in.nextLine();
intans=UserMainCode.largestChunk(s1);
if(ans>=2)
System.out.println(ans);
else
System.out.println("No Chunks");
Include a class UserMainCode with a static method uniqueCounter which accepts a string as
input.
The return type of the output is the count of all unique characters in the strings.
Create a class Main which would get the input and call the static
method uniqueCounter present in the UserMainCode.
Sample Input 1:
HelloWorld
Sample Output 1:
5
Sample Input 2:
coco
Sample Output 2:
-1
importjava.util.Scanner;
publicclassUserMainCode
{
staticintuniqueCounter(String s)
{
inti,l=0;
String temp;
for(i=0;i<s.length();i++)
{
if(i!=0)
temp=s.substring(0,i).concat(s.substring(i+1));
else
temp=s.substring(i+1);
String c=s.charAt(i)+"";
if(!temp.contains(c))
{
++l;
}
}
return l;
}
publicstaticvoid main(String args[])
{
Scanner in=newScanner(System.in);
String str=in.nextLine();
intans=UserMainCode.uniqueCounter(str);
System.out.println(ans);
in.close();
}
}
45.Name Shrinking
Write a program that accepts a string as input and converts the first two names into dot-
separated initials and printa the output.
Input string format is 'fn mn ln'. Output string format is 'ln [mn's 1st character].[fn's 1st
character]'
}
}
46.Odd Digit Sum
Write a program to input a String array. The input may contain digits and alphabets
(“de5g4G7R”). Extract odd digits from each string and find the sum and print the output.
For example, if the string is "AKj375A" then take 3+7+5=15 and not as 375 as digit.
Include a class UserMainCode with a static method oddDigitSum which accepts a string
array and the size of the array. The return type (Integer) should return the sum.
Create a Class Main which would be used to accept Input Strings and call the static method
present in UserMainCode.
Assume maximum length of array is 20.
Input and Output Format:
Input consists of an integer n, corresponds to the number of strings, followed by n Strings.
Output consists of an Integer.
Refer sample output for formatting specifications.
Sample Input :
3
cog2nizant1
al33k
d2t4H3r5
Sample Output :
15
(1+3+3+3+5)
importjava.util.Scanner;
publicclassUserMainCode {
publicstaticintoddDigitSum(String s1[],int k)
{
intsum=0;
for(inti=0;i<k;i++)
{
for(int j=0;j<s1[i].length();j++)
{
char c=s1[i].charAt(j);
if(c>='0'&& c<='9')
{
int x=Integer.parseInt(c+"");
if(x%2!=0)
sum=sum+x;
}
}
}
returnsum;
}
publicstaticvoid main(String[] args) {
Scanner in=newScanner(System.in);
int l=Integer.parseInt(in.nextLine());
String s1[]=new String[l];
for(inti=0;i<l;i++)
s1[i]=in.nextLine();
System.out.println(UserMainCode.oddDigitSum(s1,l));
in.close();
}
}
49.Color Code Validation
Give a String as colour code as input and write code to validate whether the given string is a
valid color code or not.
Validation Rule:
String should start with the Character '#'.
Length of String is 7.
It should contain 6 Characters after '#' Symbol.
It should contain Characters between 'A-F' and Digits '0-9'.
If String acceptable the return true otherwise false.
The return type of the output is a boolean which returns true if its is a valid color code else it
returns false.
Create a class Main which would get the input and call the static
method validateColourCode present in the UserMainCode.
Sample Input 1:
#99FF33
Sample Output 1:
true
Sample Input 2:
#CCCC99#
Sample Output 2:
false
importjava.util.Scanner;
publicclassUserMainCode {
publicstatic String validateColorCode(String s1)
{
if(s1.matches("[#]{1}[A-F|0-9]{6}"))
return"true";
else
return"false";
}
publicstaticvoid main(String[] args) {
Scanner in=newScanner(System.in);
String s1=in.nextLine();
System.out.println(UserMainCode.validateColorCode(s1));
in.close();
}
}
Include a class UserMainCode with a static method getString which accepts a string and an
integer n as input.
Create a class Main which would get the input and call the static method getString present
in the UserMainCode.
Sample Input 1:
Cognizant
3
Sample Output 1:
Cognizantantantant
Sample Input 2:
myacademy
2
Sample Output 2:
Myacademymymy
importjava.util.Scanner;
publicclassUserMainCode {
publicstaticStringgetString (String s1,int k)
{
int x=s1.length();
StringBuffersb=newStringBuffer(s1);
String s2=s1.substring(x-k);
for(inti=1;i<=k;i++)
sb.append(s2);
returnsb.toString();
}
in.close();
}
}
54.Flush Characters
Write a program to read a string from the user and remove all the alphabets and
spaces from the String, and only store special characters and digit in the output String. Print
the output string.
Include a class UserMainCode with a static method getSpecialChar which accepts a string.
The return type (String) should return the character removed string.
Create a Class Main which would be used to accept a string and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a strings.
Output consists of an String (character removed string).
Refer sample output for formatting specifications.
Sample Input :
cogniz$#45Ant
Sample Output :
$#45
importjava.util.Scanner;
publicclassUserMainCode {
publicstatic String getString (String s1)
{
int x=s1.length();
StringBuffersb=newStringBuffer();
for(inti=0;i<x;i++)
{ char c=s1.charAt(i);
if((!Character.isAlphabetic(c)) && c!=’ ‘)
sb.append(c);
}
returnsb.toString();
}
in.close();
}
}
55.String Repetition
Write a program to read a string and an integer and return a string based on the below
rules.
If input2 is equal or greater than 3 then repeat the first three character of the String by
given input2 times, separated by a space.
If input2 is 2 then repeat the first two character of String two times separated by a space,
If input2 is 1 then return the first character of the String.
Include a class UserMainCode with a static method repeatString which takes a string &
integer and returns a string based on the above rules.
Create a Class Main which would be used to accept Input string and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string and integer.
Output consists of a string.
Refer sample output for formatting specifications.
Sample Input 1:
COGNIZANT
4
Sample Output 1:
COG COG COG COG
Sample Input 2:
COGNIZANT
2
Sample Output 2:
CO CO
importjava.util.Scanner;
publicclassUserMainCode {
publicstaticStringrepeatString(String s1,int n)
{
StringBuffersb=newStringBuffer();
for(inti=0;i<n;i++)
{
if(n>=3)
sb.append(s1.substring(0,3)).append(" ");
elseif(n==2)
sb.append(s1.substring(0,2)).append(" ");
elseif(n==1)
sb.append(s1.substring(0,1));
}
returnsb.toString();
}
in.close();
}
}
59.Simple String Manipulation
Write a program to read a string and return a modified string based on the following rules.
Return the String without the first 2 chars except when
1. keep the first char if it is 'j'
2. keep the second char if it is 'b'.
Include a class UserMainCode with a static method getString which accepts a string. The
return type (string) should be the modified string based on the above rules. Consider all
letters in the input to be small case.
Create a Class Main which would be used to accept Input string and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string with maximum size of 100 characters.
Output consists of a string.
Refer sample output for formatting specifications.
Sample Input 1:
hello
Sample Output 1:
llo
Sample Input 2:
java
Sample Output 2:
Jva
importjava.util.Scanner;
publicclassUserMainCode {
publicstatic String getString(String s1)
{
char c=s1.charAt(0);
chard=s1.charAt(1);
String s=s1.substring(2);
StringBuffersb=newStringBuffer();
if(c!='j'&&d!='b')
sb.append(s);
elseif(c!='j'&&d=='b')
sb.append(d).append(s);
elseif(c=='j'&&d!='b')
sb.append(c).append(s);
else
sb.append(s1);
returnsb.toString();
}
in.close();
}
}
62.Count Vowels
Given a string input, write a program to find the total number of vowels in the given string.
Include a class UserMainCode with a static method “countVowels” that accepts a String
argument and returns an int that corresponds to the total number of vowels in the given
string.
Create a class Main which would get the String as input and call the static
method countVowels present in the UserMainCode.
Sample Input:
avinash
Sample Output:
3
importjava.util.Scanner;
publicclassUserMainCode {
publicstaticintcountVowels(String s1)
{
String s=s1.toLowerCase();
int c=0;
for(inti=0;i<s.length();i++)
{
char k=s.charAt(i);
if(k=='a' || k=='e' || k=='i' || k=='o' || k=='u')
++c;
}
return c;
}
in.close();
}
}
64.Reverse SubString
Given a string, startIndex and length, write a program to extract the substring from right to
left. Assume the last character has index 0.
argument corresponds to the startIndex and the third argument corresponds to the length.
Create a class Main which would get a String and 2 integers as input and call the static
method reverseSubstring present in the UserMainCode.
Sample Input:
rajasthan
2
3
Sample Output:
hts
importjava.util.Scanner;
publicclassUserMainCode {
publicstatic String reverseSubstring(String s1,int n1,int n2)
{
StringBuffersb=newStringBuffer(s1);
String s=sb.reverse().toString();
returns.substring(n1,n1+n2);
in.close();
}
}
65.String Finder
Given three strings say Searchstring, Str1 and Str2 as input, write a program to find out if
Str2 comes after Str1 in the Searchstring.
Include a class UserMainCode with a static method “stringFinder” that accepts 3 String
arguments and returns an integer. The 3 arguments correspond to SearchString, Str1 and
Str2. The function returns 1 if Str2 appears after Str1 in the Searchtring. Else it returns 2.
Create a class Main which would get 3 Strings as input and call the static
method stringFinder present in the UserMainCode.
Input and Output Format:
Input consists of 3 strings.
The first input corresponds to the SearchString.
The second input corresponds to Str1.
The third input corresponds to Str2.
Output consists of a string that is either “yes” or “no”
Sample Input 1:
geniousRajKumarDev
Raj
Dev
Sample Output 1:
yes
Sample Input 2:
geniousRajKumarDev
Dev
Raj
Sample Output 2:
No
importjava.util.Scanner;
publicclassUserMainCode {
}
publicstaticvoid main(String[] args) {
Scanner in=newScanner(System.in);
String s1=in.nextLine();
String s2=in.nextLine();
String s3=in.nextLine();
intans=UserMainCode.stringFinder(s1,s2,s3);
if(ans==1)
System.out.println("yes");
else
System.out.println("no");
in.close();
}
}
66.Phone Number Validator
Given a phone number as a string input, write a program to verify whether the phone
number is valid using the following business rules:
-It should contain only numbers or dashes (-)
- dashes may appear at any position
-Should have exactly 10 digits
Create a class Main which would get a String as input and call the static
method validatePhoneNumber present in the UserMainCode.
Sample Input 1:
265-265-7777
Sample Output 1:
Valid
Sample Input 2:
265-65-7777
Sample Output 1:
Invalid
importjava.util.Scanner;
publicclassUserMainCode {
publicstaticintvalidatePhoneNumber(String s1)
{
int l=0;
for(inti=0;i<s1.length();i++)
{
char c=s1.charAt(i);
if(Character.isDigit(c))
{
++l;
}
elseif(c!='-')
break;
}
if(l==10&& i==s1.length())
return 1;
else
return 0;
}
publicstaticvoid main(String[] args) {
Scanner in=newScanner(System.in);
String s1=in.nextLine();
intans=UserMainCode.validatePhoneNumber(s1);
if(ans==1)
System.out.println("valid");
else
System.out.println("invalid");
in.close();
}
}
68.Negative String
Given a string input, write a program to replace every appearance of the word "is" by "is
not".
If the word "is" is immediately preceeded or followed by a letter no change should be made
to the string .
Include a class UserMainCode with a static method “negativeString” that accepts a String
arguement and returns a String.
Create a class Main which would get a String as input and call the static
method negativeString present in the UserMainCode.
Sample Input 1:
This is just a misconception
Sample Output 1:
This is not just a misconception
Sample Input 2:
Today is misty
Sample Output 2:
Today is not misty
importjava.util.Scanner;
importjava.util.StringTokenizer;
publicclassUserMainCode {
StringBuffersb=newStringBuffer();
StringTokenizerst=newStringTokenizer(s1," ");
while(st.hasMoreTokens())
{
String s2=st.nextToken();
if(s2.equals("is"))
{
String s3=s2.replace("is", "is not");
sb.append(s3).append(" ");
}
else
{
sb.append(s2).append(" ");
}
}
returnsb.toString();
}
publicstaticvoid main(String[] args) {
Scanner in=newScanner(System.in);
String s1=in.nextLine();
System.out.println(UserMainCode.negativeString(s1));
in.close();
}
}
69.Validate Number
Given a negative number as string input, write a program to validate the number and to
print the corresponding positive number.
Include a class UserMainCode with a static method “validateNumber” that accepts a string
argument and returns a string. If the argument string contains a valid negative number, the
method returns the corresponding positive number as a string. Else the method returns -1.
Create a class Main which would get a String as input and call the static
method validateNumber present in the UserMainCode.
Sample Input 1:
-94923
Sample Output 1:
94923
Sample Input 2:
-6t
Sample Output 2:
-1
import java.util.Scanner;
publicclass UserMainCode {
publicstatic String validateNumber(String s1)
{
if(s1.matches("^-[0-9]*" ))
return s1.substring(1);
return"invalid";
}
publicstaticvoid main(String[] args) {
Scanner in=new Scanner(System.in);
String s1=in.nextLine();
System.out.println(UserMainCode.validateNumber(s1));
in.close();
}
}
71.String Processing - III
Write a program to read a string where all the lowercase 'x' chars have been moved to the
end of the string.
Include a class UserMainCode with a static method moveX which accepts the string. The
return type is the modified string.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
xxhixx
Sample Output 1:
hixxxx
Sample Input 2:
XXxxtest
Sample Output 2:
XXtestxx
import java.util.Scanner;
publicclass UserMainCode
{
Write a program to read a string and also a number N. Form a new string starting with 1st
character and with every Nth character of the given string. Ex - if N is 3, use chars 1, 3, 6, ...
and so on to form the new String. Assume N>=1.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Input 1:
HelloWorld
2
Sample Output 1:
HelWrd
import java.util.Scanner;
publicclass UserMainCode
{
Write a program to read a string and check if it starts with '_ix' where '_' is any one char(a-z,
A-Z, 0-9).
Include a class UserMainCode with a static method checkPattern which accepts the string.
The return type is TRUE / FALSE.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
Mix Mania
Sample Output 1:
TRUE
import java.util.Scanner;
publicclass UserMainCode
{
76.String Processing
Write a program to read a string and return a new string where the first and last chars have
been interchanged.
Include a class UserMainCode with a static method exchangeCharacters which accepts the
string. The return type is the modified string.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
HelloWorld
Sample Output 1:
delloWorlH
import java.util.Scanner;
publicclass UserMainCode
{
77.Regular Expression - II
If all the conditions are satisifed then print TRUE else print FALSE.
Include a class UserMainCode with a static method validateString which accepts the string.
The return type is the boolean formed based on rules.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
AcB
Sample Output 1:
TRUE
Sample Input 2:
A2B
Sample Output 2:
FALSE
import java.util.Scanner;
publicclass UserMainCode
{
Include a class UserMainCode with a static method repeatString which accepts the the
string and the number n. The return type is the string based on the problem statement.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Input 1:
Lily
2
Sample Output 1:
LilyLily
import java.util.Scanner;
publicclass UserMainCode
{
80.String Processing - V
Write a program to read a string array, concatenate the array elements one by one
separated by comma and return the final string as output.
Include a class UserMainCode with a static method concatString which accepts the string
array. The return type is the string.
Create a Class Main which would be used to accept the string array and call the static
method present in UserMainCode.
Sample Input 1:
3
AAA
BBB
CCC
Sample Output 1:
AAA,BBB,CCC
import java.util.Scanner;
publicclass UserMainCode
{
}
sb.deleteCharAt(sb.length()-1);
return sb.toString();
}
publicstaticvoid main(String args[])
{
Scanner in=new Scanner(System.in);
int n=Integer.parseInt(in.nextLine());
String str[]=new String[n];
for(int i=0;i<n;i++)
str[i]=in.nextLine();
System.out.println(UserMainCode.validateString(str,n));
in.close();
}
}
82.Math Calculator
Write a program that accepts three inputs, first two inputs are operands in int form and
third one being one of the following five operators: +, -, *, /, %. Implement calculator logic
and return the result of the given inputs as per the operator provided. In case of division,
Assume the result would be integer.
Include a class UserMainCode with a static method calculator which accepts two integers,
one operand and returns the integer.
Create a Class Main which would be used to accept three integers and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of two integers and a character.
Output consists of a integer.
Refer sample output for formatting specifications.
Sample Input 1:
23
2
*
Sample Output 1:
46
import java.util.Scanner;
publicclass UserMainCode
{
Given a string array (s) and non negative integer (n) and return the number of elements in
the array which have same number of characters as the givent int N.
Include a class UserMainCode with a static method countWord which accepts the string
array and integer. The return type is the string formed based on rules.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Input 1:
4
a
bb
b
ccc
1
Sample Output 1:
2
Sample Input 2:
5
dog
cat
monkey
bear
fox
3
Sample Output 2:
3
import java.util.Scanner;
publicclass UserMainCode
{
staticint WordCount(String s[],int x,int y)
{
int ans=0;
for(int i=0;i<x;i++)
{
if(s[i].length()==y)
{
ans++;
}
}
return ans;
}
publicstaticvoid main(String args[])
{
Scanner in=new Scanner(System.in);
int n=Integer.parseInt(in.nextLine());
String str[]=new String[n];
for(int i=0;i<n;i++)
str[i]=in.nextLine();
int a=Integer.parseInt(in.nextLine());
System.out.println(UserMainCode.WordCount(str,n,a));
in.close();
}
}
87.Word Count - II
Write a program to read a string and count the number of words present in it.
Include a class UserMainCode with a static method countWord which accepts the string.
The return type is the integer giving out the count of words.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
Today is Sunday
Sample Output 1:
3
import java.util.Scanner;
import java.util.StringTokenizer;
publicclass UserMainCode
{
staticint WordCount(String s)
{
StringTokenizer st=new StringTokenizer(s);
int n=st.countTokens();
return n;
}
publicstaticvoid main(String args[])
{
Scanner in=new Scanner(System.in);
String str=in.nextLine();
System.out.println(UserMainCode.WordCount(str));
in.close();
}
}
90.String Processing - V
Write a program to read a string and also a number N. Form a new string made up of n
repetitions of the last n characters of the String. You may assume that n is between 1 and
the length of the string.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Input 1:
Hello
2
Sample Output 1:
lolo
Sample Input 2:
Hello
3
Sample Output 2:
llollollo
import java.util.Scanner;
publicclass UserMainCode {
publicstatic String getString (String s1,int k)
{
int x=s1.length();
StringBuffer sb=new StringBuffer();
String s2=s1.substring(x-k);
for(int i=1;i<=k;i++)
sb.append(s2);
return sb.toString();
}
in.close();
}
}
Sample Input 1:
ab2
Sample Output 1:
TRUE
Sample Input 2:
72CAB
Sample Output 2:
FALSE
import java.util.Scanner;
publicclass UserMainCode {
publicstatic String validateString(String s1)
{
if(s1.matches("[^0-9]{1}.*"))
return"true";
return"false";
}
Write a program to read a string and return a new string which is made of every alternate
characters starting with the first character. For example NewYork will generate Nwok, and
Samurai will generate Smri.
Include a class UserMainCode with a static method getAlternateChars which accepts the
string. The return type is the modified string.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
Hello
Sample Output 1:
Hlo
import java.util.Scanner;
publicclass UserMainCode {
publicstatic String getAlternateChars(String s1)
{
StringBuffer sb=new StringBuffer();
for(int i=0;i<s1.length();i=i+2)
sb.append(s1.charAt(i));
return sb.toString();
Include a class UserMainCode with a static method fetchUserName which accepts the
string. The return type is the modified string.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
[email protected]
Sample Output 1:
admin
import java.util.Scanner;
import java.util.StringTokenizer;
publicclass UserMainCode {
publicstatic String getAlternateChars(String s1)
{
if(s1.charAt(0)!=’@’)
{
StringTokenizer st=new StringTokenizer(s1,"@");
return st.nextToken();
}
return “ “;
}
Write a program to read a two strings and one int value(N). check if Nth character of first
String from start and Nth character of second String from end are same or not. If both are
same return true else return false.
Check need not be Case sensitive
Include a class UserMainCode with a static method isEqual which accepts the two strings
and a integer n. The return type is the TRUE / FALSE.
Create a Class Main which would be used to read the strings and integer and call the static
method present in UserMainCode.
Sample Input 1:
AAAA
abab
2
Sample Output 1:
TRUE
Sample Input 2:
MNOP
QRST
3
Sample Output 2:
FALSE
import java.util.Scanner;
publicclass UserMainCode
{
publicstaticString getAlternateChars(String s1,String s2,int n)
{
String c=s1.charAt(n-1)+"";
String d=s2.charAt(s2.length()-n)+"";
if(c.equalsIgnoreCase(d))
return"true";
return"false";
1.Start Case
Write a program to read a sentence in string variable and convert the first letter of each
word to capital case. Print the final string.
Note: - Only the first letter in each word should be in capital case in final string.
Include a class UserMainCode with a static method printCapitalized which accepts a string.
The return type (String) should return the capitalized string.
Create a Class Main which would be used to accept a string and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a strings.
Output consists of a String (capitalized string).
Refer sample output for formatting specifications.
Sample Input:
Now is the time to act!
Sample Output:
Now Is The Time To Act!
publicclass UserMainCode {
publicstatic String printCapitalized(String s1)
{
StringBuffer s5=new StringBuffer();
StringTokenizer t=new StringTokenizer(s1," ");
while(t.hasMoreTokens())
{
String s2=t.nextToken();
String s3=s2.substring(0,1);
String s4=s2.substring(1, s2.length());
s5.append(s3.toUpperCase()).append(s4).append("
"); }
return s5.toString();
Include a class UserMainCode with a static method validatePAN which accepts a string. The
return type (Integer) should return 1 if the string is a valid PAN no. else return 2.
Create a Class Main which would be used to accept a string and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string, which corresponds to the PAN number.
Output consists of a string - "Valid" or "Invalid"
Refer sample output for formatting specifications.
Sample Input 1:
ALD3245E
Sample Output 1:
Valid
Sample Input 2:
OLE124F
Sample Output 2:
Invalid
import java.util.Scanner;
publicclass UserMainCode {
publicstatic String validatePAN(String s1)
{
if(s1.matches("[A-Z]{3}[0-9]{4}[A-Z]{1}"))
return"valid";
else
return"invalid";
}
6.Test Vowels
Write a program to read a string and check if given string contains exactly five vowels in any
order. Print “Yes” if the condition satisfies, else print “No”.
Assume there is no repetition of any vowel in the given string and all characters are
lowercase.
Include a class UserMainCode with a static method testVowels which accepts a string. The
return type (Integer) should return 1 if all vowels are present, else return 2.
Create a Class Main which would be used to accept a string and call the static method
present in UserMainCode.
Sample Input 2:
cbisouzze
Sample Output 2:
No
import java.util.Scanner;
public classUserMainCode {
}
}
7.Dash Check
Write a program to read two strings and check whether or not they have dashes in the same
places. Print “Yes” if the condition satisfies, else print “No”.
Include a class UserMainCode with a static method compareDashes which accepts two
strings. The return type (Integer) should return 1 if all dashes are placed correctly, else
return 2.
Create a Class Main which would be used to accept two strings and call the static method
present in UserMainCode.
Note: The strings must have exactly the same number of dashes in exactly the same
positions. The strings might be of different length.
Input and Output Format:
Input consists of two strings.
Output consists of a string (“Yes” or “No”).
Refer sample output for formatting specifications.
Sample Input 1:
hi—there-you.
12--(134)-7539
Sample Output 1:
Yes
Sample Input 2:
-15-389
-xyw-zzy
Sample Output 2:
No
import java.util.Scanner;
8.Reverse Split
Write a program to read a string and a character, and reverse the string and convert it in a
format such that each character is separated by the given character. Print the final string.
Include a class UserMainCode with a static method reshape which accepts a string and a
character. The return type (String) should return the final string.
Create a Class Main which would be used to accept a string and a character, and call the
static method present in UserMainCode.
10.Last Letters
Write a program to read a sentence as a string and store only the last letter of each word of
the sentence in capital letters separated by $. Print the final string.
Include a class UserMainCode with a static method getLastLetter which accepts a string.
The return type (string) should return the final string.
Create a Class Main which would be used to read a string, and call the static method present
in UserMainCode.
Smaple Input :
This is a cat
Sample Output :
S$S$A$T
import java.util.Scanner;
import java.util.Scanner;
import java.util.StringTokenizer;
publicclass UserMainCode {
publicstatic String getLastLetter(String s1)
{
StringTokenizer st=new StringTokenizer(s1);
StringBuffer sb1=new StringBuffer();
while(st.hasMoreTokens()){
String str=st.nextToken();
sb1.append(str.substring(str.length()-1).toUpperCase());
sb1.append("$");
}
sb1.deleteCharAt(sb1.length()-1);
return sb1.toString();
Write a program to read a string array and return 1 if all the elements of the array are
numbers, else return -1.
Include a class UserMainCode with a static method validateNumber which accepts a string
aray. The return type (integer) should be -1 or 1 based on the above rules.
Create a Class Main which would be used to accept Input string array and call the static
method present in UserMainCode.
The string array is said to be valid if all the elements in the array are numbers. Else it is
invalid.
Write a program to accept two string inputs. The first being a source string and second one
a delimiter. The source string contains the delimiter at various locations. Your job is to
return the substring with maximum number of characters. If two or more substrings have
maximim number of characters return the substring which appears first. The size of the
delimiter is 1.
Include a class UserMainCode with a static method extractMax which accepts the string.
The return type (string) should be the max substring.
Create a Class Main which would be used to accept Input string and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a source string and delimiter.
Output consists of a string.
Refer sample output for formatting specifications.
Sample Input 1:
delhi-pune-patna
-
Sample Output 1:
Delhi\
import java.util.Scanner;
import java.util.StringTokenizer;
publicclass UserMainCode {
publicstatic String extractMax(String s1,char s2)
{
String s4="";
String s=s2+" ";
StringTokenizer st=new StringTokenizer(s1,s);
int max=0;
while( st.hasMoreTokens())
{
String s3=st.nextToken();
int n=s3.length();
if(n>max)
{
max=n;
s4=s3;
}
}
return s4;
Write a program that construts a hashmap with “state” as key and “capital” as its value. If
the next input is a state, then it should return capital$state in lowercase.
Include a class UserMainCode with a static method getCapital which accepts a hashmap.
The return type is the string as given in the above statement
Create a Class Main which would be used to accept Input string and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of 2n+2 values. The first value corresponds to size of the hashmap. The next n
pair of numbers contains the state and capital. The last value consists of the “state” input.
Output consists of a string as mentioned in the problem statement.
Refer sample output for formatting specifications.
Sample Input 1:
3
Karnataka
Bangaluru
Punjab
Chandigarh
Gujarat
Gandhinagar
Punjab
Sample Output 1:
chandigarh$punjab
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
class Sample
{
static String display(HashMap<String,String> hm,String s3)
{
String str="";
String res="";
String str1="";
for(Map.Entry<String,String> map:hm.entrySet())
{
str1=map.getKey();
if(s3.equals(str1))
{
str=map.getValue();
break;
}
}
res=str+"$"+str1;
return res.toLowerCase();
}
}
public class UserMainCode
{
public static void main(String s[])
{
HashMap<String,String> l=new HashMap<String,String>();
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
for(int i=0;i<n;i++)
{
l.put(sc.next(),sc.next());
}
String s2=sc.next();
System.out.println(Sample.display(l,s2));
}
}
Write a program to read a string and return an integer based on the following rules.
If the first word and the last word in the String match, then return the number of characters
in the word else return sum of the characters in both words. Assume the Strings to be
case - sensitive.
Include a class UserMainCode with a static method calculateWordSum which accepts a
string. The return type (integer) should be based on the above rules.
Create a Class Main which would be used to accept Input string and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of a string with maximum size of 100 characters.
Output consists of a string.
Refer sample output for formatting specifications.
Sample Input 1:
COGNIZANT TECHNOLOGY SOLUTIONS COGNIZANT
Sample Output 1:
9
Sample Input 2:
HOW ARE YOU
Sample Output 2:
6
import java.util.Scanner;
publicclass UserMainCode {
}
}
22.Valid Date
Given a date string as input, write a program to validate if the given date is in any of the
following formats:
dd.mm.yyyy
dd/mm/yy
dd-mm-yyyy
Include a class UserMainCode with a static method “validateDate” that accepts a String and
returns an integer. This method returns 1 if the date is valid, else return -1.
Create a class Main which would get a String as input and call the static
method validateDate present in the UserMainCode.
Sample Input 1:
12.03.2012
Sample Output 1:
Valid
Sample Input 2:
27#01#1977
Sample Output 2:
Invalid
importjava.text.ParseException;
importjava.text.SimpleDateFormat;
importjava.util.Date;
importjava.util.Scanner;
publicclassUserMainCode {
publicstatic String getvalues(String str)
{
if(str.matches("[0-9]{2}[-]{1}[0-9]{2}[-]{1}[0-9]{4}") || str.matches("[0-
9]{2}[/]{1}[0-9]{2}[/]{1}[0-9]{4}") || str.matches("[0-9]{2}[.]{1}[0-
9]{2}[.]{1}[0-9]{4}"))
{
SimpleDateFormatsdf = newSimpleDateFormat("dd-MM-yyyy");
SimpleDateFormat sdf1 = newSimpleDateFormat("dd/MM/yyyy");
SimpleDateFormat sdf2 = newSimpleDateFormat("dd.MM.yyyy");
String s1;
sdf.setLenient(false);
sdf1.setLenient(false);
sdf2.setLenient(false);
try
{
Date d1=sdf.parse(str);
return"valid";
}
catch(ParseException e)
{
try
{
Date d2=sdf1.parse(str);
return"valid";
}
catch(ParseException e1)
{
try
{
Date d3=sdf2.parse(str);
return"valid";
}
catch(ParseException e2)
{
return"invalid";
}
}
}
}
else
return “invalid”;
}
publicstaticvoid main(String[] args)
{
Scanner in=newScanner(System.in);
String s1=in.next();
System.out.println(UserMainCode.getvalues(s1));
}
}
23.Convert Format
import java.util.Scanner;
import java.util.StringTokenizer;
publicclass UserMainCode {
publicstatic String convertFormat(String s)
{
StringTokenizer t=new StringTokenizer(s,"-");
String s1=t.nextToken();
String s2=t.nextToken();
String s3=t.nextToken();
return sb.toString();
Obtain two strings S1,S2 from user as input. Your program should count the number of
times S2 appears in S1.
Include a class UserMainCode with a static method getSubstring which accepts two string
variables. The return type is the count.
Create a Class Main which would be used to accept two Input strings and call the static
method present in UserMainCode.
Sample Input 1:
catcowcat
cat
Sample Output 1:
2
Sample Input 2:
catcowcat
CAT
Sample Output 2:
0
import java.util.Scanner;
publicclass UserMainCode {
}
}
32.Repeat Front
Given a string (s) and non negative integer (n) apply the following rules.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Input 1:
Coward
2
Sample Output 1:
CowCow
Sample Input 2:
So
3
Sample Output 2:
SoSoSo
import java.util.Scanner;
publicclass UserMainCode {
publicstatic String convertFormat(String s,int n)
{
return sb.toString();
Write a program to read a string array, remove duplicate elements and sort the array.
Note:
1. The check for duplicate elements must be case-sensitive. (AA and aa are NOT
duplicates)
2. While sorting, words starting with upper case letters takes precedence.
Include a class UserMainCode with a static method orderElements which accepts the string
array. The return type is the sorted array.
Create a Class Main which would be used to accept the string arrayand integer and call the
static method present in UserMainCode.
Input consists of an integer n which is the number of elements followed by n string values.
Sample Input 1:
6
AAA
BBB
AAA
AAA
CCC
CCC
Sample Output 1:
AAA
BBB
CCC
Sample Input 2:
7
AAA
BBB
aaa
AAA
Abc
A
b
Sample Output 2:
A
AAA
Abc
BBB
aaa
b
import java.util.*;
}
Iterator<String> itr=al.iterator();
arr = new String[al.size()];
int i =0 ;
while(itr.hasNext()){
arr[i++] = itr.next();
}
Arrays.sort(arr);
return arr;
}
public static void main(String[] args)
{
int n;
Scanner in = new Scanner(System.in);
n = in.nextInt();
String[] a1 = new String[n];
for(int i=0;i<n;i++)
{
a1[i] = in.next();
}
a1 = UserMainCode.orderElements(a1);
for(int i=0;i<a1.length;i++)
System.out.println(""+a1[i]);
}
34.Pattern Matcher
Write a program to read a string and check if it complies to the pattern 'CPT-XXXXXX' where
XXXXXX is a 6 digit number. If the pattern is followed, then print TRUE else print FALSE.
Include a class UserMainCode with a static method CheckID which accepts the string. The
return type is a boolean value.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Output 1:
TRUE
Sample Input 2:
CPT123412
Sample Output 2:
FALSE
import java.util.Scanner;
publicclass UserMainCode {
if(s1.matches("(CPT-)[0-9]{6}"))
{
return 1;
else
return -1;
}
}
}
Given a string array and non negative integer (n) apply the following rules.
1. Pick nth character from each String element in the String array and form a new String.
2. If nth character not available in a particular String in the array consider $ as the character.
3. Return the newly formed string.
Include a class UserMainCode with a static method formString which accepts the string and
integer. The return type is the string formed based on rules.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Input consists of a an integer which denotes the size of the array followed by the array of
strings and an integer (n).
Output consists of a string .
Refer sample output for formatting specifications.
Sample Input 1:
4
ABC
XYZ
EFG
MN
3
Sample Output 1:
CZG$
import java.util.Scanner;
publicclass UserMainCode {
else
sb.append("$");
}
return sb.toString();
}
publicstaticvoid main(String[] args) {
Scanner in=new Scanner(System.in);
int n=Integer.parseInt(in.nextLine());
String s1[]=new String[n];
for(int i=0;i<n;i++)
s1[i]=in.nextLine();
int a=Integer.parseInt(in.nextLine());
System.out.println(UserMainCode.stringFinder(s1,n,a));
in.close();
}
}
36.Regular Expression - 1
If all the conditions are satisifed then print TRUE else print FALSE.
Include a class UserMainCode with a static method validate which accepts the string. The
return type is the boolean formed based on rules.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
vR4u
Sample Output 1:
TRUE
Sample Input 2:
vRau
Sample Output 2:
FALSE
Sample Input 3:
vrau
Sample Output 3:
FALSE
import java.util.Scanner;
publicclass UserMainCode
{
static String checkPattern(String s1)
{
if(s1.matches("[a-zA-Z0-9]{1}[R]{1}[0-9]{1}.*") &&
s1.length()==4)
return"true";
return"false";
}
publicstaticvoid main(String args[])
{
Scanner in=new Scanner(System.in);
String str=in.nextLine();
System.out.println(UserMainCode.checkPattern(str));
in.close();
}
}
Given the age of a person as string, validate the age based on the following rules.
If all the conditions are satisifed then print TRUE else print FALSE.
Include a class UserMainCode with a static method ValidateAge which accepts the string.
The return type is the boolean formed based on rules.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
23
Sample Output 1:
TRUE
Sample Input 2:
-34
Sample Output 2:
FALSE
Sample Input 3:
3a
Sample Output 3:
FALSE
AcB/TRUE
import java.util.Scanner;
publicclass UserMainCode {
}
}
Given a phone number as string, validate the same based on the following rules.
If all the conditions are satisifed then print TRUE else print FALSE.
Include a class UserMainCode with a static method validatePhone which accepts the string.
The return type is the boolean formed based on rules.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
9987684321
Sample Output 1:
TRUE
Sample Input 2:
0014623452
Sample Output 2:
FALSE
import java.util.Scanner;
publicclass UserMainCode {
return"valid";
}
return"invalid";
}
}
}
39.String Splitter
Write a program which would accept a string and a character as a delimiter. Apply the
below rules
1. Using the delimiter, split the string and store these elements in array.
2. Reverse each element of the string and convert it into lowercase.
Include a class UserMainCode with a static method manipulateLiteral which accepts the
string and character. The return type is the string array formed.
Create a Class Main which would be used to accept the string and characterand call the
static method present in UserMainCode.
Sample Input 1:
AAA/bba/ccc/DDD
/
Sample Output 1:
aaa
abb
ccc
ddd
publicclass UserMainCode {
publicstatic String[] compareDashes(String s1,char c)
{
String s=c+" ";
StringTokenizer a=new StringTokenizer(s1,s);
int k=0;
String ans[]=new String[a.countTokens()];
while(a.hasMoreTokens())
{
String b=a.nextToken();
StringBuffer sb=new StringBuffer(b);
sb.reverse();
ans[k]=sb.toString().toLowerCase();
++k;
}
return ans;
}
40.Vowel Count
Write a program to read a string and count the number of vowels present in it.
Include a class UserMainCode with a static method tellVowelCount which accepts the
string. The return type is the integer giving out the count of vowels.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
NewYork
Sample Output 1:
2
Sample Input 2:
Elephant
Sample Output 2:
3
importjava.util.Scanner;
publicclassUserMainCode {
publicstaticintcountVowels(String s1)
{
String s=s1.toLowerCase();
int c=0;
for(inti=0;i<s.length();i++)
{
char k=s.charAt(i);
if(k=='a' || k=='e' || k=='i' || k=='o' || k=='u')
++c;
}
return c;
}
in.close();
}
}
41.Playing with String - II
Write a program to accept a string array as input, convert all the elements into lowercase
and sort the string array. Display the sorted array.
Include a class UserMainCode with a static method sortArray which accepts the string array.
The return type is the string array formed based on requirement.
Create a Class Main which would be used to accept the string array and call the static
method present in UserMainCode.
Input consists of a an integer which denotes the size of the array followed by the array of
strings,
Output consists of a string array.
Refer sample output for formatting specifications.
Sample Input 1:
5
AAA
BB
CCCC
A
ABCDE
Sample Output 1:
a
aaa
abcde
bb
cccc
import java.util.Arrays;
import java.util.Scanner;
publicclass UserMainCode {
}
Arrays.sort(s2);
return s2;
}
publicstaticvoid main(String[] args) {
Scanner in=new Scanner(System.in);
int n=Integer.parseInt(in.nextLine());
String s1[]=new String[n];
for(int i=0;i<n;i++)
s1[i]=in.nextLine();
String o[]=UserMainCode.stringFinder(s1);
for(int i=0;i<o.length;i++)
System.out.println(o[i]);
in.close();
}
}
Write a program to read a string and return true or false based on the below rule:
1. Return true if for every '*' in the string, there are same characters both side immediately
before and after the star, else return false.
Include a class UserMainCode with a static method scanStarNeighbors which accepts the
string. The return type is the boolean TRUE or FALSE based on the rule.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
Hello*World
Sample Output 1:
FALSE
Sample Input 2:
Welcome*elizabeth
Sample Output 2:
TRUE
importjava.util.Arrays;
import java.util.Scanner;
publicclass UserMainCode {
in.close();
}
}
45.Occurance Count
Write a program to read a string that contains a sentence and read a word. Check the
number of occurances of that word in the sentence.
Include a class UserMainCode with a static method countWords which accepts the two
strings. The return type is the integer giving the count.
Create a Class Main which would be used to accept the two strings and call the static
method present in UserMainCode.
Sample Input 1:
Hello world Java is best programming language in the world
world
Sample Output 1:
2
Sample Input 2:
hello world
World
Sample Output 2:
0
import java.util.Scanner;
import java.util.StringTokenizer;
publicclass UserMainCode {
publicstaticint compareDashes(String s1,String s2)
{
int ans=0;
StringTokenizer t=new StringTokenizer(s1);
while(t.hasMoreTokens())
{
String s3=t.nextToken();
if(s3.equals(s2))
ans++;
}
return ans;
}
in.close();
}
}
Write a program to read two strings S1 & S2, compute the number of times that S2 appears
in S1.
Include a class UserMainCode with a static method searchString which accepts the two
strings. The return type is the integer giving the count.
Create a Class Main which would be used to accept the two strings and call the static
method present in UserMainCode.
Sample Input 1:
Catcowcat
cat
Sample Output 1:
2
Sample Input 2:
Catcowcat
catp
Sample Output 2:
0
import java.util.Scanner;
publicclass UserMainCode {
}
}
47.Strings Processing
Write a program to read a string that contains comma separated fruit names and also a
number N. Pick the nth fruit and return it. If the total number of elements are less than the
number specified in N, then return the last element.
Include a class UserMainCode with a static method findFruitName which accepts the the
string and the number n. The return type is the string which has the fruit name.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Input 1:
Apple,Banana,Orange
2
Sample Output 1:
Banana
Sample Input 2:
Apple,Banana,Orange
4
Sample Output 2:
Orange
import java.util.Scanner;
import java.util.StringTokenizer;
publicclass UserMainCode {
}
return s;
}
publicstaticvoid main(String[] args) {
Scanner in=new Scanner(System.in);
String s1=in.nextLine();
int n=in.nextInt();
System.out.println(UserMainCode.findFruitName(s1,n));
in.close();
}
}
48.Proper Case
Write a program to read a string and convert the intial letter of each word to uppercase.
Include a class UserMainCode with a static method changeCase which accepts the string.
The return type is the modified string.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
This is cognizant academy
Sample Output 1:
This Is Cognizant Academy
publicclass UserMainCode {
publicstatic String printCapitalized(String s1)
{
StringBuffer s5=new StringBuffer();
StringTokenizer t=new StringTokenizer(s1," ");
while(t.hasMoreTokens()){
String s2=t.nextToken();
String s3=s2.substring(0,1);
String s4=s2.substring(1, s2.length());
s5.append(s3.toUpperCase()).append(s4).append("
"); }
return s5.toString();
Write a program to read a string containing multiple words find the first and last words, if
they are same, return the length and if not return the sum of length of the two words.
Include a class UserMainCode with a static method compareLastWords which accepts the
string. The return type is the length as per problem.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
This is Cognizant Academy
Sample Output 1:
11
Sample Input 2:
Hello World Hello
Sample Output 2:
5
import java.util.Scanner;
publicclass UserMainCode {
}
}
51.Find Digits
For a given double number with atleast one decimal value, Write a program to compute the
number of digits before and after the decimal point in the following format –
noOfDigitsBeforeDecimal:noOfDigitsAfterDecimal.
Note: Ignore zeroes at the end of the decimal (Except if zero is the only digit after decimal.
Refer Example 2 and 3)
Include a class UserMainCode with a static method findNoDigits which accepts the decimal
value. The return type is string.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
843.21
Sample Output 1:
3:2
Sample Input 2:
20.130
Sample Output 2:
2:2
Sample Input 3:
20.130
Sample Output 3:
2:2
import java.util.Scanner;
import java.util.StringTokenizer;
publicclass UserMainCode {
int n3=0;
for(int i=s2.length()-1;i>=0;i--)
{
if(s2.charAt(i)==0)
++n3;
else
break;
}
if(n2!=1)
n2=n2-n3;
else
n2=1;
String s3=String.valueOf(n1)+":"+String.valueOf(n2);
return s3;
63.Largest Chunk
Write a program to read a string and return the length of the largest "chunk" in the string.
A chunk is a repetition of same character 2 or more number of times. If the given string
doest not contain any repeated chunk of characters return -1.
Include a class UserMainCode with a static method getLargestSpan which accepts the string.
The return type is the integer.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
This place is soooo good
Sample Output 1:
4
importjava.util.Scanner;
importjava.util.StringTokenizer;
publicclassUserMainCode {
staticintlargestChunk(String str1)
{
intc,max=0,i=0,j=0;
StringTokenizerst=newStringTokenizer(str1);
while(st.hasMoreTokens())
{
String s1=st.nextToken();
for(i=0;i<s1.length()-1;i++)
{
c=1;
if(s1.charAt(i)==s1.charAt(i+1))
{ ++c;
for(j=i+2;j<s1.length();j++)
{
if(s1.charAt(i)==s1.charAt(j))
{
++c;
}
else
break;
}
}
if(c>max)
{
max=c;
i=j-1;
}
}
}
return (max);
}
publicstaticvoid main(String args[])
{
String s1;
Scanner in=newScanner(System.in);
s1=in.nextLine();
intans=UserMainCode.largestChunk(s1);
if(ans>=2)
System.out.println(ans);
else
System.out.println("No Chunks");
}
}
Include a class UserMainCode with a static method passwordValidation which accepts the
string. The return type is the string.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
publicclassUserMainCode
{
staticint passwordValidation(String s)
{
if(s.length()>=8&&s.matches(".*[A-Z].*")&&s.matches(".*[a-
z].*")&&s.matches(".*[0-9].*")&&s.matches(".*[^0-9A-Za-z].*"))
return 1;
return -1;
}
publicstaticvoid main(String[] args)
{
Scanner in=new Scanner(System.in);
String s=in.nextLine();
int b=UserMainCode.passwordValidation(s);
if(b==1)
System.out.println("valid");
else
System.out.println("invalid");
}
}
68.String processing – Long + Short + Long
Obtain two strings S1,S2 from user as input. Your program should form a string
of “long+short+long”, with the shorter string inside of the longer String.
Include a class UserMainCode with a static method getCombo which accepts two string
variables. The return type is the string.
Create a Class Main which would be used to accept two Input strings and call the static
method present in UserMainCode.
}
}
69.Age for Voting
Given a date of birth (dd/MM/yyyy) of a person in string, compute his age as of 01/01/2015.
If his age is greater than 18, then println eligible else println not-eligible.
Include a class UserMainCode with a static method getAge which accepts the string value.
The return type is the string.
Create a Class Main which would be used to accept the two string values and call the static
method present in UserMainCode.
Sample Input 1:
16/11/1991
Sample Output 1:
eligible
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Scanner;
public class UserMainCode {
public static String getvalues(String str,String str1)
{
if(str.matches("[0-9]{2}[/]{1}[0-9]{2}[/]{1}[0-9]{4}"))
{
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
String s1;
sdf.setLenient(false);
try
{
Calendar c=Calendar.getInstance();
Date d1=sdf.parse(str);
Date d2=sdf.parse(str1);
c.setTime(d1);
int y1=c.get(Calendar.YEAR);
int m1=c.get(Calendar.MONTH);
int d11=c.get(Calendar.DATE);
c.setTime(d2);
int y2=c.get(Calendar.YEAR);
int m2=c.get(Calendar.MONTH);
int d22=c.get(Calendar.DATE);
int k=Math.abs(y2-y1);
if(m1>m2)
k--;
else if(m2==m1 && d11>d22)
k--;
if(k>=18)
{
return"eligible";
}
}
catch(ParseException e)
{
return"not eligible";
}
}
return"not eligible";
}
public static void main(String[] args)
{
import java.util.Scanner;
public class UserMainCode
{
public static String display(String s,String s1)
{
String s2=s.toLowerCase();
String s3=s1.toLowerCase();
StringBuffer sb=new StringBuffer();
for(int i=0;i<s.length();i++)
{
String c=s2.charAt(i)+"";
if(!s3.contains(c))
sb.append("+");
else
sb.append(s.charAt(i));
} return sb.toString();
}
public static void main(String []args){
Scanner sc=new Scanner(System.in);
String n=sc.nextLine();
String n1=sc.nextLine();
System.out.println(UserMainCode.display(n,n1));
}
}
1. Longest Word
Write a Program which finds the longest word from a sentence. Your program should read a
sentence as input from user and return the longest word. In case there are two words of
maximum length return the word which comes first in the sentence.
Include a class UserMainCode with a static method getLargestWord which accepts a string
The return type is the longest word of type string.
Create a Class Main which would be used to accept two Input strings and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of a string with maximum size of 100 characters.
Output consists of a single string.
Refer sample output for formatting specifications.
Sample Input 1:
Welcome to the world of Programming
Sample Output 1:
Programming
Sample Input 2:
ABC DEF
Sample Output 2:
ABC
import java.util.*;
public class UserMainCode {
1. String Occurences
Obtain two strings from user as input. Your program should count the number of occurences
of second word of second sentence in the first sentence.
Return the count as output. Note - Consider case.
Include a class UserMainCode with a static method countNoOfWords which accepts two
string variables. The return type is the modified string.
Create a Class Main which would be used to accept two Input strings and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of two strings with maximum size of 100 characters.
Output consists of a single string.
Refer sample output for formatting specifications.
Sample Input 1:
abc bcd abc bcd abc abc
av abc
Sample Output 1:
4
Sample Input 2:
ABC xyz AAA
w abc
Sample Output 2:
0
import java.util.Scanner;
import java.util.StringTokenizer;
public class UserMainCode {
public static void getvalues(String s1, String s2) {
int count=0;
StringTokenizer st=new StringTokenizer(s2," ");
String s3=st.nextToken();
String s4=st.nextToken();
StringTokenizer st1=new StringTokenizer(s1," ");
while(st1.hasMoreTokens())
{
String s5=st1.nextToken();
if(s4.equals(s5))
{
count++;
}
}
System.out.println(count);
}
public static void main(String[] args) {
Scanner in=new Scanner(System.in);
String s1=in.nextLine();
String s2=in.nextLine();
UserMainCode.getvalues(s1,s2);
}
}
Concatenate Characters
Given an array of Strings, write a program to take the last character of each string and make
a new String by concatenating it.
Include a class UserMainCode with a static method “concatCharacter” that accepts a String
array as input and returns the new String.
Create a class Main which would get the String array as input and call the static
method concatCharacterpresent in the UserMainCode.
Input and Output Format:
The first line of the input consists of an integer n that corresponds to the number of strings in
the input string array.
The next n lines of the input consist of the strings in the input string array.
Output consists of a string.
Sample Input:
3
ab
a
abcd
Sample Output:
Bad
import java.util.Scanner;
12.Anagram
Write a program to check whether the two given strings are anagrams.
Note: Rearranging the letters of a word or phrase to produce a new word or phrase, using
all the original letters exactly once is called Anagram."
Include a class UserMainCode with a static method “getAnagram” that accepts 2 strings as
arguments and returns an int. The method returns 1 if the 2 strings are anagrams. Else it
returns -1.
Create a class Main which would get 2 Strings as input and call the static
method getAnagram present in the UserMainCode.
Sample Input 1:
eleven plus two
twelve plus one
Sample Output 1:
Anagrams
Sample Input 2:
orchestra
carthorse
Sample Output 2:
Anagrams
Sample Input 3:
cognizant
technologies
Sample Output 3:
Not Anagrams
import java.util.Arrays;
import java.util.Scanner;
Given 2 strings corresponding to the previous meter reading and the current meter reading,
write a program to calculate electricity bill.
The input string is in the format ""AAAAAXXXXX"".
AAAAA is the meter code and XXXXX is the meter reading.
FORMULA: (XXXXX-XXXXX)*4
Hint: if AAAAA of input1 and input2 are equal then separate the XXXXX from string and
convert to integer. Assume that AAAAA of the 2 input strings will always be equal.
Include a class UserMainCode with a static method “calculateMeterReading” that accepts 2
String arguments and returns an integer that corresponds to the electricity bill. The
1 argument corresponds to the previous meter reading and the 2 arguement corresponds
st nd
Create a class Main which would get 2 Strings as input and call the static
method calculateMeterReading present in the UserMainCode.
Sample Input:
CSECE12390
CSECE12400
Sample Output:
40
import java.util.Scanner;
}
public static void main(String args[])
{
String s1,s2;
int n;
Scanner in=new Scanner(System.in);
s1=in.nextLine();
s2=in.nextLine();
int ans=UserMainCode.calculateElectricityBill(s1,s2);
System.out.println(ans);
16.Vowels
Given a String input, write a program to find the word which has the the maximum number
of vowels. If two or more words have the maximum number of vowels, print the first word.
Include a class UserMainCode with a static method “storeMaxVowelWord” that accepts a
string argument and returns the word containing the maximum number of vowels.
Create a class Main which would get the a String as input and call the static
method storeMaxVowelWord present in the UserMainCode.
Sample Input :
What is your name?
Sample Output :
your
import java.util.Scanner;
import java.util.StringTokenizer;
public class UserMainCode {
if(n>max)
{
max=n;
s2=s5;
}
}
return s2;
}
public static void main(String[] args) {
Scanner in=new Scanner(System.in);
String s1=in.nextLine();
System.out.println(lengthiestString(s1));
}
}
20.Largest Span
Write a program to read an array and find the size of largest span in the given array
""span"" is the number of elements between two repeated numbers including both
numbers. An array with single element has a span of 1.
.
Include a class UserMainCode with a static method getMaxSpan which accepts a single
integer array. The return type (integer) should be the size of largest span.
Create a Class Main which would be used to accept Input array and call the static method
present in UserMainCode.
Input and Output Format:
Input consists of n+1 integers. The first integer corresponds to n, the number of elements in
the array. The next 'n' integers correspond to the elements in the array.
Output consists of a single Integer.
Refer sample output for formatting specifications.
Sample Input 1:
5
1
2
1
1
3
Sample Output 1:
4
Sample Input 2:
7
1
4
2
1
4
1
5
Sample Output 2:
6
import java.util.Scanner;
public class UserMainCode
{
static int getMaxSpan(int ar[])
{
String str="";
int max=0;
for(int a:ar)
str=str+a;
for(int i=0;i<str.length();i++)
{
int k=str.lastIndexOf(str.charAt(i));
int l=str.indexOf(str.charAt(i));
int span=k-l+1;
if(span>max)
max=span;
}
return max;
}
public static void main(String[] args)
{
Scanner in=new Scanner(System.in);
int n=in.nextInt();
int a[]=new int[n];
for(int i=0;i<n;i++)
a[i]=in.nextInt();
System.out.println(getMaxSpan(a));
}
}
21.Max Scorer
22.Max Vowels
Write a Program which fetches the word with maximum number of vowels. Your program
should read a sentence as input from user and return the word with max number of vowels.
In case there are two words of maximum length return the word which comes first in the
sentence.
Include a class UserMainCode with a static method getWordWithMaximumVowels which
accepts a string The return type is the longest word of type string.
Create a Class Main which would be used to accept two Input strings and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of a string with maximum size of 100 characters.
Output consists of a single string.
Refer sample output for formatting specifications.
Sample Input 1:
Appreciation is the best way to motivate
Sample Output 1:
Appreciation
import java.util.Scanner;
import java.util.StringTokenizer;
public class UserMainCode {
if(n>max)
{
max=n;
s2=s5;
}
}
return s2;
}
public static void main(String[] args) {
Scanner in=new Scanner(System.in);
String s1=in.nextLine();
System.out.println(lengthiestString(s1));
}
}
24.Adjacent Swaps
Write a Program that accepts a string as a parameter and returns the string with each pair of
adjacent letters reversed. If the string has an odd number of letters, the last letter is
unchanged.
Include a class UserMainCode with a static method swapPairs which accepts a string. The
return type is string which is reversed pair of letters.
Create a Class Main which would be used to accept two Input strings and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of a string with maximum size of 100 characters.
Output consists of a single string.
Refer sample output for formatting specifications.
Sample Input 1:
forget
Sample Output 1:
ofgrte
Sample Input 2:
New York
Sample Output 2:
eN woYkr
import java.util.Scanner;
}
return sb.toString();
}
public static void main(String[] args) {
Scanner in=new Scanner(System.in);
String s1=in.nextLine();
System.out.println(UserMainCode.swapCharacter(s1));
in.close();
}
}
26.Password
Validation Rule:
Atleast 8 characters
Atleast 1 number(1,2,3...)
Atleast 1 special character(@,#,%...)
Atleast 1 alphabet(a,B...)
Sample Input 1:
cts@1010
Sample Output 1:
Valid
Sample Input 2:
punitha3
Sample Output 2:
Invalid
import java.util.Scanner;
30.Anagrams
Write a program to read two strings and checks if one is an anagram of the other.
An anagram is a word or a phrase that can be created by rearranging the letters of another
given word or phrase. We ignore white spaces and letter case. All letters of 'Desperation'
can be rearranged to the phrase 'A Rope Ends It'.
Include a class UserMainCode with a static method checkAnagram which accepts the two
strings. The return type is boolean which is TRUE / FALSE.
Create a Class Main which would be used to accept the two strings and call the static
method present in UserMainCode.
Input and Output Format:
Input consists of two strings.
Output consists of TRUE / FALSE.
Refer sample output for formatting specifications.
Sample Input 1:
tea
eat
Sample Output 1:
TRUE
Sample Input 2:
Desperation
A Rope Ends It
Sample Output 2:
TRUE
import java.util.Arrays;
import java.util.Scanner;
32.Word Count
Given a string array (s) with each element in the array containing alphabets or digits. Write a
program to add all the digits in every string and return the sum as an integer. If two digits
appear simultaneously do not consider it as one number. Ex- For 'Hyderabad 21' consider 2
and 1 as two digits instead of 21 as a number.
Include a class UserMainCode with a static method sumOfDigits which accepts the string
array. The return type is the integer formed based on rules.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Input 1:
5
AAA1
B2B
4CCC
A5
ABCDE
Sample Output 1:
12
Sample Input 2:
3
12
C23
5CR2
Sample Output 2:
15
import java.util.Scanner;
}
if(sum>=0)
return sum;
return -1;
}
}
}
33.Prefix Finder
Given a string array (s) with each element in the array containing 0s and 1s. Write a program
to get the number of strings in the array where one String is getting as prefixed in other
String in that array .
Example 1: Input: {10,101010,10001,1111} Output =2 (Since 10 is a prefix of 101010 and
10001)
Example 2: Input: {010,1010,01,0111,10,10} Output =3(01 is a prefix of 010 and 0111. Also,
10 is a prefix of 1010) Note: 10 is NOT a prefix for 10.
Include a class UserMainCode with a static method findPrefix which accepts the string array.
The return type is the integer formed based on rules.
Create a Class Main which would be used to accept the string and integer and call the static
method present in UserMainCode.
Sample Input 1:
4
0
1
11
110
Sample Output 1:
3
import java.util.Scanner;
Given two arrays of strings,return the count of strings which is common in both arrays.
Duplicate entries are counted only once.
Include a class UserMainCode with a static method countCommonStrings which accepts the
string arrays. The return type is the integer formed based on rules.
Create a Class Main which would be used to accept the string arrays and integer and call the
static method present in UserMainCode.
Sample Input 1:
3
a
c
e
3
b
d
e
Sample Output 1:
1
Sample Input 2:
5
ba
ba
black
sheep
wool
5
ba
ba
have
any
wool
Sample Output 2:
2
import java.util.HashSet;
import java.util.Scanner;
}
}
36.E-Mail Validation
Write a program to read a string and validate the given email-id as input.
Validation Rules:
1. Ensure that there are atleast 5 characters between '@' and '.'
2. There should be only one '.' and one '@' symbol.
3. The '.' should be after the '@' symbol.
4. There must be atleast three characters before '@'.
5. The string after '.' should only be 'com'
Include a class UserMainCode with a static method ValidateEmail which accepts the string.
The return type is TRUE / FALSE as per problem.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
[email protected]
Sample Output 1:
TRUE
Sample Input 2:
[email protected]
Sample Output 2:
FALSE
import java.util.Scanner;
40.ISBN Validation
Write a program to read a string and validate the given ISBN as input.
Validation Rules:
1. An ISBN (International Standard Book Number) is a ten digit code which uniquely
identifies a book.
2. To verify an ISBN you calculate 10 times the first digit, plus 9 times the second digit, plus 8
times the third ..all the way until you add 1 times the last digit.
If the final number leaves no remainder when divided by 11 the code is a valid ISBN.
Example 1:
Input:0201103311
Calculation: 10*0 + 9*2 + 8*0 + 7*1 + 6*1 + 5*0 + 4*3 + 3*3 + 2*1 + 1*1 = 55.
55 mod 11 = 0
Hence the input is a valid ISBN number
Output: true
Include a class UserMainCode with a static method validateISBN which accepts the string.
The return type is TRUE / FALSE as per problem.
Create a Class Main which would be used to accept the string and call the static method
present in UserMainCode.
Sample Input 1:
0201103311
Sample Output 1:
TRUE
import java.util.Scanner;