The resistance is 16 ohm's
V=I x R where V is the voltage, I is the current, and R is the resistance in Ohms
120= 15 x R
R=120/15
R= 8 Ohm's
P=VxV / R
P=120v x 120v / 8 ohms
P= 14400/8
P = 1800 watts
R = V x V/P
R = 14400/900
R = 16 Ohm's
The resistance is 16 ohm's:
I = V/R
I = 120/16
I = 7.5 Amps
Answer:
SQL queries
The command used to display the customer ID and total number of orders placed is given below
Query:
SELECT CustomerID, COUNT (orderID) AS TotalOrders
FROM Order_Table
GROUP BY CustomerID
Explanation:
SQL queries
The command used to display the customer ID and total number of orders placed is given below
Query:
SELECT CustomerID, COUNT (orderID) AS TotalOrders
FROM Order_Table
GROUP BY CustomerID
SELECT - To query the database and get back the specified fields SQL uses the select statement
CustomerID is a coloumn name
The function COUNT(OrderID) returns the number of orders
Totalorderds is a label
FROM - To query the database and get back the preferred information by specifying the table name
Order_Table is a table name
GROUP BY - The clause is used to group the result of a SELECT statement done on a table where the tuple values are similar for more than one column
The table below displays the CustomerID and total number of orders placed
CustomerID Totalorders
4 28
1 6
12 5
16 5
6 3
9 3
15 3
3 1
13 1
14 1
The table below shows the total number of orders situated for each sales person
SalesPerson_ID TotalOrders
3 16
2 3
4 3
5 3
Answer:
1. A
2. B
3. C
hope this helps in some way
If you are breaking the computer down try in software it does change after a while
Answer:
Pattern Matching
Explanation:
Pattern matching in computer science is defined as the analysing & finding specific sequences of data of some pattern among raw data or a sequence of tokens.