Which of the following is a hive in the Windows registry?

a. HKEY_CLASSES_ROOT
B. HKEY_USERS_CLASSES
C. HEKY_CLASSES_USER
D. HKEY_ROOT_CLASSES


Answer: a. HKEY_CLASSES_ROOT

Computer Science & Information Technology

You might also like to view...

Which of the following is true?

a. C++ does not provide any capabilities for generating random numbers that cannot be predicted. b. C++11 provides random number capabilities that can produce nondeterministic random numbers—a set of random numbers that can’t be predicted. c. Random numbers produced by the rand function are nondeterministic. d. None of the above.

Computer Science & Information Technology

Most programming languages are owned by a specific company or organization.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

2.14dBi equals _______ dBd

Fill in the blank(s) with correct word

Computer Science & Information Technology

What operation does the following function implement?BST_TREE* aBST_Operation (int (*compare) (void* argu1, void* argu2)){   BST_TREE* tree;   tree = (BST_TREE*) malloc (sizeof (BST_TREE));   if (tree)   {      tree->root = NULL;      tree->count = 0;      tree->compare = compare;   } // if   return tree;}

A. create B. destroy C. empty D. full

Computer Science & Information Technology