What is variable and example?
What are the restrictions imposed by a Security Manager on Applets?.
When does an object becomes eligible for garbage collection in java?
How to make a class immutable?
How a variable is stored in memory?
Why is java multithreaded?
can write code for serialization ?
what is Vector class?
What is :: operator in java?
In C we use only compiler. Why java uses both compiler and interpreter? What is its significance?
What is re-factoring in software?
what happens when we add the objects morethan the size limit to a hashmap
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..