Differece between class and generic class?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we use regex?
How do you include a string in java?
What do you mean by constructor?
What do you mean by Hash Map and Hash Table?
Can we override static methods?
18 Answers Bally Technologies,
What is the reason that multiple inheritance is not possible in java??
What is an image buffer?
how to call one program .class file in another program
What is the USE of Null interfaces ??...if thers nothing inside these interfaces how are they used and WHy are they used ???? No 1 has given a proper description yet
Explain the advantages of packages in java?
What is meant by memory leak?
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..