1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Sergio039 [100]
2 years ago
7

What does Adsl stand for?

Computers and Technology
2 answers:
spin [16.1K]2 years ago
7 0
ADSL stands for Asymmetric Digital Subscriber Line


Dimas [21]2 years ago
3 0
Asymmetric digital subscriber line
You might be interested in
Explicar ventajas de las redes alámbricas, por favor que alguien me ayude.​
mezya [45]

Answer:

Dentro de las ventajas al implantar redes alambrica se encuentran las siguientes:    Los costos son relativamente bajos en comparación con las inalámbricas.    Ofrecen el máximo rendimiento posible.    Brindan mayor velocidad debido a que utilizan cable de Ethernet estándar hasta 100 Mbps. L as desventajas de una red A lambrica Entre las desventajas que presentan las redes alambicas están las siguientes: 

El acceso físico es uno de los problemas más comunes dentro de las redesalámbricas. Ya que para llegar a ciertos lugares dentro de la empresa, es muycomplicado el paso de los cables a través de las paredes de concreto u otrosobstáculos.  Dificultad y expectativas de expansión es otro de los problemas más comunes,ya que se define un numero de nodos en la red, así cuando se desea anexar un nodo mas ya no hay espacio en los switches instalados, esto cuando seadquiere un switch con el numero de puertos exacto para la red. Velocidades de una red alambrica Existen diferentes estándares. Entre los más comunes están el 802.11b y 802.11g, loscuales tienen la mayoría de los equipos (generalmente laptops) y transmite a unafrecuencia de 2.4 GHz, está disponible casi universalmente con una velocidad dehasta 11 Mbps y 54 Mbps.

    Se comunica a través de cables de datos que generalmente está basada en Ethernet.Los cables de datos también conocidos como cables de red de Ethernet o cables conhilos conductores (CAT5), conectan computadoras y otros dispositivos que forman lasredes. Las redes alámbricas son mejores cuando es necesario mover grandescantidades de datos a altas velocidades.Ventajas de una red alambricaDentro de las ventajas al implantar redes alambrica se encuentran las siguientes: Los costos son relativamente bajos en comparación con las inalámbricas. Ofrecen el máximo rendimiento posible. Brindan mayor velocidad debido a que utilizan cable de Ethernet estándar hasta 100 Mbps.Las desventajas de una redAlambricaEntre las desventajas que presentan las redes alambicas están las siguientes:El acceso físico es uno de los problemas más comunes dentro de las redesalámbricas. Ya que para llegar a ciertos lugares dentro de la empresa, es muycomplicado el paso de los cables a través de las paredes de concreto u otrosobstáculos.Dificultad y expectativas de expansión es otro de los problemas más comunes,ya que se define un numero de nodos en la red, así cuando se desea anexar un nodo mas ya no hay espacio en los switches instalados, esto cuando seadquiere un switch con el numero de puertos exacto para la red.Velocidades de una red alambricaExisten diferentes estándares. Entre los más comunes están el 802.11b y 802.11g, loscuales tienen la mayoría de los equipos (generalmente laptops) y transmite a unafrecuencia de 2.4 GHz, está disponible casi universalmente con una velocidad dehasta 11 Mbps y 54 Mbps.

 A lambrica Se comunica a través de cables de datos que generalmente está basada en Ethernet.Los cables de datos también conocidos como cables de red de Ethernet o cables conhilos conductores (CAT5), conectan computadoras y otros dispositivos que forman lasredes. Las redes alámbricas son mejores cuando es necesario mover grandescantidades de datos a altas velocidades. Ventajas de una red alambrica Dentro de las ventajas al implantar redes alambrica se encuentran las siguientes:    Los costos son relativamente bajos en comparación con las inalámbricas.    Ofrecen el máximo rendimiento posible.    Brindan mayor velocidad debido a que utilizan cable de Ethernet estándar hasta 100 Mbps. L as desventajas de una red A lambrica Entre las desventajas que presentan las redes alambicas están las siguientes:  El acceso físico es uno de los problemas más comunes dentro de las redesalámbricas. Ya que para llegar a ciertos lugares dentro de la empresa, es muycomplicado el paso de los cables a través de las paredes de concreto u otrosobstáculos.  Dificultad y expectativas de expansión es otro de los problemas más comunes,ya que se define un numero de nodos en la red, así cuando se desea anexar un nodo mas ya no hay espacio en los switches instalados, esto cuando seadquiere un switch con el numero de puertos exacto para la red. Velocidades de una red alambrica Existen diferentes estándares. Entre los más comunes están el 802.11b y 802.11g, loscuales tienen la mayoría de los equipos (generalmente laptops) y transmite a unafrecuencia de 2.4 GHz, está disponible casi universalmente con una velocidad dehasta 11 Mbps y 54 Mbps.

Explanation:

7 0
2 years ago
write a program that generates 100 random integrs between 0 and 9 and displays the count for each number. (Hint: Use (int) (math
Nataly_w [17]

Answer: The java program to generate 100 random numbers and count their occurrence is shown below.

import java.util.Random;

import java.util.*;

public class MyClass {

   public static void main(String args[]) {

     int[]count = new int[10];

// temporarily stores the randomly generated number

     int num;

     for(int i=0; i<10; i++)

     {

// initialize count of all digits from 0 to 9 to zero

           count[i] = 0;

     }

     for(int i=0; i<100; i++)

     {

// generates 100 random numbers or integers from 0 through 9

           num = (int) (Math.random() * 10);

           for(int j=0; j<10; j++)

           {

// compare each randomly generated number with digits from 0 to 9 and increment their count accordingly

               if(num == j)

                   count[j] = count[j]+1;

           }

     }

     System.out.println("The count of randomly generated numbers is shown below.");

     for(int i=0; i<10; i++)

     {

           System.out.println("Count of "+i+" is "+ count[i]);

     }

   }

}

OUTPUT

The count of randomly generated numbers is shown below.

Count of 0 is 10

Count of 1 is 8

Count of 2 is 13

Count of 3 is 10

Count of 4 is 9

Count of 5 is 13

Count of 6 is 7

Count of 7 is 11

Count of 8 is 9

Count of 9 is 10

Explanation: This program declares an integer array of size 10 and initializes it to 0.

Random numbers are generated as shown. The number is randomly generated in an outer for loop with executes 100 times for 100 numbers.

(int) (Math.random() * 10)

The package java.util.Math is imported to serve the purpose.

The above code generates random numbers which can be floating numbers. The integer part is extracted using (int).

This yields the digits from 0 through 9.

For every occurrence of digits from 0 to 9, the count of the index of the respective digit is incremented.

To serve this purpose, inner for loop is implemented. The variable used in this loop is compared with the random number and index of count incremented accordingly. The inner for loop runs 10 times at the maximum, in order to match random number with 0 through 9.

Lastly, the occurrence of every digit from 0 to 9 is displayed.

8 0
3 years ago
List at least six things you would check for if you were asked to evaluate the workspace of an employee for ergonomics
Evgen [1.6K]

Assessing the risk that surrounds stationary work of employees spending hours at their stations is essential. Below is a list of fundamental ergonomic principles that help identify ergonomic risk factors.


<span>1.       </span>Are the employees maintained in a neutral posture?

<span>2.       </span>Does the stationery allow for movement and stretching?

<span>3.       </span>Is there adequate lighting?

<span>4.       </span>Are chairs adequately adjustable?

<span>5.       </span>Are there appropriate foot rest?

<span>6.       </span>Is there extra storage for better desk organization?






0 0
3 years ago
You are the senior nurse on the unit and you are orienting a new graduate LVN/LPN. One of the subjects you want to cover today i
dem82 [27]

Answer:

The correct answer to the following question will be Option D (Homans sign).

Explanation:

To medicine, the symptom of Homans is considered a sign of thrombosis by some physicians. John Homans described Homans as an annoyance under the knee of the foot to 1941 after forced dorsification.

  • Inspect the limbs for edema, pulse equality, and capillary refill.
  • Check to sign Homans.
  • Feel any warmth or redness along the Calf area.
  • Bilateral calves should be equal in size and warmth.
  • There must be no swollen, sore places, and when the woman is moving, there will be no pain in the calves.

Therefore, Option D is the right answer.

4 0
3 years ago
17. When looking for information on a web site, what is the easiest method to find that information? The search button The searc
Ket [755]

Answer:

<h3>Using search engines</h3>

Explanation:

<h3>With billions of websites online today, there is a lot of information on the Internet. Search engines make this information easier to find. Let's look at the basics of using a search engine, as well as some techniques you can use to get better search results.</h3>
5 0
2 years ago
Other questions:
  • What is software that helps a computer operate efficiently and keeps track of data on a computer?
    14·1 answer
  • What was the importance of the turing machine to today’s computers?
    6·1 answer
  • When a number gets assigned to a variable that already has a value __________?
    6·1 answer
  • Let C(x) be the statement "x has a cat," let D(x) be the statement "x has a dog," and let F(x) be the statement "x has a ferret.
    12·1 answer
  • Universal Containers has a sales team focused on renewals. They will use many of the same Opportunity fields as other teams, but
    13·1 answer
  • [20 pts] Write the function rectangle(perimeter, area), which takes two positive integers, perimeter and area. It returns an int
    11·1 answer
  • What is the output of the code snippet given below?string s = "abcde";int i = 1;while (i &lt; 5){ cout &lt;&lt; s.substr (i, 1);
    11·1 answer
  • What is one advantage of using object-oriented programming?
    14·2 answers
  • How to determine the critical crack size for a<br> plate
    15·1 answer
  • How to recover permanently deleted photos on iphone 11?
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!