Is it possible for yielded thread to get chance for its execution again ?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

What is the purpose of nested class in java?

0 Answers  


What is the life-cycle of an object?

2 Answers   Broadridge, Syntel,


What is string pooling concept?

0 Answers  


adapter class ?

2 Answers  


public class Garbage { int a=0; public void add() { int c=10+20; System.out.println(c); System.out.println(a); } public static void main(String args[]) { Garbage obj=new Garbage(); System.gc(); System.out.println("Garbage Collected"); obj.add(); } } Above is a code in java used for garbage collection. object obj has been created for the class Garbage and system.gc method is called. Then using that object add method is called.System.gc method if called the obj should be garbage collected?

6 Answers  






Can we have 2 main methods in java class?

0 Answers  


For technical interview question please sir send me because tomorrow my interview

1 Answers   FactSet Systems,


I Have a class abstract with one abstract method, so that method should override in the subclass, but i dont want to override, if i am not override what will happen? If compilation will occur then i dont want to give compilation error, then what we need to do??? See the sample program. public abstract class AbstractExample { public abstract void sampleMethod(); } public class AbstractExampleImple extends AbstractExample { }

2 Answers   Mphasis,


What is internal iteration in java se 8?

0 Answers  


What are assertions in java?

1 Answers   Impetus,


What are peerless components in java programming?

0 Answers  


What is an anonymous class?

1 Answers   IBM,


Categories