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:
To passively cool the processor.
Explanation:
It carries the heat from the processor into other parts of the case.
Usually comes with the cooler.
Answer:
In the given scenario, the user may have disabled the profile on the device. That is why the help-desk would not be able to lock the device remotely through the software.
Explanation:
A device can only be located and locked via the MDM software if the profile of the software is active on the device. Else if the profile is disabled there is no more access for the software to the device.