"Sun Certified Java Programmer" This is one String , we need
to print SCJP, write the java code dynamically? pls reply
this questions

Answers were Sorted based on User's Feedback



"Sun Certified Java Programmer" This is one String , we need to print SCJP, write the jav..

Answer / sreekanth madamanchi

public class Sample {
public static void main(String args[]) {
String str = "Sun Certified Java Programmer";
String str2 = null;
for(int i=0;i<str.length();i++)
{
char c = str.charAt(i);
if(Character.isUpperCase(c))
{
if(str2 == null || str2 == "")
str2 = ""+str.charAt(i);
else
str2 = str2+str.charAt(i);
}
}
System.out.println("Result="+str2);
}
}

Is This Answer Correct ?    10 Yes 2 No

"Sun Certified Java Programmer" This is one String , we need to print SCJP, write the jav..

Answer / qamrun nisa

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.print(value.charAt(0));
}
}
}

Is This Answer Correct ?    5 Yes 0 No

"Sun Certified Java Programmer" This is one String , we need to print SCJP, write the jav..

Answer / 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

"Sun Certified Java Programmer" This is one String , we need to print SCJP, write the jav..

Answer / karan

package test;
public class NewTest {

public static void main(String args[]) {

String[] strArr = strArr = "Sun Certified Java Programmer".split(" ");

System.out.println(strArr[0].charAt(0) + "" + strArr[1].charAt(0)+ "" + strArr[2].charAt(0)+ "" + strArr[3].charAt(0));
}
}

Is This Answer Correct ?    2 Yes 1 No

"Sun Certified Java Programmer" This is one String , we need to print SCJP, write the jav..

Answer / dhinesh manthiram

class Krish {
public static void main(String args[]) {
String str = "Sun Certified Java Programmer";
String str2="";
for(int i=0;i<str.length();i++)
{
char c = str.charAt(i);
if(Character.isUpperCase(c))
{

str2 = str2+c;
}
}

System.out.println("Result="+str2);
}}

Is This Answer Correct ?    1 Yes 0 No

"Sun Certified Java Programmer" This is one String , we need to print SCJP, write the jav..

Answer / java_allinterview_faq

by : Viswathan

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Java J2EE AllOther Interview Questions

what is java virtual machine

4 Answers  


What is an algorithm in java collection framework? : java collections

0 Answers  


What are the differences between the java collection and the java list? : java collections

0 Answers  


What is an Ioc pattern? There are assemblies in .net for establishing this task, Whats the special in Java /j2ee technologies about IOC

2 Answers  


what protocols does JNDI provide an interface to?

1 Answers  






What are maps interfaces in the java collections? : java collections

0 Answers  


How to use ANT?

2 Answers  


What is difference between Application Server and Web Server?

1 Answers   Logica CMG, SCS,


How do I find jre path in windows?

0 Answers  


What are the different types of features of the java collections framework? : java collections

0 Answers  


"Sun Certified Java Programmer" This is one String , we need to print SCJP, write the java code dynamically? pls reply this questions

6 Answers   Photon,


how to delete cookie information?and when it will delete?

3 Answers   SolutionNET,


Categories