Answer:
1. Open Shortest Path First (OSPF)
2. Border Gateway Protocol (BGP)
3. Routing and Remote Access Service (RRAS)
4. Frame relay
5. Synchronous
6. Virtual
7. Committed Information Rate (CIR)
8. Integrated Services Digital Network (ISDN)
9. Asynchronous Transfer Mode (ATM)
10. Basic Rate Interface (BRI).
Answer:
Because his boss is not fair
Explanation:
Answer:
1 Procure sturdy devices. 2 Deleting old backups. 3 Physically distant backup location. 4 Regular backups.
Explanation:
mark brainliest pls am dying for it ಥ‿ಥ
Answer:
Explanation:
El siguiente algoritmo esta escrito en Java y genera un numero aleatorio. Despues le pide al usario que intente adivinar el numero. Si el usario adivina correctamente entoces le dice que fue correcto y termina el programa. Si no adivina bien entonces dice Incorrecto y le pide otra adivinanza al usario hasta llegar a la tercera adivinanza y se termina el programa.
import java.util.Random;
import java.util.Scanner;
class Brainly{
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
Random ran = new Random();
int numero = ran.nextInt(20);
for (int x = 0; x <= 2; x++) {
System.out.println("Adivina el numero entre 0 y 20: ");
int respuesta = in.nextInt();
if (respuesta == numero) {
System.out.println("Correcto");
break;
} else {
System.out.println("Incorrecto");
}
}
}
}