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));
}
}
Computer virus, a software program that is designed to cause damage to the computer system or perform some other
malicious act
Explanation:
for content filtering, I urge u use DNS
Answer: Computer commonly consists of HARDWARE and SOFTWARE. HARDWARE are the physical parts of the computer like keyboard, mouse, hard disk, processor, ram and Rom etc. SOFTWARE is the set of instructions that tells the computer what to do, For example Windows operating system, MS Word, MS Excel, Norton Anti virus all are software.
Explanation: plz add me as Brainiest