Which of the following is a network share containing the files required to install roles, role services, and features on Windows Server 2012/R2 servers?

a. Network install cache
b. Shared installation folder
c. Feature file store
d. On-demand file share


c. Feature file store

Computer Science & Information Technology

You might also like to view...

As of C++11, member function push_back is now overloaded with a version that takes a(n) ________. This allows the preceding call to push_back to take the storage allocated for the temporary string and reuse it directly for the new element in the vector. The temporary string will be destroyed when the function returns, so there’s no need for it to keep its content.

Prior to C++11 the following code created a temporary string object and passed it to push_back, which then copied it into the vector: vector; myVector; myVector.push_back("message"); a. const pointer b. rvalue reference c. rvalue pointer d. const reference

Computer Science & Information Technology

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

1. A great example of a first-of-a-series prototype would be constructing a full-scale model of a new type of car to be used for testing in a wind tunnel. 2. Develops is one way to decrease the deployment time for newly developed applications and maximize profit by rapidly addressing market opportunities and getting customer feedback in a timely manner. 3. As a systems analyst works to understand users, their organization, and its information requirements, it becomes important to examine different types of hard data that offer information unavailable through any other method of data gathering. 4. One important function of performance reports is to assess the size of the gap between actual and intended performance.

Computer Science & Information Technology

The segmented/demand paged memory allocation scheme is a combination of segmentation and demand paging, and it offers the logical benefits of segmentation, as well as the physical benefits of paging.

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

Computer Science & Information Technology

On all compilers, complete copies of all members of a structure can be passed to a function by including the name of the structure as an argument to the called function.

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

Computer Science & Information Technology