How to print a statement without using semicolan in java
Answers were Sorted based on User's Feedback
Answer / sadikhasan palsaniya
for (int i=0;i<1;System.out.println("Sadikhasan
Palsaniya"),i++);
| Is This Answer Correct ? | 22 Yes | 4 No |
Answer / srinivaskumar.nimmana
Write like this to print...
if(system.out.printf("hello sree")==null)
here we r using printf instead of println()
| Is This Answer Correct ? | 25 Yes | 9 No |
Answer / prince kohli
claass WithoutSemicolon
{
public static void main(String args[])
{
if(System.out.printf("hello java")==null)
{}
}
}
| Is This Answer Correct ? | 10 Yes | 3 No |
Answer / amit sharma
public static void main(String[] args) {
if(System.out.printf("hi",null) == null)
{
System.out.println("byee");
}
}
In printf(String format, Object args), We also need to
specify argument.
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / nagireddy
BufferedWriter bw=new BufferedWriter(new PrintWriter(System.out));
//Scanner scan=new Scanner((Readable) System.out);
bw.write("nagi");
bw.close();
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / abhishek sahu
class PrintDemo
{
if(System.out.println("Hello"))
{
}
}
| Is This Answer Correct ? | 2 Yes | 12 No |
What design pattern you have used in your project? I answered Factory pattern, how it is implemented? What are its advantage? Do know about Abstract Factory?
What is super keyword explain with example?
we have syntax like for(int var : arrayName) this syntax is to find whether a number is in the array or not.but i want to know how to find that number's location.
What is methods in java?
What does those terms actually mean included in the j.d.k i.6?
How do you check if an arraylist is not empty?
What are voids?
how to run servlet program between two computer through the internet ?
2 Answers Kiran Prakashan, TCS,
Same common question what is Map,Set,HashMap,List????
Explain about fail fast iterators in java?
Is a method a procedure?
What is a compilation unit?