IT Questions and Answers :)

Thursday, November 23, 2017

In Active Directory, you CANNOT link a group policy object (GPO) to which of the following?

In Active Directory, you CANNOT link a group policy object (GPO) to which of the following?

  • Site
  • Default container
  • OU
  • Domain 
In Active Directory, you CANNOT link a group policy object (GPO) to which of the following?

 

EXPLANATION

A Group Policy Object (GPO) is a collection of settings that define what a system will look like and how it will behave for a defined group of users. You can use the Group Policy Microsoft Management Console (MMC) to configure them. In the Group Policy Management Console (GPMC) console tree, you can link a GPO with the site, domain, or organizational unit (OU). You cannot link them to the default container.
Share:

Which of the following could you use while executing a PowerShell cmdlet to ignore errors?

Which of the following could you use while executing a PowerShell cmdlet to ignore errors?

  • -Action Errorignore
  • -ErrorAction Silentlycontinue
  • -Action Errorskip
  • -ErrorAction Stop 

 
Which of the following could you use while executing a PowerShell cmdlet to ignore errors?

EXPLANATION

If you want to ignore errors while executing a Powershell script, use -ErrorAction Silentlycontinue.
For more information please see the " ErrorAction parameter" section of: https://blogs.technet.microsoft.com/heyscriptingguy/2014/07/09/handling-errors-the-powershell-way/

Share:

What is the minimum number of drives required by RAID 60?

What is the minimum number of drives required by RAID 60?

  • 10
  • 4
  • 8
What is the minimum number of drives required by RAID 60?

 

EXPLANATION

RAID 60 requires a minimum of 8 drives, since it is 2 RAID 6 configurations (which each require 4 disks).

SOURCE

https://docs.oracle.com/cd/E19494-01/820-1260-15/appendixf.html#50548797_31043
Share:

Convert 101 from decimal to binary.

Convert 101 from decimal to binary.

  • 1010101
  • 1110111
  • 1011001
  • 1100101

 
Convert 101 from decimal to binary.

EXPLANATION

From right to left, each column represents double the last column starting with the number 1. So the answer: 1100101 represents from right to left: (1x1) + (0x2) + (1x4) + (0x8) + (0x16) + (1x32) + (1x64) = 101.
Share:

Which of the following is NOT a daemon in Postfix?

Which of the following is NOT a daemon in Postfix?

  • smtpd
  • master
  • qmgr   
  • crond 

 
Which of the following is NOT a daemon in Postfix?

EXPLANATION

The crond daemon is a Linux daemon, not a Postfix daemon.
The master daemon is the brain of the Postfix mail system. It spawns all other daemons. The smtpd daemon (server) handles incoming connections. The qmgr daemon is the heart of the Postfix mail system. It processes and controls all messages in the mail queues.

Share:

Which of the following is NOT a Linux distro?

Which of the following is NOT a Linux distro?

  • Ubuntu
  • Red Hat
  • Mint
  • BSD
 
Which of the following is NOT a Linux distro?

EXPLANATION

Berkeley Software Distribution (BSD) is a Unix operating system derivative developed and distributed by the Computer Systems Research Group (CSRG) of the University of California, Berkeley, from 1977 to 1995. Today the term "BSD" is often used non-specifically to refer to any of the BSD descendants which together form a branch of the family ofUnix-like operating systems. Operating systems derived from the original BSD code remain actively developed and widely used.  
Share:

VMware Workstation replaces CTRL-ALT-DELETE with which of the following?

VMware Workstation replaces CTRL-ALT-DELETE with which of the following?

  • CTRL-ALT-INSERT
  • A mouse click
  • CTRL-ALT-SHIFT
  • CTRL-ALT-TAB 

 
VMware Workstation replaces CTRL-ALT-DELETE with which of the following?

EXPLANATION

When you are working in a Windows virtual machine, VMware uses CTRL-ALT-INSERT instead of CTRL-ALT-DELETE. .

SOURCE

https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1011705
Share:

Popular Posts