"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

How many controlers are there in spring? Plz send me ans

1 Answers   HCL,


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

3 Answers   SolutionNET,


"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,


what is class/object diagram

3 Answers   Zycus Infotech,


What are the queues in the java collection framework? : java collections

0 Answers  


Which server-side script takes the input from JavaScript, can access the database if it needs to, and processes the data.

0 Answers  


What is need of DAO? Write one simple DAO example?

2 Answers   IBM,


what is difference between business deligate and session facade ?

2 Answers   Fidelity,


what is the IDE that you have used to write your java programs?

2 Answers   Inforica, Interface Software,


What are the types of interface used in the java collections? : java collections

0 Answers  


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

0 Answers  


who should use JNDI?

1 Answers  


Categories