--%>

Different layers in Windows Architecture

Explain how many different layers comprise in Windows Architecture?

E

Expert

Verified

a.    At the bottom layer there consists a DLL files which are most important in playing a big part in the architecture.

b.    The layers consist of NTDLL.dll is below the bottom layer as well as WIN32K.sys files these consist of number of user-mode functions.

c.    The user-mode functions comprise of stubs which are used to call other type of functions as well as the RTL (Run Time Library).

d.    The 2nd layer of Windows Architecture consists of the libraries which is having the Win32 API and contains the user-defined functions as well as some part of the components.

e.    This layer similarly consists of .DLLs but in the form of components as well as Win32 APIs.

   Related Questions in Programming Languages

  • Q : Define Factoring Problem Factoring

    Factoring Problem: Factoring is the action of dividing an integer into a set of smaller integers (or factors) which, when multiplied altogether, form the unique integer. For illustration, the factors of 15 are 3 and 5; the factoring trouble is to find

  • Q : Functions of System calls Show what are

    Show what are the different functions of System calls?

  • Q : What is Hash function Hash function : A

    Hash function: A function employed to generate a hash code from the random contents of an object. The classes can override the hash Value method, inherited from the Object class, to state their own hash function.

  • Q : What is an Unary operator What is an

    What is an Unary operator: It is an operator which takes a single operand. Java's unary operators are as -, +, !, !, ++ and --.

  • Q : What is Bit Bit : It is a binary digit

    Bit: It is a binary digit that can take on two possible values: 0 and 1. The bits are basic building block of both data and programs. Computers regularly shift data around in multiples of eight-bit units (that is, bytes for the sake of effectiveness).

  • Q : Define the term RGB Color Model Define

    Define the term RGB Color Model: It is a color model based on representing a color as three components: green, red, and blue.

  • Q : Explain the applications of testing

    Explain the applications of testing life cycle.

  • Q : What is a Method body What is a Method

    What is a Method body: It is a body of a method: everything within the outermost block of the method.

  • Q : Write a program to print out ten random

    Write a program to print out ten random numbers from the following sets: a) {0, 1, 2, 3, 4, 5, ...99, 100} b) {1, 2, 3, 4, 5, 6} c) (10, 20, 30, 40, 50,...990, 1000} d) {-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5} e) {1.5, 2.0, 2.5, 3.0, 3.5}  

  • Q : Explain the way to create a Mutex

    Explain the way to create a Mutex.