What are the different access modifiers available in java?
What is the difference between compiler and jvm?
how a marker interface gets its functionality and when we implements a marker interface how it got invoked
How are the elements of a gridbaglayout organized?
Does Java support multiple Inheritance?
Difference String and String Buffer
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..
What is consumer in java?
Is object a data type?
Can we call a non-static method from inside a static method?
can we add two numbers without using arthematic operators? if possible how?
What is a reflection package?
What is the final variable?