Answer:
#include<iostream>
#include<string>
int main()
{
double weight;
double weightInPounds;
cout<<"Enter Weight of person in kilograms\n";
cin>>weight;
weightInPounds = weight * 2.2;
cout<<"Your weight in Pounds is : "<<weightInPounds<<endl;
return 0;
}
Here are my definitions of each option:
Spam = Unwanted mail, advertisements, etc
Phishing = Link to a site, usually a fake replica of a legitimate site but with added implements that can be used to spy on you (how people become victims of identity theft
Malware = Usually a malicious piece of code that can be used to slow down your computer or to get a hold of your computer for some other malicious reason
Legitimate = Means that the sender is valid, you know who its coming from, and you know that you won't get attacked by the email
So based on this, I would say that the answer is B. Phishing
The main function you will use is.... Type SUM= in all caps into a cell and then you can control click cells to add them together. You can also add PEMDAS properties to do calculations withing it.
The answer is B cause you use it to make commands
Answer:
import java.util.Scanner; public class Salesman2 {
public static void main(String[] args) { // TODO Auto-generated method stub double CommissionRate;
double TotalSales, Commission;
Scanner Read = new Scanner (System.in); System.out.println("Please enter total sales "); TotalSales=Read.nextDouble();
if (TotalSales<500)
CommissionRate=0.0;
else if (TotalSales>=500 && TotalSales <1000) CommissionRate=0.05;
else
CommissionRate=0.08;}
Commission = CommissionRate * TotalSales;
System.out.println("The Commision is: "+ Commission); }
}
}