Its called an All-in-one Desktop
Answer:
I am done solving there was a synthetic error very sorry I tried to help for 30mins
Answer: Tethering
Explanation:
The wireless tethering is one of the process in which the one person sharing their phone's data, information or file to the another mobile devices over the internet by using the various types of wireless devices such as Bluetooth, Wifi and the universal serial bus cable (USB).
According to the given question, the google project consumers setting up their phones with the WIFI routers and they allow their devices such as tablets, laptops for the purpose of surfing data by using the internet connection.
Therefore, this process is known as the wireless tethering.
Answer:
- import java.util.Scanner;
- public class Main {
-
- public static void main(String[] args) {
- Scanner input = new Scanner(System.in);
- System.out.print("Enter meal total: $");
- double meal = input.nextDouble();
- double finalAmount = meal + meal *0.09;
-
- if(finalAmount * 0.15 > 8){
- finalAmount = finalAmount + 8;
- }else{
- finalAmount = finalAmount + finalAmount * 0.15;
- }
- System.out.println("Final amount: $" + finalAmount);
- }
- }
Explanation:
Firstly, create a Scanner object and print user to input total meal (Line 5-7). Next, add the 9% tax to the meal total (Line 8). Use an if statement to check if the finalAmount multiplied by the 15% of tips is bigger than 8 (Line 10), if so, only add 8 to the final amount (Line 11). If not, add 15% tips to final amount (Line 12). At last, print out the final amount (Line 15).
Answer:
D. operating system.
Explanation:
In this question, we have to find the software that interprets commands from the keyboard and mouse. For that, we have to evaluate each option.
A. hard drive.
Hard drive is the item that used to store the data. Additionally, it is a hardware. Therefore, this option is false.
B. operating disk.
This is a software but it is mainly used to facilitate the read/ write commands from/to the disk in the system. Therefore, this option is also false.
C. desktop.
This is just the main screen or home screen that used to display different icons, files etc.
Desktop is also be used as an alternative of personal computer. That is a hardware item. Nevertheless, in both the cases, this option is false.
D. operating system.
Operating system is also defined as a low-level software that aims to provide basic controlling and scheduling services. Interpretation of commands from keyboard or mouse is also and module of controlling services. Therefore, this option is true.
Hence, software that interprets commands from the keyboard and mouse is also known as the operating system.