Tribal Fusion Interview Question for Software Engineer / Developers


Country: India
Interview Type: Phone Interview




Comment hidden because of low score. Click to expand.
0
of 0 vote

The JRE loads classes into the JVM, most of the time. There are also custom class loaders for many online applications to allow instantiation of an object within the same namespace as a client or to instantiate an object given as reply to an HTTP request.

I do not know many class loaders.

- C++ Lion September 18, 2011 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

1.bootstrap and 2.user-defined class loader. The bootstrap class loader loads classes of the Java API. User-defined class loaders loads user-defined classes.

- Anonymous September 20, 2011 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

1. bootstrap
2.extensions
3.System

- Anonymous October 25, 2011 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

Each war has it's own class loader and each ear has it's own class loader

- Anonymous March 02, 2012 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

One more - user Defined

- buntha April 19, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

there are 3 kind of loader in java....
were system loader is the parent then extension is mediator and lastly bootstrap will call...

- agrawal.pinky07 August 29, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Bootstrap Class Loader
Bootstrap class loader loads java’s core classes like java.lang, java.util etc. These are classes that are part of java runtime environment. Bootstrap class loader is native implementation and so they may differ across different JVMs.
Extensions Class Loader
JAVA_HOME/jre/lib/ext contains jar packages that are extensions of standard core java classes. Extensions class loader loads classes from this ext folder. Using the system environment propery java.ext.dirs you can add ‘ext’ folders and jar files to be loaded using extensions class loader.
System Class Loader
Java classes that are available in the java classpath are loaded using System class loader.

- dileepjaiswal17@gmail.com January 12, 2013 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Very nice.. simple explanation..!!!

- Bhaskar June 03, 2015 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More