Answer:
If you have problem with the site
I think you should probably check in some other time
bcuz for me, sometimes I try to get in and I can't login
I haven't yet seen this problem for me
it could also mean that your internet is slow/not working
Explanation:
Answer:
Domain Name System Security Extensions (DNSSEC)
Explanation:
The Internet Engineering Taskforce has specified the Domain name system Security Extensions or the DNSSEC for ensuring the security of various types of information being provided by the DNS as being implemented on the Internet protocol (IP) networks.
The DNSSEC saves the internet community from the fraudulent DNS data through the use of the public key cryptography that is being used to digitally sign the authoritative zone data as it enters the system and then does the required validation at the destination.
Answer:
Please see the attached image
Explanation:
Answer:
log 5,6,7,8,9 is the binary number according to the computer
Answer:
Explanation:
The following program is written in Java. It asks the user for the two inputs and then uses those inputs in a for loop. The loop goes through each number checking to see if it is even or odd. If it is even it prints out Even: and the number after multiplying it by 3. If it is odd it prints out Odd: and the number after adding 10 to it. The output can be seen in the attached picture below.
import java.util.Scanner;
class Brainly {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter number 1: ");
int num1 = in.nextInt();
System.out.println("Enter number 2:");
int num2 = in.nextInt();
for (int x = num1; x <= num2; x++) {
if ((x % 2) == 0) {
System.out.println("Even: " + (x*3));
} else {
System.out.println("Odd: " + (x+10));
}
}
}
}