Answer Posted / nagireddy.siddaka
my answer is like this
class A{
int a;
int b;
A(){
this.a=12;
this.b=14;
)
| Is This Answer Correct ? | 17 Yes | 3 No |
Post New Answer View All Answers
Is there any way to skip finally block of exception even if some exception occurs in the exception block?
What is the byte range?
What are the different access modifiers available in java?
State one difference between a template class and class template.
Why string objects are immutable in java?
In Java list the methods that can be overridden?
Differentiate between a class and an object.
Can you start a thread twice in Java?
Variables used in a switch statement can be used with which datatypes?
Assume a thread has lock on it, calling sleep() method on that thread will release the lock?
What is the difference between actual and formal parameters?
What about interrupt() method of thread class ?
How does list work in java?
Is it possible to override private or static method in java?
is there a separate stack for each thread in java? : Java thread