Describe the registry which was introduced in Windows 95.
What will be an ideal response?
The registry is a hierarchical database that provides the following information:
* Operating system configuration
* Service and device driver information and configuration
* Software and application parameters
* Hardware configuration
* Performance information
* Desktop configuration
You might also like to view...
A security technician is implementing PKI on a Network. The technician wishes to reduce the amount of bandwidth used when verifying the validity of a certificate. Which of the following should the technician implement?
A. CSR B. Key escrow C. OSCR D. CRL
Given the following function declaration and local variable declarations, which of the following is not a correct function call?
int myInt; float myFloat; char ch; void someFunction(int& first, float second, char third); a. someFunction(1, 2.0, ch); b. someFunction(myInt, myFloat, ch); c. someFunction(myInt, 2.0, 'c'); d. someFunction(myInt, myFloat, '1');