Answer Posted / yeswanth reddy
public class eng {
public static void main(String[] args) throws Exception {
int i=10;
//byte[] b;
System.out.write("yeswanth".getBytes());
System.out.write(i);
String s1="shiva";
System.out.println(s1.hashCode());
}
}
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is jdbc api?
Define an enumeration?
What do you understand by java virtual machine?
is it possible to instantiate the math class?
What’s the difference between constructors and other methods?
Is void a data type?
What is the benefit of singleton pattern?
Java.util.regex consists of which classes?
What are drawbacks of singleton class?
How many arguments can a method have java?
How can you generate random numbers in java?
Hi all, I am dng a mini project on FileSplitter application which splits the GBs of logfile into Smaller chunks(mbs) depending on the split size." How to handle GBs file? I am getting OutOfMemoryException, when I input such GB sized file. Thx
List two java ide’s?
What is floor in java?
What is the difference between actual and formal parameters?