Answer:
The formula is =D3*E3
Explanation:
To multiply the items in 2 cells, the formula like every other in excel begins with = .
to multiply 50 in cell D3 by 8.90 in cell E3 the formula to be used is
=D3*E3
This will multiply the numbers in both cell and show as 445.
Answer:
an event in a computing contex, is an action or occurence that can be identifided by a program and has significance for system hardware or software. events can be user- generated such as keystrokes and mouseclicks, or system generated, such as program loading,running out of memory and errors.
Explanation:
HOPE IT HELPS PO(◍•ᴗ•◍)❤
Answer:
import java.util.Scanner;
public class num6 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int product=0;
do{
System.out.println("Enter a number");
int num = in.nextInt();
product = num*10;
System.out.println("The product is " + product);
}while (product<100);
}
}
Explanation:
In the Java program above, The user will be prompted to enter a number.
The number is multiplied by 10 and assigned to a variable called product.
A do....while loop has been implemented to check the variable product
As long as this variable is less than 10, the user will be prompted to enter another number.
Answer:
Port number
Explanation:
Port numbers are used in the identification of a particular process for forwarding some form of network message such as the internet when it reaches a server. It is usually a 16-bit integer that is unsigned and found in header that is appended to a message unit. At the OSI transport layer, port numbers are used in searching and communicating with a specific application that is running on a host server.
Answer:
The digital transmission of medical imaging, remote medical diagnosis and evaluations, and video consultations with specialists are all examples of telemedicine.
Explanation: