What is run-time class and system class? what is their
purpose?
The System (along with the Runtime class) provide system
level functionality to Java applications.
The facilities of these classes are not necessarily portable
across host operating system and may need to be recompiled
when porting.
Some of the facilities provided are:
1. Reading from the keyboard as input
2. Writing to console output
3. Interaction with JVM process for event notification, or
information such as free memory, etc
4. Reading/writing system properties/environment variables
5. executing other programs from within java apps
| Is This Answer Correct ? | 0 Yes | 0 No |
Can u write constructor in abstract.If yes den when it will be invoked.
What is the difference between Array and Hash Table?
How to sort elements in a parallel array in java?
what is jdk1.5 features?
What is an infinite loop?
String is an immutable object. Then how can the following code be justified. String s1 = ?ABC?; String s1 = s1+?XYZ?; s.o.p(s1); The output is ABCXYZ, which is the value of s1 ?
6 Answers Flextronics, Keane India Ltd,
What class allows you to read objects directly from a stream in java programming?
How to sort an array in java without using sort method?
What is the static field modifier?
What is meant by tab pans?
what is collatration?
Which class is the superclass for every class in java programming?