Find and enter the correct amount. 5 9 of a $18 restaurant bill = $

Answers

Answer 1
Answer:

Answer:

Calculate a tip or gratuity and get the total amount to pay. Enter your meal or dinner cost along with the tip percentage.  If you are splitting the cost at a restaurant among several people you can divide by the number of people to get the total cost each.  Optionally round the results to dollars.

BRAINLIEST PLEASE

Tip = Cost * 0.xx

Total including Tip = Cost * 1.xx Explanation:


Related Questions

_______ allows you to add formatting such as shapes and colors to text.a. wordartb. worddesignc. wordshapesd. worddraw
Hyperlinks can only point to webpages.True or False
A personal computer uses a number of chips mounted on a circuit board calleda. microprocessor b. system board c. daughter board d. mother board
The body of the letter should state why you are writing the letter.TrueFalse
a school logo requires 5 different colours. how many BITs will be required for each pixel? (please help)

The efficiency of a screw is low because of _____. width friction length height

Answers

it friction because the screw is low on the efficiency.


friction is the correct answer


Why is it important to use the binomial nomenclature system?

Answers

Answer:

These names are important because they give room for people throughout the world to communicate unambiguously about animal species.

Explanation:

It was expidient to name animals, plants or any other living organisms in such a way to prevent any confusion which was initial problem. As a vegetable in different parts of one single country is has different names. Hence scientists concluded to use a single scientific name of Latin origin representing its features that would make anyone in any part of the world easily recognize the vegetable (any other living organism) without barrier of language or culture. This was made possible because of binomial nomenclature.

Which tools would you use to make header 1 look like header 2.

Answers

The tools that would be used to make header 1 appear and look like header 2 is the alignment tool icon and the Bold tool icon.

To understand this question, we must understand the interface of the Microsoft Excel.

What is Microsoft Excel?

Microsoft Excel is a spreadsheet that can be used for a variety of features such as:

  • Computation of Data sets and variables
  • Calculation of Business Data
  • Arrangement and Analysis of Data into Tables etc.

As a Microsoft software, Microsoft Excel can also be used to edit sheets. In the image attached, the required tool icons needed to change the header 1 into header 2 is the alignment tool icon and the Bold tool icon.

The two tools can be seen in the image as the two lower left icons.

Learn more about Microsoft Excel here:

brainly.com/question/25863198

If a student is looking for the degree symbol (°) and it is not found on the main drop-down of symbols, what should the student do next?The student should look for a shortcut to that symbol.
The student should click More Symbols.
The student should click Symbols.
The student should find the symbol on the keyboard.

Answers

Answer:

The student should click More Symbols.

Explanation:

The student is currently in the main drop-down of symbols, and yet can't find the desired symbol. The next step would be to go further and look deeper into the symbols drop-down which is done by clicking more symbols.

It is important to note that before the student want to the symbol drop-down, he/she should have already looked through the keyboard for the (°) symbol. It is only natural for troubleshooting for a problem to be progressive. The student goes further to check for (°) by clicking more symbols not going back to looking through the keyboard, looking for a shortcut to the symbol or clicking the symbol icon to bring up the main drop-down for symbols.

Therefore, the only option available is to click More Symbols.

D and A are definitely not the answer. I would say that the answer is B, the student should click More Symbols. 

What is an electronic path over which data can travel.

Answers

Im pretty sure its Bandwidth 

Given the int variables x, y, and z, write a fragment of code that assigns the smallest of x, y, and z to another int variable min. Assume that all the variables have already been declared and that x, y, and z have been assigned values.

Answers

Answer:

// here is code in C++.

#include <bits/stdc++.h>

using namespace std;

// main function

int main()

{

   // variables

   int x=5,y=2,z=9;

   int min;

   // find the smallest value and assign to min

   // if x is smallest

   if(x < y && x < z)

   // assign x to min

    min=x;

     // if y is smallest

else if(y < z)

 // assign y to min

    min=y;

// if z is smallest

else

 // assign z to min

    min=z;

// print the smallest

cout<<"smallest value is:"<<min<<endl;

return 0;

}

Explanation:

Declare and initialize variables x=5,y=2 and z=9.Then check if x is less than y and x is less than z, assign value of x to variable "min" .Else if value of y is less than value of z then smallest value is y, assign value of y to "min".Else z will be the smallest value, assign its value to "min".

Output:

smallest value is:2