any other way to print the text without using
System.out.println() in java?
Answer Posted / sathish
System.out.write("text".getBytes());
System.out.format("%s", "text");
| Is This Answer Correct ? | 20 Yes | 1 No |
Post New Answer View All Answers
Write a regular expression to validate a password. A password must start with an alphabet and followed by alphanumeric characters; its length must be in between 8 to 20.
How do you compare two strings lexicographically?
Are functions objects in java?
Why deletion in linkedlist is fast than arraylist?
When will you define a method as static in Java?
What are the benefits of immutable objects?
Is java an ide?
Difference between operator overloading and function overloading
What is complexity and its types?
What are the properties of thread?
Which programming language is best in future?
What modifiers may be used with an inner class that is a member of an outer class in java programming?
What is string substring?
When should we create our own custom exception classes?
What is re-factoring in software?