Answer:
Routers control traffic between networks while switches control traffic within a network
Explanation:
Router and switches both are used to control the traffic. In local area network, different computer are connected with each other with in the organization or network. Switch is used to connect all the computers or devices in the local area network (LAN). The switch is responsible for connecting all the computers in the LAN and controlling the traffic within the LAN network.
On the other hand, Wide Area Network (WAN) is consist of multiple number of Local Area Networks (LANs). To connect all the LAN router is used. Router is responsible for connecting all the networks in the WAN and also responsible for controlling traffic between different networks.
Answer:
B) Emphazizing certain points by using color.
Explanation:
I had the same question and I got it right. The answer is this because just like how Rudolph's nose and how it stands out from the others. And so if you pick only the important parts and add color then it will stand out.
Using the computer language in JAVA to write a function code that output numbers in reverse
<h3>Writting the code in JAVA:</h3>
<em>import java.util.Scanner;</em>
<em>public class LabProgram {</em>
<em> public static void main(String[] args) {</em>
<em> Scanner scnr = new Scanner(System.in);</em>
<em> int[] userList = new int[20];</em>
<em> int numElements;</em>
<em> numElements = scnr.nextInt();</em>
<em> for (int i = 0; i < numElements; ++i) {</em>
<em> userList[i] = scnr.nextInt();</em>
<em> }</em>
<em> for (int i = numElements - 1; i >= 0; --i) {</em>
<em> System.out.print(userList[i] + " ");</em>
<em> }</em>
<em> System.out.println();</em>
<em> }</em>
<em>}</em>
See more about JAVA at brainly.com/question/12975450
#SPJ1
Answer:
The answer is A. Compile error
Explanation:
In the class Fabric, fabricID has private access. You can only print out out private variables in the class or function they are assigned in.
ps: sorry if I am wrong, I am kind of new to java