What the hell is the point of this, just to waist people's time?
The
data recovery labData recovery can be done in special rooms called data
recovery labs. Data that has been salvaged, lost, or inaccessible from
removable media or secondary storage can be accessed in a normal way. Recovery
of this kind may be required due to the physical damage caused.
industrial property rights include
brand
design
exclusive rights like
patents
Answer:
import java.util.Scanner;
public class num1 {
public static void main(String[] args) {
System.out.println("Age Greater than 18?");
System.out.println("Y = \"Yes\"\t N = \"No\"");
Scanner in = new Scanner(System.in);
char response = in.next().charAt(0);
switch(response) {
case 'Y':
case 'y':
System.out.println("You can Visit this Website");
break;
case 'N':
case 'n':
System.out.println("You are to young to visit this website");
break;
default:
System.out.println("You response is not valid");
}
}
}
Explanation:
- Using Java programming language
- create a list of options for users to input "yes" or "no"
- Using the imported scanner class, prompt, receive and store the user's response in a char variable.
- Use the switch statement in an expression to test user input and print appropriate message.
- If there is no match print the default message