explain System.out.println
Answer Posted / franklin
System: its the class
out: its the object of the class System
println():its the method which tells the compiler to print
a new line.
| Is This Answer Correct ? | 381 Yes | 273 No |
Post New Answer View All Answers
What if the main() method is declared as private? What happens when the static modifier is removed from the signature of the main() method?
What are the 6 boolean operators?
Can a static member function access member variable of an object?
What is mysql driver class name?
What is an argument java?
What is data type in java?
What is the purpose of main function in java?
What is a Transient Object?
How do you differentiate abstract class from interface?
how a programmer confirms that the data submitted has been succesfully inserted into the database(either oracle or my sql).. How a programmer confirm if there is any problem with the program he wrote for insertion... ANS:--- >executeupdate method is having boolean return type, if anything goes wrong in data insertion or data updation, it would return false. otherwise, if it successfully inserts data into the database, it would return true NOW HOW TO I CHECK IN MY DURING EXECUTION WHETHER IT RETURNS TRUE OR FALSE... WELL IT WILL DISPLAY ANY MESSAGE OR NOT
When throw keyword is used?
How do you replace a string in java?
Why stringbuilder is not thread safe?
What is field name?
How will you calculate the depth of a binary tree if the tree contains 15 nodes?