Why java is call by value?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the difference between throw and throws in java?
Can you inherit from an abstract class java?
What is increment in java?
How does compareto method work?
solve this is my problem byte a=40,byte b=50 both add value is 90 this is with in range of byte... byte range is -128to 127.... why this pgm gives error like type mismatch.... package javapgms; public class byte1 { public static void main(String args[]) { byte a=40,b=50; byte c=a+b; System.out.println(c); } } note : dont use int k... a,b,c are in byte range... mind it..
diff b/w sleep(1000) and wait(1000)?
What are different data structures in java?
What is widening and narrowing in java? Discuss with an example.
What are the different types of data structures in java?
How can we make a class virtual?
What is null in java?
State the difference between strings and arrays.