Difference between ?System.out.println?
and ?System.error.println??
Answer Posted / pratima
Display normally whatever you want to display
System.out.println("Hello")
Display Error messaage
System.err.println("Hello")
o/p:-Hello(In red color)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Write down program for following scenario. Use java coding standard. You have array list with some words in it..we will call it as dictionary….and you have a arbitrary string containing some chars in it. You have to go through each word of dictionary and find out if that word can be constructed with the help of chars from arbitrary string given. If you find the word print it else print none.
Describe string intern() methodology
Which is bigger double or float?
Why is stringbuffer faster than string?
What is class and its types?
How define set in java?
What is the use of put method?
What is unicode with example?
Are arrays primitive data types?
Explain some best practices you would apply while using collection in java?
what is anonymous class in java?
What are structs in java?
What is the difference between stored procedure & function?
What are implicit objects in java?
What is covariant return type?