What are the types of relation?


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

Post New Answer

More Core Java Interview Questions

Explain throw keyword in java?

0 Answers  


Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }

3 Answers  


What are inner classes or non static nested classes in java?

0 Answers  


What is the list interface?

0 Answers  


Why singleton class is used in java?

0 Answers  






What is classpath?

0 Answers  


What do you mean by thread safe?

0 Answers  


What will be the output of round(3.7) and ceil(3.7)?

0 Answers  


What is lossy conversion in java?

0 Answers  


Why java does not supports multiple inheritance?

3 Answers   TCS, VSoft,


What are the types of methods in java?

0 Answers  


What is a nested structure?

0 Answers  


Categories