What is module in project?


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

Post New Answer

More Core Java Interview Questions

Explain list interface?

0 Answers  


What is the final class modifier?

0 Answers  


What is object english?

0 Answers  


abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }

3 Answers  


What is the benefit of lambda expressions?

0 Answers  






String is an immutable object. Then how can the following code be justified. String s1 = ?ABC?; String s1 = s1+?XYZ?; s.o.p(s1); The output is ABCXYZ, which is the value of s1 ?

6 Answers   Flextronics, Keane India Ltd,


What error occurs if a try-catch-finally statement sequence does not have a catch clause?

4 Answers  


What is operator?

3 Answers  


What is assembly used for?

0 Answers  


What occurs when an object is constructed?

0 Answers  


what is the messsage u r going to get from an objectoriented programing?

0 Answers   MGL,


what is a working thread? : Java thread

0 Answers  


Categories