Answer:
When resizing an object with the select tool, the keyboard key you should press to make it resize equally in all direction:
Explanation:
- In photoshop software, you should hold the shift key to resize the object or image so that it can be resized equally in all direction otherwise it will not resize equally.
- In a famous presentation making software, this same method is used to resize the objects and images equally.
Answer:
Option is b is correct answer. Excel performs exponentiation, then multiplication and division, then addition, and subtraction, it is correct order of operation in Excel. It is important to remember when you write any formula in Excel having different mathematical operators like +/ -/ ^/ etc, it follows a specific order and performs calculations in specific order which is termed as order of operator precedence. Each of mathematical operator has its precedence and executes in a special order set by Excel.
Explanation:
- As we already know order of precedence of each mathematical operator is different in Excel. The order of operations for Excel is as follows:
- Evaluate elements in parentheses.
- Evaluate 'ranges' ().
- Evaluate 'intersections' (empty spaces).
- Evaluate 'unions' (,).
- Perform negation (-).
- determine percentages (%).
- Perform exponentiation (^).
- Perform multiplication (*) and division (/), both are of equal precedence.
- Perform addition (+) and subtraction (-), both are of equal precedence.
- Evaluate text operators like (&).
- Perform comparisons like (=, <>, <=, >=).
Answer details
Grade: Middle
Subject: Computers and Technology
Chapter: Order of precedence of mathematical operators
Keywords: precedence in Excel, operators precedence etc
What is the question?????
Answer:
<em>The function is written in C++</em>
void calc_discount(double amount,bool member)
{
double discount;
if(member)
{
discount = amount - 0.10 * amount - 0.05 * amount;
}
else
{
discount = amount - 0.05 * amount;
}
cout<<"Discount = "<<discount;
}
Explanation:
<em>I've included the full source code (including the main method) as an attachment where I use comments as explanations</em>
Try looking at this site, <span>www.c-sharpcorner.com/article/working-with-arrays-in-C-Sharp/</span>