Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


aabccdee
Find the used alphabets as abcde ?

Answers were Sorted based on User's Feedback



aabccdee Find the used alphabets as abcde ?..

Answer / vikas

1. Split the String into a String array.
2. Iterate over the String Array and add values into a Set(Duplicate values are not allowed).

Is This Answer Correct ?    2 Yes 0 No

aabccdee Find the used alphabets as abcde ?..

Answer / hitesh

public static void main(String[] args) {

String s1 = "aaabbccccaaa";
String s2 = " ";
for (int i = 0; i < s1.length(); i++) {
if (i == 0) {
s2 = s2.concat("" + (s1.charAt(i)));
}

if (s2.contains(s1.charAt(i) + "")) {
continue;
} else {
s2 = s2.concat("" + (s1.charAt(i)));
}
}
System.out.println(s2);
}

Is This Answer Correct ?    1 Yes 0 No

aabccdee Find the used alphabets as abcde ?..

Answer / deepu

package com.thread;
import java.util.*;
public class Test2 {





public static void main(String[] args) {
String str="aabbbcdabbheaa";
char[]chs=str.toCharArray();
List l1=new ArrayList();

for(Character ch:chs){
l1.add(ch);
 
}
Set s1=new TreeSet(l1);
System.out.println(s1);
}




}

Is This Answer Correct ?    1 Yes 0 No

aabccdee Find the used alphabets as abcde ?..

Answer / adarsh

Scanner sc=new Scanner(system.in);
Int i,j=0;
String S1=sc.next(),s2;
S2=s1charAt(0);
For(i=1;i<s1.length;i++)
{
If(s2.charAt(j).equals (s1.charAt(i))
Continue;
Else{
S2=s2.concat(s1.charAt(i));
j++;
}
}
Sop(j);
}


I m writing with my mobile phone so chuck the mistakes like upercase nd lowr case...

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More Core Java Interview Questions

Why we can not force Garbage Collection?

7 Answers  


does core java and j2se both are same?

5 Answers  


what is difference between Interface and abstract class

2 Answers   GCPL,


Explain a situation where finally block will not be executed?

0 Answers  


Can we use a switch statement with strings?

0 Answers  


Can a class extend 2 classes in java?

0 Answers  


What is a conditional statement explain with example?

0 Answers  


Can we declare an anonymous class as both extending a class and implementing an interface?

8 Answers   College School Exams Tests, JVA, TCS, Wipro,


What is java object name?

0 Answers  


Can we override constructor?

0 Answers  


What is replacefirst in java?

0 Answers  


What is serialversionuid?

0 Answers  


Categories