Differences between traditional programming language and object oriented programming language?


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

Post New Answer

More Core Java Interview Questions

Why is string class considered immutable?

0 Answers  


Hi friends, i am new to java. can you explain how java is secured.

2 Answers  


How do you control extraneous variables?

0 Answers  


How does static modifier work?

1 Answers   Wipro,


if am have 100 threads(for ex:T1,T2---T100) how we give priority to these threads and how the system excute these threads

2 Answers  






what is use of functional interface in java 8?

0 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  


What is the difference between keyword and identifier?

0 Answers  


Explain the concept of polymorphism with examples?

6 Answers   Summation Tech,


What is the largest number a double can hold?

0 Answers  


what is the JNDI?

3 Answers  


Why does abstract class have constructor?

0 Answers  


Categories