Answer:
A
Explanation:
Monitor, CPU, Disk Drives, Printer, Keyboard/mouse
Answer:
b
Explanation:
if you look at the end of the code it brings c back but for it to do that it has to make a newline.
Answer:
Hence the code is given as follows,
import java.util.Scanner;
public class LabProgram {
public static String createAcronym(String userPhrase){
String result = "";
String splits[] = userPhrase.split(" ");
for(int i = 0;i<splits.length;i++){
if(splits[i].charAt(0)>='A' && splits[i].charAt(0)<='Z')
result += splits[i].charAt(0);
}
return result;
}
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
String s = scan.nextLine();
System.out.println(createAcronym(s));
}
}
Answer:
The answer is D Check workstations on Lan for APIPA configuration.
Explanation:
1)
While investing an email issue, a support technician discovers no user can access their email accounts on the company’s email server connected to the private LAN.
Pinging the email server form several workstations on the LAN results in 0% packet loss.
Check workstations on Lan for APIPA configuration next step the technician should take in troubleshooting the issue.
<span>If I wanted to share files only within my organization and limit my employees from sharing information with external people, what type of network should I set up in my office?
Extranet<====
Internet
Peer-to-Point
Intranet
hopes this helps
</span>