Answer:
In Java:
import java.util.*;
public class Main{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
String name;
System.out.print("First name: ");
name = input.next();
name= name.substring(0, 1).toUpperCase() + name.substring(1).toLowerCase();
System.out.print(name);
}
}
Explanation:
This declares name as string
String name;
This prompts the user for first name
System.out.print("First name: ");
This gets the name from the user
name = input.next();
This capitalizes the first letter of name and makes the other letters to be in lowercase
name= name.substring(0, 1).toUpperCase() + name.substring(1).toLowerCase();
This prints the formatted name
System.out.print(name);
Answer: True
Explanation: Because anyone can post something and it can be non reliable
They may invade privacy rights of air space and be used for other unintended acts such a bombings and espionage
Answer:
:)
Explanation:
Copyright Designs and Patents Act
The Copyright Designs and Patents Act (1988) gives creators of digital media the rights to control how their work is used and distributed. ...
Anything which you design or code is automatically copyrighted and may not be copied without your permission, as the digital creator.