What is the Microsoft Management Console?
What will be an ideal response?
The MMC is a graphical interface shell that provides a structured environment to build management utilities. The MMC provides basic functionality, such as menus, so that management utility developers do not have to. This also provides a consistent user interface for all management utilities, which makes network administrators more productive.
You might also like to view...
A ________ is a software program or hardware devices that prevents unauthorized access to your computer
A) botnet B) zombie C) key logger D) firewall
What would be displayed as a result of executing the following code?
int x = 15, y = 20, z = 32; x += 12; y /= 6; z -= 14; System.out.println("x = " + x + ", y = " + y + ", z = " + z); a. x = 27, y = 3.333, z = 18 b. x = 27, y = 2, z = 18 c. x = 37, y = -14, z = 4 d. x = 27, y = 3, z = 18