What is the Dictionary class?
How to make class immutable
Explain about assignment statement?
Can You Have Virtual Functions In Java?
Can we declare a constructor as final?
what is the difference between static block and static method
Can we sort hashmap 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..
can write code for serialization ?
can we add two numbers without using arthematic operators? if possible how?
What is the purpose of checked and unchecked exceptions in JAVA?
Why parsing is done?
What is the purpose of final keyword and when to use it?