Answer:
AVERAGE
COUNT
SUM
MAX
Explanation:
The functions that may be used with positional arguments include:
AVERAGE
COUNT
SUM
MAX
The basic functions formulae include SUM, AVERAGE, COUNT, MAX and MIN.
SUM: This is the sum total of all the numbers in the rows.
COUNT: This is the used to count the range of cells that contains numbers.
AVERAGE: This is the average of all the numbers in the rows.
MIN: This is the lowest number in the rows.
MAX: This will return the highest number that is found in the set of values.
It should be noted that the COUNTIF is not used with positional arguments.
Answer: 50 x 8 then it would be your product lets say, p, it would be p/2
Explanation:
While you set up your new iOS device, look for the Apps & Data screen. Then tap Move Data from Android. (If you already finished setup, you need to erase your iOS device and start over. If you don't want to erase, just transfer your content manually<span>.)</span>
Answer:
The answer is "Always true
"
Explanation:
Following are the program to this question:
#include <iostream>//header file
using namespace std;
int main()//main method
{
bool x=true;//defining bool variable x and assign value
bool y=false;//defining bool variable y and assign value
if(!(x || y) || (x || y))//use given condition with if block
{
cout<<"True";//print true message
}
else//defining else block
{
cout<<"false";//print false message
}
return 0;
}
In the above code two bool variable is declared, that hold ture and false, and used in the given expression with the condition statement, that checks the given value. In the code the logical gate OR gate that always print the true value.
Answer:
i) an instruction set, ii) pseudocode
And program in python is:
LENGTH=input("ENTER THE LENGTH OF THE ROOM IN FEET")
BREATH=input("ENTER THE BREATH OF THE ROOM IN FEET")
AREA=int(LENGTH) * int(BREATH)
print("THE AREA OF THE ROOM IN SQUARE YARDS IS", AREA/9)
print("THE CARPET REQUIRED IN SQUARE FEET",AREA)
Explanation:
The pseudo code is:
START
ENTER THE LENGTH OF THE ROOM IN FEET; LENGTH
ENTER THE BREATH OF THE ROOM IN FEET; BREATH
PRINT THE AREA OF THE ROOM IN SQUARE FEET IS; AREA
PRINT THE AREA OF THE ROOM IN SQUARE YARDS IS; AREA/9
PRINT THE CARPET REQUIRED IN SQUARE FEET; AREA
STOP