How to create packages in java?
Can we serialize arraylist in java?
What are different exception types exceptions available in java ?
What Is Resource Leak?
what is the constructor and how many types of constructors are used in java?
What is the original name of java?
What is a java applet? What is an interface?
why abstract class does not have object creation
What does singleton class mean?
Why stringbuilder is not thread safe in java?
What is class array in java?
How to make a write-only class in java?
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..