Answer:
1. Identity theft
2. Safety for you and your family and personal info
3. Harrasement and bullying prevention
Some things never to share on the internet with strangers...
1. Full name
2. Birthday
3. State or city of home
4. Pictures of yourself
5. Personal info about you or your family members
6. Personal social media links and tags
Explanation:
hOPE THIS HELPS!! I think some people need a reminder of this sometimes! you didnt give any options so i hope this helps you!
Answer:
gravitational force acting on that person.
Explanation:
Answer:
It helps you understand stuff faster
Explanation:
Public key and private key - In public key encryption, a pair of keys is used (public key and private key). The public key can be made available publicly, while the private key is only known by the owner. The public key is used to encrypt the message, while the private key is used to decrypt the message.
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));
}
}