"Sun Certified Java Programmer" This is one String , we need
to print SCJP, write the java code dynamically? pls reply
this questions
Answer Posted / rakesh kumar mishra
public class Sample
{
public static void main(String args[])
{
String str = "Sun Certified Java Programmer";
StringTokenizer st=new StringTokenizer(str," ");
while(st.hasMoreTokens())
{
String value=st.nextToken();
System.out.println(value.charAt(0));
}
}
}
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
Which java collection class can be used to maintain the entries in the order in which they were last accessed?
What is the difference between comparable and comparator in java.util pkg?
What is the use of hashcode in java ?
please mail me the interview question based on java/j2ee
What are the differences between the java collection and the java list? : java collections
What is the Spring2.5 MVC Navigation flow?
What is deque in the java collections framework? : java collections
How do I find jre path in windows?
Hi Friends, i have searched in google but not clear. can you give bank example with synchronized keyword
In hyderabad, which s/w training center is best for java, other than corejava what r the new tools to learn in java,which tool is best & have current requirement,pls give me information about java to learn ?
What are maps interfaces in the java collections? : java collections
What are the interfaces in java collections? : java collections
Which interface does java.util.hashtable implement?
Should we create system software ( e.g operating system ) in java ?
What are the different types of collections views being provided by the map interface? : java collections