Answer:
1,2,3 and 4..............
Answer: Depends on the power of the computer /computers and the UPS
Explanation: For someone who had a big connected network of computers and printers we would plug the computer or server into the UPS as well as the monitor and sometimes a printer sometimes the monitor was plugged into the wall
When you get a UPS you must plug it in for a certain time could be hours or even a day. A USP has a big battery in it and you must charge it (sometimes it comes semi-charged but you must plug it in to strengthen it. )
there are two connector wires that you affix to the battery and you must put a lot of strength into it to make it secure.
So in closing, you can get away with two like a desktop and a laptop.
Read your documentation that comes with the UPS
Answer:
SELECT
COUNT(SN), SUM(TaxAmount)
FROM ORDERS
or
SELECT
COUNT(SN) AS NumOrder, SUM(TaxAmount) As TotalTax
FROM ORDERS
Explanation:
Finding it difficult to add my explanation. So, I used an attachment instead
<em />
A type of situation in which it would make sense to use edge computing is: b. where critical decisions must be made on a split-second basis.
<h3>What is edge computing?</h3>
Edge computing can be defined as a distributed computing system that involves the deployment of computing and storage resources closer to the sources of data, so as to save time and enhance the decision-making process.
This ultimately implies that, a type of situation in which it would make sense to use edge computing is a scenario where critical decisions must be made on a split-second basis.
Read more on edge computing here: brainly.com/question/23858023
#SPJ1
<u>Complete Question:</u>
In which type of situation would it make sense to use edge computing?
a. where data is uploaded to a server at a scheduled time each week
b. where critical decisions must be made on a split-second basis
c. where users are in close proximity to the central data server
d. where there are few or no digital devices to capture
e. i don't know this yet
The program accepts a whole number as input, multiplies that number by 12, and then outputs the product
Explanation:
This program asks user to enter two integer numbers and displays the product.
The scanner class is used as input functions.
The code is shown below :
import java.util.Scanner;
public class Demo {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.print("Enter number: ");
int num1 = scan.nextInt();
scan.close();
int product = num1*12;
System.out.println("Output: "+product);
}
}