Answer: databases, electronic archives, online libraries, spreadsheets (B,C,E,F)
Explanation: I just took the test :)) hope u have a great day and remeber u are beautiful <3
Embedded.
<span>
Real-time is for thing like your thermostat (Nest) etc.
Distributed is for huge number crunching supercomputers.
Multi-user would mean more than one person was using the device at the same time with a different device.</span>
She can use a flashdrive to store it, or she can go to her documents folder and store it. When she gets on the computer later, she can then continue working on the project.
The answer is B: Annotating with the pen or highlighter
When you annotate a word or a phrase in PowerPoint, you put emphasis on that word or phrase during a presentation. If something is not clear, you can always jump back to that previous point in your presentation. To annotate a phrase on your slide, right click on your slide and choose pointer options. You can either choose to use a “Pen” or a “Highlighter”
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