"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
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 |
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 |
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 |
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 |
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 |
What is the difference between Eclipse and MyEclipse?
Difference between Spring framework and Struts framework?
12 Answers IBM, L&T, VAM,
who will give req's to u?. how they send req's to u? . what design documents contains?. when bugs raised on other developer code how to report to them?.(throgh mail or ........). how to retrive 100 recods from dao layer to presentation layer.using which collection?. what is sequence diagram.?.
Write a interface "CarOperations" with the following methods void turnOnEngin() void turnOffEngin() void turnOnLigths() void turnOffLights() void turnLeft() void turnRight() void accelerate() void deaccelerate() void putBreaks() void releaseBreaks()
How to implement or use the singleton class in java?
Which server-side script takes the input from JavaScript, can access the database if it needs to, and processes the data.
What are the interfaces in java collections? : java collections
what is the IDE that you have used to write your java programs?
2 Answers Inforica, Interface Software,
What is need of DAO? Write one simple DAO example?
i need java 1+ experience resume on java developer kindly send me my mail id:srikanthreddy1.marla@gmail.com
Runining mutiple tomcat server in a single machine is possible Yuo wil have to duplicate configuration with different port numbers
what is the diffrence between insurance and telecom domain?