IT Questions and Answers :)

Monday, December 30, 2019

In SQL this type of JOIN returns all the rows from the LEFT table and the corresponding matching rows from the right table. If right table doesn’t have the matching record then for such records right table column will have NULL value in the result.

In SQL this type of JOIN returns all the rows from the LEFT table and the corresponding matching rows from the right table. If right table doesn’t have the matching record then for such records right table column will have NULL value in the result.

  • NATURAL LEFT
  • LEFT [OUTER]
  • RECURSIVE HASH
  • [FAR] RIGHT 
In SQL this type of JOIN returns all the rows from the LEFT table and the corresponding matching rows from the right table. If right table doesn’t have the matching record then for such records right table column will have NULL value in the result.

EXPLANATION

The LEFT JOIN clause allows you to query data from multiple tables. It returns all rows from the left table and the matching rows from the right table. If no matching rows found in the right table, NULL are used.
This means that a left outer join returns all the values from the left table, plus matched values from the Right table or returns NULL in case of no matching join condition satisfied. In Right Outer-Join retrieves the unmatched rows and matched from the Right table and only matched rows from Left table.

 

Share:

Which Command prompt command will show a Windows system's last boot time on a networked computer?

Which Command prompt command will show a Windows system's last boot time on a networked computer?

  • SystemInfo /s *computer_name* | find "Boot Time:"
  • SystemInfo /s *computer_name* | "ShowUpTime:"
  • SystemInfo /s *computer_name* | "View Boot Time"
  • SystemInfo /s *computer_name* | find "UpTime:"

Which Command prompt command will show a Windows system's last boot time on a networked computer?

EXPLANATION

 Determining your computer's last reboot can help you keep track of its uptime. Microsoft offers separate tools for Windows XP Home and Windows XP Professional that let you see how long ago the last reboot occurred. Although Windows XP Professional users can use the native System Info command to check system uptime, operating system information and network status, Windows XP Home users may use Microsoft's Uptime.exe tool to view their system uptime.

C:\Users\Randy> SystemInfo   | find "UpTime:"

C:\Users\Randy> SystemInfo   | find "Boot"
System Boot Time:          23-12-2019, 11.51.16 PM
Boot Device:               \Device\HarddiskVolume1

C:\Users\Randy>
Share:

If you have four 1TB hard drives in a single array, which one of the following standard configurations gives you the most redundancy?

If you have four 1TB hard drives in a single array, which one of the following standard configurations gives you the most redundancy?

  • RAID 5
  • JBOD
  • RAID 6
  • RAID 0

EXPLANATION

EXPLANATION

Only Raid 5 and Raid 6 give you redundancy.  Regardless of size and performance, Raid 6 is fault tolerant to 2 disks failing, while Raid 5 is only fault tolerant to 1 disk failure.
JBOD "Just a Bunch Of Disks" (Standard not Hybrid) doesn't offer redundancy.
RAID 0 Offers performance gains by striping, but doesn't offer redundancy.
RAID 5 Offers a larger total drive size but only 1 drive of redundancy.
RAID 6 Requires at least 4 drives and has an extra drive of redundancy.

SOURCE

https://en.wikipedia.org/wiki/RAID

























































 


Share:

What is measured when calculating velocity during an agile sprint?

What is measured when calculating velocity during an agile sprint?

  • Number of tasks
  • Person-hours
  • Any of the answers
  • Story points 
What is measured when calculating velocity during an agile sprint?

EXPLANATION


Calculation of Velocity
The first version is actual velocity and involves dividing the total number of story points completed by the number of sprints. For example, if the development team has completed a total of 70 points over two sprints, the team's actual velocity would be 35 points per sprint.
Velocity is a measure of the amount of work a Team can tackle during a single Sprint and is the key metric in Scrum. Velocity is calculated at the end of the Sprint by totaling the Points for all fully completed User Stories.

Share:

Which record type would a DNS client be registered with on a DNS server?

Which record type would a DNS client be registered with on a DNS server?

  • 'NS' record
  • 'A' record
  • 'MX' record
  • 'CNAME' record 

EXPLANATION

DNS servers create a DNS record to provide important information about a domain or hostname, particularly its current IP address. The most common DNS record types are: Address Mapping record (A Record)—also known as a DNS host record, stores a hostname and its corresponding IPv4 address.


Share:

Popular Posts