Can we use a switch statement with strings?
What is protected in java?
int a=10,b=20,c=30 a= b+c;b=a+c;c=a+b; System.out.println("The value is"+a+b+c;
What do you understand by garbage collection in Java? Can it be forced to run?
What is final keyword in java?
can u override the start() method of Thread class
What is string in java is it a data type?
byte a=5; byte b=5; byte c=a+b; System.out.println(c); whats the o/p?
What is passed by reference and pass by value ?
What is the disadvantage of synchronization?
What is instance example?
What is the difference between Stream Reader and Stream Writer?
Can I extend singleton class in java?