-
Recent Posts
-
Archives
Daily Archives: April 29, 2009
Oracle – Frequently Asked Questions
1. What is ORACLE? Oracle is a Relational Database Management System (RDBMS) which is used widely for business applications. 2. What is SGA? The System Global Area (SGA) is a shared memory region allocated by ORACLE that contains data and control information for one ORACLE instance. 3. What is the function of Checkpoint (CKPT)? The Checkpoint (CKPT) process is responsible for signaling DBWR at checkpoints and updating all the data files and control files of the database. The CKPT is also useful to get the point in time from where to begin the recovery in … More ->
.NET Frequently Asked Questions
1. What is meant by the .NET framework? The Microsoft .NET Framework is a standards-based, language independent application development and execution environment. It consists of a runtime environment called the CLR (common language runtime) and a set of libraries called .NET Class Libraries to enhance programmers’ efficiency and productivity. 2. What are the different types of JIT compilers? JIT compiler is a part of .NET runtime execution environment. There are three types of JIT compilers, pre-JIT, Econo-JIT and Normal-JIT. 3. … More ->