IT Questions and Answers :)

Tuesday, December 24, 2019

What is a 'string' when referring to types of data?

What is a 'string' when referring to types of data?

  • A material for sewing.
  • A sequence of characters.
  • A linked list of numeric values.
  • An array of threads. 

EXPLANATION

A string is a data type used in programming, such as an integer and floating point unit, but is used to represent text rather than numbers. It is comprised of a set of characters that can also contain spaces and numbers. For example, the word "hamburger" and the phrase "I ate 3 hamburgers" are both strings.

 


Share:

What does raid 1+0 do?

What does raid 1+0 do?

  • Stripe
  • Mirror + Stripe
  • Mirror
  • Duplicate 
What does raid 1+0 do?

EXPLANATION

RAID 10, also known as RAID 1+0, is a RAID configuration that combines disk mirroring and disk striping to protect data. ... As long as one disk in each mirrored pair is functional, data can be retrieved. If two disks in the same mirrored pair fail, all data will be lost because there is no parity in the striped sets.
A RAID 1 configuration provides only data protection by copying data from one drive to another. Data is fully protected as the mirror copy is available if the originating drive is disabled or unavailable. Because it makes a full duplicate of the data, the RAID 1 requires twice as much storage capacity as required by the original data.
RAID 0 doesn't provide any data protection; its sole purpose is to enhance drive access performance. It does that by spreading the data out across two or more drives so that multiple read/write heads on the drives can write or access portions of data simultaneously, thus speeding up overall processing.
RAID 10 provides data redundancy and improves performance, and is the a good option for I/O-intensive applications -- including email, web servers, databases and operations that require high disk performance -- and organizations that require little to no downtime.
The high performance of RAID 10, and its ability to speed up both write and read activities, makes it suited to highly used, mission-critical database servers. However, the four-disk minimum requirement makes RAID 10 a costly choice for smaller computing environments, as it entails a 100% storage capacity overhead, which may be overkill for small businesses or consumer use.

Share:

Which DNS record types are used when sending email?

Which DNS record types are used when sending email?

  • A
  • NS
  • All of these
  • MX 
Which DNS record types are used when sending email?

EXPLANATION

Mail exchanger record (MX Record)—specifies an SMTP email server for the domain, used to route outgoing emails to an email server. Name Server records (NS Record)—specifies that a DNS Zone, such as “example.com” is delegated to a specific Authoritative Name Server, and provides the address of the name server.
Share:

Which of the following cmdlets in Windows Powershell enables remote management for Powershell 3.0 and later?

Which of the following cmdlets in Windows Powershell enables remote management for Powershell 3.0 and later?

  • WinRM enable
  • Enter-PSSession
  • WinRM
  • Enable-PSRemoting 
Which of the following cmdlets in Windows Powershell enables remote management for Powershell 3.0 and later?

EXPLANATION

If you want to manage Windows computers remotely with PowerShell, you first have to enable PowerShell remoting on the remote machine. You can then use the Invoke-Command and Enter-PSsession cmdlets to execute PowerShell commands on the remote machine.
 To enable PowerShell remoting on a single machine, you can log on to this computer locally or via Remote Desktop and then execute Enable-PSRemoting at a PowerShell prompt with administrator rights. For more information read Microsoft's documentation about the Enable-PSRemoting cmdlet


Share:

What is the actuall capacity size of an 120GB hard Disk

What is the actuall capacity size of an 120GB hard Disk

  • 0,500546 Tebibyte
  • 0,115139 Tebibyte
  • 0,109139 Tebibyte
  • 120 Tebibyte 
What is the actuall capacity size of an 120GB hard Disk

EXPLANATION

Tebibyte. A tebibyte is a unit of data storage that equals 2 to the 40th power, or 1,099,511,627,776 bytes. While a terabyte can be estimated as 10^12 or 1,000,000,000,000 bytes, a tebibyte is exactly 1,099,511,627,776 bytes. This is to avoid the ambiguity associated with the size of terabytes.




Share:

Popular Posts