Answer:
<em>This program is written using c++ programming language</em>
<em>Comments are used to explain difficult lines</em>
<em>See attachment for .cpp source files</em>
<em>Program starts here</em>
#include<iostream>
using namespace std;
int main()
{
// Calculate number of ingredient that makes up 48 cookies
float num_sugar = 1.5/48;
float num_butter =1.0/48;
float num_flour = 2.75/48;
//Declare integer variable to get number of cookies from user
int n;
// Prompt user for number of cookies needed
cout<<"Enter number of cookies: ";
cin>>n;
// Calculate equivalent amount of ingredient
num_sugar *= n;
num_butter *= n;
num_flour *= n;
// Display Result
cout<<"You need "<<num_sugar<<" cups of sugar, "<<num_butter<<" cups of butter, and "<<num_flour<<" cups of flour.";
return 0;
}
//End of Program
Answer:
c) put a $ in front of the letter and number that represents the cell position.
Explanation:
Dollar sign ($) is used to lock the formula in the cell. This is called absolute reference. In this type of referencing, A dollar sign is place in front of the letter and number to lock that cell. Whenever we copy that cell, the formula will be copied in other cell without changing its reference number.
As
Example 1
C1 = A1 + B1
if we copy this formula in C2 then it becomes
C2= A2 + B2
there both reference of A and B has been changed.
Example 2
If we put $ sign as
C1= $A$1 + $B$1
now of we copy C1 and into C2
C2= $A$1 + $B$1
There reference of cell is not changed.
Answer:
Answer is "B. to apply general formatting rules".
Explanation:
The proper meaning of its initials is "HyperText Markup Language". That is why letter B is the correct answer, because general formatting rules may be applied to the use of HTML as it is used through programming in a variety of languages, such as Java or JavaScript, and more.
Hope this helped you:)