The relational operator used would probably be <=
Answer:
missing quotation marks around a string literal
Answer:
c) 4.4
Explanation:
You can evaluate step by step the code. You know tha your input is 4.0
Step 1 Variables definitions:
double tax;
double total;
Step 2 Ask the user for the input:
System.out.print("Enter the cost of the item");
Step 3 read de input:
total = scan.nextDouble();
Step 4 evaluate the condition ( is the input greater or equal than 3.0 ? [True])
if ( total >= 3.0)
Step 5 get done the operations inside the condition and print it:
tax = 0.10;
System.out.println(total + (total * tax));
You didn't give the options for us to choose from. But I do think I know what you are talking about. It is "Clipboard".
Answer:
1.45638
Explanation:
p please mark me as brainlest