IT Questions and Answers :)

Friday, May 17, 2019

What is the network name needed to connect to a wireless access point?

What is the network name needed to connect to a wireless access point?

  • Basic Service Address (BSA)
  • MAC address
  • Service Set Identifier (SSID)
  • Extended Service Set (ESS) 

EXPLANATION

SSID is short for service set identifier. In layman's terms, an SSID is the name for a Wi-Fi network.
People typically encounter an SSID most often when they are using a mobile device to connect to a wireless network. For example, if you take your laptop to the coffee shop and attempt to connect to the local Wi-Fi network, your screen will display a list of SSIDs — this is the names of all the networks that are within range of your mobile device. You'll select the name of the local network you want to connect to and then enter the password (if necessary) to connect.
Note that some public networks, typically managed by a business, may require you to first read and agree to an online terms of service (ToS) before allowing you to connect.

SOURCE

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

Share:

Which nested RAID level combines block-level striping with distributed parity?

Which nested RAID level combines block-level striping with distributed parity?

  • RAID 30
  • RAID 60
  • RAID 50
  • RAID 10 
Which nested RAID level combines block-level striping with distributed parity?

EXPLANATION

RAID 50 (RAID 5+0)

A RAID 50 combines the straight block-level striping of RAID 0 with the distributed parity of RAID 5. This is a RAID 0 array striped across RAID 5 elements. It requires at least 6 drives.

Provides great balance between storage performance, storage capacity, and data integrity that’s not necessarily found in other RAID levels.One drive from each of the RAID 5 sets could fail without loss of data.

The time spent in recovery (detecting and responding to a drive failure, and the rebuild process to the newly inserted drive) represents a period of vulnerability to the RAID set.

Share:

Which of these is NOT a Linux desktop?

Which of these is NOT a Linux desktop?

  • Butterfly
  • Gnome
  • Cinnamon
  • XFCE 
Which of these is NOT a Linux desktop?

EXPLANATION

 Butterfly is a xterm compatible terminal that runs in your browser.

Features

  • xterm compatible (support a lot of unused features!)
  • Native browser scroll and search
  • Theming in css / sass (20 preset themes) endless possibilities!
  • HTML in your terminal! cat images and use <table>
  • Multiple sessions support (à la screen -x) to simultaneously access a terminal from several places on the planet!
  • Secure authentication with X509 certificates!
  • 16,777,216 colors support!
  • Keyboard text selection!
  • Desktop notifications on terminal output!
  • Geolocation from browser!
  • May work on firefox too!
https://github.com/paradoxxxzero/butterfly
Share:

Which of the following would log you into Azure Resource Manager via Powershell

Which of the following would log you into Azure Resource Manager via Powershell

  • login-azureaccount
  • login-azurermaccount
  • new-azuresession
  • login-azure 

 
Which of the following would log you into Azure Resource Manager via Powershell

EXPLANATION

Login-AzureRMAccount requires you have the AzureRM modules installed. and will prompt you for credentials. You can also extend this to login to a particular Subscription under that login.
For example: login-azurermaccount -subscriptionid "Dev Sub"

SOURCE

https://4sysops.com/archives/auto-login-to-azure-with-powershell/
Share:

Thursday, May 16, 2019

Convert 56 from decimal to binary.

Convert 56 from decimal to binary.

  • 110110
  • 1001000
  • 111000
  • 110111 
Convert 56 from decimal to binary.

EXPLANATION

 

Binary to decimal conversion result in base numbers

(111000)2 = (56)10

Binary System

The binary numeral system uses the number 2 as its base (radix). As a base-2 numeral system, it consists of only two numbers: 0 and 1.
While it has been applied in ancient Egypt, China and India for different purposes, the binary system has become the language of electronics and computers in the modern world. This is the most efficient system to detect an electric signal’s off (0) and on (1) state. It is also the basis for binary code that is used to compose data in computer-based machines. Even the digital text that you are reading right now consists of binary numbers.

Reading a binary number is easier than it looks: This is a positional system; therefore, every digit in a binary number is raised to the powers of 2, starting from the rightmost with 20. In the binary system, each binary digit refers to 1 bit.

How to Read a Binary Number

In order to convert binary to decimal, basic knowledge on how to read a binary number might help. As mentioned above, in the positional system of binary, each bit (binary digit) is a power of 2. This means that every binary number could be represented as powers of 2, with the rightmost one being in the position of 20
Example: The binary number (1010)2 can also be written as follows:
(1 * 23) + (0 * 22) + (1 * 21) + (0 * 20)

Decimal System

The decimal numeral system is the most commonly used and the standard system in daily life. It uses the number 10 as its base (radix). Therefore, it has 10 symbols: The numbers from 0 to 9; namely 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9.

As one of the oldest known numeral systems, the decimal numeral system has been used by many ancient civilizations. The difficulty of representing very large numbers in the decimal system was overcome by the Hindu–Arabic numeral system. The Hindu-Arabic numeral system gives positions to the digits in a number and this method works by using powers of the base 10; digits are raised to the nth power, in accordance with their position.
For instance, take the number 2345.67 in the decimal system:
  • The digit 5 is in the position of ones (100, which equals 1),
  • 4 is in the position of tens (101)
  • 3 is in the position of hundreds (102)
  • 2 is in the position of thousands (103)
  • Meanwhile, the digit 6 after the decimal point is in the tenths (1/10, which is 10-1) and 7 is in the hundredths (1/100, which is 10-2) position
  • Thus, the number 2345.67 can also be represented as follows: (2 * 103) + (3 * 102) + (4 * 101) + (6 * 10-1) + (7 * 10-2)

How to Convert Binary to Decimal

There are two methods to apply a binary to decimal conversion. The first one uses positional representation of the binary, which is described above. The second method is called double dabble and is used for converting longer binary strings faster. It doesn’t use the positions.


Method 1: Using Positions

  • Step 1: Write down (1010)2 and determine the positions, namely the powers of 2 that the digit belongs to.
  • Step 2: Represent the number in terms of its positions. (1 * 23) + (0 * 22) + (1 * 21) + (0 * 20)
  • Step 3: (1 * 8) + (0 * 4) + (1 * 2) + (0 * 1) = 8 + 0 + 2 + 0 = 10
  • Therefore, (1010)2 = (10)10
(Note that the digits 0 in the binary produced zero values in the decimal as well.)

Method 2: Double Dabble

Also called doubling, this method is actually an algorithm that can be applied to convert from any given base to decimal. Double dabble helps converting longer binary strings in your head and the only thing to remember is ‘double the total and add the next digit’.
  • Step 1: Write down the binary number. Starting from the left, you will be doubling the previous total and adding the current digit. In the first step the previous total is always 0 because you are just starting. Therefore, double the total (0 * 2 = 0) and add the leftmost digit.
  • Step 2: Double the total and add the next leftmost digit.
  • Step 3: Double the total and add the next leftmost digit. Repeat this until you run out of digits.
  • Step 4: The result you get after adding the last digit to the previous doubled total is the decimal equivalent.
Now, let’s apply the double dabble method to same the binary number, (1010)2
  • Your previous total 0. Your leftmost digit is 1. Double the total and add the leftmost digit
    (0 * 2) + 1 = 1
  • Step 2: Double the previous total and add the next leftmost digit.
    (1 * 2) + 0 = 2
  • Step 3: Double the previous total and add the next leftmost digit.
    (2 * 2) + 1 = 5
  • Step 4: Double the previous total and add the next leftmost digit.
    (5 * 2) + 0 = 10
This is where you run out of digits in this example. Therefore, (1010)2 = (10)10

Binary to decimal conversion examples

Example 1: (1110010)2  = (114)10
Method 1:
(0 * 20) + (1 * 21) + (0 * 22) + (0 * 23) + (1 * 24) + (1 * 25) + (1 * 26)
= (0 * 1) + (1 * 2) + (0 * 4) + (0 * 8) + (1 * 16) + (1 * 32) + (1 * 64)
= 0 + 2 + 0 + 0 + 16 + 32 + 64 = 114
Method 2:
0 (previous sum at starting point)
(0 + 1) * 2 = 2
2 + 1 = 3
3 * 2 =6
6 + 1 =7
7 * 2 = 14
14 + 0 =14
14 * 2 = 28
28 + 0 =28
28 * 2 = 56
56 + 1 = 57
57 * 2 = 114

Example 2: (11011)2  = (27)10
Method 1:
(0 * 20) + (1 * 21) + (0 * 22) + (1 * 23) + (1 * 24)
= (1 * 1) + (1 * 2) + (0 * 4) + (1 * 8) + (1 * 16)
= 1 + 2 + 0 + 8 + 16 = 27
Method 2:
(0 * 2) + 1 = 1
(1 * 2) + 1 = 3
(3 * 2) + 0 = 6
(6 * 2) + 1 = 13
(13 * 2) + 1 = 27
Share:

What minimum bandwidth do most experts recommend for good VoIP call signal quality?

What minimum bandwidth do most experts recommend for good VoIP call signal quality?

  • 90 Kbps
  • 60 Kbps
  • 25 Kbps
  • 255 Kbps 
What minimum bandwidth do most experts recommend for good VoIP call signal quality?

EXPLANATION

Normally, 90 kbps is sufficient for good quality VoIP (provided, of course, that other factors are favorable too).

In case you are a residential user, try to avoid dial-up 56 kbps connections for VoIP. Although it will work, it will very likely give you a very bad VoIP experience. The best bet is a DSL connection. As it goes beyond 90 kbps, you are good.


Share:

Which of theses network characteristics is commonly associated with an echo on a VoIP connection?

Which of theses network characteristics is commonly associated with an echo on a VoIP connection?

  • Propagation delay
  • Signal capture and regeneration from link to link
  • Packet queue delay
  • Connection latency 

Which of theses network characteristics is commonly associated with an echo on a VoIP connection?

EXPLANATION

Here are the factors that tend to cause VoIP latency:
  • You lack sufficient bandwidth. When an internet connection is slow, data packets take more time to flow to and fro. This causes quality to suffer. Often, the packets arrive in the wrong order, which makes reassembly impossible unless the order is restored. This is one of the disadvantages of packet switching, which VoIP uses.
  • Your firewall might be blocking traffic. Checkpoints are always a bottleneck, so make sure you allow clearance for your VoIP apps within the firewall software.
  • The wrong codecs are being used. Codecs are programs used to encode voice signals into digital data for transmission over the network, and your provider might be using the wrong one. You can't do anything about that; however, if you're using a VoIP app that allows you to tweak codecs, try changing them.
  • You're using old hardware. Old hardware with new software or new networks might not work that well, and delay and latency are often a result. Try using a different telephone adapter or phone (if you are using an IP phone or any other VoIP-specific hardware). Your hub also might be a culprit. Headsets often cause latency, too.
  • Your system might be converting the signal to or from analog or digital.
  • Buffering is causing audio latency. Buffering occurs when audio data is being transferred and when there's a difference between the time of transmission and reception.
Share:

Popular Posts