Java Hibernate Interview Questions & Answers part 2
Q: - What is Hibernate proxy?
Mapping of classes can be made into a proxy instead of a table. A proxy is returned when actually...
Java Hibernate Interview Questions & Answers part 1
Q: - What is hibernate (Java) ?
Hibernate is an object-relational mapping (ORM) library for the Java language, providing a framework for mapping an object-oriented...
Objective C Interview Questions & Answers
Q: - What is #import ?
It's a C preprocessor construct to avoid multiple inclusions of the same file.
#import <Object.h>
is an alternative to
#include <Object.h>
where the...
Python Interview Questions & Answers
Q: - What is Python?
Python is an interpreted, interactive, object-oriented programming language. It incorporates modules, exceptions, dynamic typing, very high level dynamic data types,...
C Sharp Interview Questions & Answers part 3
Q: - Explain how to configure Trace switches in the application’s .config file ?
switches are configured using the .config file
<system.diagnostics>
<switches>
<add name="MyTraceSwitch" value="1" />
<add name="TraceSwitch2"...
C Sharp Interview Questions & Answers part 2
Q: - Explain how garbage collection deals with circular references ?
The .Net runtime knows about all the references between the objects. It can identify...
C Sharp Interview Questions & Answers part 1
Q: - What is c#(c sharp programming language)?
C# (pronounced see sharp) is a multi-paradigm programming language encompassing strong typing, imperative, declarative, functional, generic, object-oriented...
JSF Interview Questions & Answers
Q: - What is JSF (or JavaServer Faces)?
A server side user interface component framework for Java™ technology-based web applications.JavaServer Faces (JSF) is an industry...
PL/SQL Interview Questions & Answers
Q: - What is the difference between SQL and PL/SQL?
Both SQL and PL/SQL are languages used to access data within Oracle databases.
SQL is a...