Core Java Interview Questions
Questions Answers Views Company eMail

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 4708

1) There are 10 different threads in runnable state. Each having priority 1 to 10. How does the CPU schedules or executes these threads?

RBS,

2 6463

2) Suppose there are 5 directories having lot of files (say txt files) in each directory. 2 things :- 2.1) You want to search for filenames which have a particular pattern. 2.2) Out of these filtered files you want to search for a particular keyword or a search string. How can you achieve this?

RBS, TCS,

2036

3) Suppose you are a very rich person, having 50 rooms and you have lost the key for one of the room's. How effectively you can find this key? (Qs2 and Qs3 are related)

RBS,

3 8274

Suppose there is a System A which gives some output. This output is used as input by system B. The rate at which System A produces is faster than the rate at which system B consumes it. How can you improve this?

RBS,

1 5371

Suppose there is an Online shopping cart application having different objects like Cart, SelectionItem, Billing, COnfiguration, Authentication, Authorization, PersonalDetails etc. Out of this which one can be made a singleton pattern and why?

RBS,

2 10210

What is Co-Variant return type in method overriding?

RBS,

1 5378

7) Suppose there is Student class like class student { int age; string name; } We want to store these objects in a HashMap. Do we need to override any methods in Student class? If any which ones and why? what if i just override equals or just hashcode? what will be the results in both the cases?

CSC, Nagarro, RBS,

4 8272

Can an abstract class have a constructor?

RBS, Wipro,

1 9202

What is the life cycle of Servlet?

3 5749

JVM responsibility?

TCS,

6 15093

explain Anonynous inner class?

TCS,

6 8556

why is S capital in System.out.println ????

6 19380

what is difference between length and length()?

8 16697

how your day start in your company

1 3372


Post New Core Java Questions

Un-Answered Questions { Core Java }

does java support pointers?

743


What are nested classes in java?

806


what is the purpose of the wait(), notify(), and notifyall() methods? : Java thread

770


how to one war file class to another war file class?

1760


Difference between static binding and dynamic binding?

776


List some important features of java 10 release?

712


What are inbuilt functions in java?

782


What are exceptions

824


What is the main method java?

744


How variables are stored in memory?

712


What is java developer skills?

720


Can an unreferenced object be referenced again?

931


Does the order of public and static declaration matter in main method?

815


What is the final class modifier?

740


What about member inner classes?

851