Technology allows for easy accessibility, communication and information technology could connect student and faculty computers and servers.
<h3>What is computer networking?</h3>
It is the ability of computers to communicate with one another. It makes use of a communication technology that would allow different computers to be connected to each other.
Technologies that will be used include,
The different types of networking systems that can be used for communication and information include,
Local Area Network (LAN): It is a computer network that can be used in a small confined area such as a school, laboratory, office, or group of buildings.
Thererfore, technologies you would use to connect student and faculty computers, servers, multiple buildings include communication and information technology.
Learn more on technology here,
brainly.com/question/23418761
Answer:
2 MBPS.
Explanation:
The Bluetooth 5 raises the data transmission of information throughput from 1 Mbps to the 2 Mbps. The main advantage of Bluetooth 5 do not increasing the energy utilization.The Bluetooth 5 increasing the volume of information that technologies can be distribute.
- The main advantage of Bluetooth 5 decreases the time it would take to send and receive the signals,
- The previous version of Bluetooth transmit the information from one device to the another with the 1 Mbps speed .
I've attached my Java implementation.
<span class="sg-text sg-text--link sg-text--bold sg-text--link-disabled sg-text--blue-dark">
java
</span>
<span class="sg-text sg-text--link sg-text--bold sg-text--link-disabled sg-text--blue-dark">
java
</span>
Int j;
j="name"[4];
// you could do
j=0; // since name has four letters the fifth character is the terminating 0
now if the string name is name
you could do
j=name[4]; // or even 4[name]
Answer:
import java.util.Scanner;
public class num2 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int count =0;
int total = 0;
System.out.println("Enter the numbers");
int num = in.nextInt();
while(num!=-1){
total = total+num;
count++;
System.out.println("Enter the next number");
num = in.nextInt();
}
//Compute the average
double average = (double) total/count;
//Outputs
System.out.println("Total count of numbers entered "+(count));
System.out.println("Sum of the numbers "+total);
System.out.printf("Average is %.2f ",average);
}
}
Explanation:
- Using java programming language
- Import scanner class to receive user input
- declare variables count and total and initialize to zero
- Prompt user to enter numbers
- Use a while statement with the condition while(num!=-1)
- Within the while body keep prompting user to enter a number, increase count and update total
- when -1 is entered the loop breaks and average is calculated
- Use printf() method to print average to 2 decimal places.