How do you replace all in word?
No Answer is Posted For this Question
Be the First to Post Answer
What is the range of a character variable?
What is a reflection package?
Is passing by reference faster?
Is void a wrapper class?
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..
how jvm allocates memory for stack?
What are legal modifiers that we can use to declare an inner class?
Is main a keyword in java?
what is platform
What is the effect of keeping a constructor private?
Explain about features of local inner class?
what is java bean?where can we use it?