Hey! How are you? My name is Maria, 19 years old. Yesterday broke up with a guy, looking for casual sex.
Write me here and I will give you my phone number - *pofsex.com*
My nickname - Lovely
The answer is B) bill customers for the amount they purchased, but record lower purchases in the ledger and pocket the money. A fraud is one of two types of mistake in the recording process which done with a deliberate intention. The account receivable department responsible for recording sales transaction and billing the customers. Thus, the account receivable fraud can be committed in this process.
Answer:
The correct option is;
b. 1G, 2D, 3A, 4B, 5F, 6C, 7E.
Matching the correct options in PART B in alphabetical order;
1. 3A
2. 4B
3. 6C
4. 2D
5. 7E
6. 5F
7. 1G
Metcalfe's Law
Metcalfe's Law” says that a network's price is proportional to the square of the kind of nodes withinside the network. The forestall nodes can be computers, servers and without a doubt users
Answer:
Following are the program for the above question:
Explanation:
#include <stdio.h> //header file
void inputMatrix(int matrixA[3][3]) //inputmatrix function to take the inputs and display the outputs.
{
int i,j; //declare the symbols.
//loop to take the inputs.
for(i=0;i<3;i++)
for(j=0;j<3;j++)
scanf("%d",&matrixA[i][j]);
//loop to print the output
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
printf("%2d",matrixA[i][j]);
printf("\t");
}
}
int main() //main function
{
int matrixA[3][3]; //matrix declaration.
inputMatrix(matrixA); //calling function.
return 0;
}
Output:
- The above code take the 9 inputs from the user and display the output as described question format.
Code Explanation:
- There is one user-defined function that takes the double dimension array as the argument.
- Then it takes the 9 value for the double dimension array.
- Then it displays the value to the user in that format which is defined by the question.