how to print output with out using sop statements
Answers were Sorted based on User's Feedback
Answer / rajsekar
Create an object for the PrintWriter Class then call the
write() method...in that write method we can pass any type
of strings or etc...
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / praveen kumar singh
Way 1
if(System.out.append("testing")!= null);
way 2
if(System.out.format("%s","testing" )!= null);
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / srinivas
there r 2 ways in which we can print stmts with out using
sops
1. using static
2. using anonimus inner classes
| Is This Answer Correct ? | 7 Yes | 7 No |
Answer / f
there r 2 ways in which we can print stmts with out using
sops
1. using static
2. using anonimus inner classes
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the different types of collections in java?
What are synchronized methods ?
In which way does a Primitive data type is passed ?
Write a program to search a number in the given list of numbers.
Can I have constructor in Interface?
What about interthread communication and how it takes place in java?
Can we write a class without main method in java?
Can we define private and protected modifiers for variables in interfaces?
What is the difference between Trusted and Untrusted Applet ?
What advantage does an entity bean have over a sessin bean?
What is the common usage of serialization? What exceptions occur during serialization?
Can we use this () and super () in a method?