Differences between traditional programming language and object oriented programming language?
No Answer is Posted For this Question
Be the First to Post Answer
Why is string class considered immutable?
Hi friends, i am new to java. can you explain how java is secured.
How do you control extraneous variables?
How does static modifier work?
if am have 100 threads(for ex:T1,T2---T100) how we give priority to these threads and how the system excute these threads
what is use of functional interface in java 8?
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?
What is the difference between keyword and identifier?
Explain the concept of polymorphism with examples?
What is the largest number a double can hold?
what is the JNDI?
Why does abstract class have constructor?