What is an object's lock and which object's have locks in java programming?
No Answer is Posted For this Question
Be the First to Post Answer
Is string passed by reference in java?
Can private members of a base class are inheritable justify?
What is Hash Code in Java?
What is scope & storage allocation of static, local and register variables? Explain with an example.
What is identifier give example?
v-model life cycle
Do you need to import math in java?
What is the final keyword in java?
Why Java is not purely object oriented?
50 Answers Elitecore, Persistent, Reliance, Wipro,
what is the difference between statis block and static variable
where the static methods will live ,on stack ? can you explain brefly
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..