The correct answer of the given question above would be second option: SOURCE DATA ENTRY. <span>Of the two basic methods of data entry, keyboards use keystrokes to enter data and instructions; the non keyboard method is called the source data entry.</span>
It seem like there are information missing on the question posted. Let me answer this question with all I know. So here is what I believe the answer is, <span>the creation model involves the creation of data and process models during the development of an application.</span>
Hope my answer would be a great help for you. If you have more questions feel free to ask here at Brainly.
Because trends can show data in relation to what career is on the rise in terms of wages, statistics show patterns that you can observe to find the career which is becoming popular and most beneficial.
The answer & explanation for this question is given in the attachment below.
Answer:
#include <stdio.h>// inclusion of header file.
int main()// definition of main function.
{
int Quotient,divisor; // declare the two numbers for operation.
scanf("%d %d",&Quotient,&divisor); // take the user inputs by scanf() function.
printf("The division result of the number = %f",Quotient/divisor);
// print statement to print the division.
return 0; // return statement.
}
Output:
- If the user input is 10 and 9 then the output is 1.
- If the user input is 4 and 2 then the output is 2.
Explanation:
- Firstly there is a file inclusion which helps to understand the input and output function
- Then we declare two variables of integer type which take a value of integer type.
- Then there is a scanf statement which takes the input from the user. The '%d' format specifies that the value is in an integer value.
- Then there is a print statement that gives the divisor in floating value. The division operation is written in the printf statement which is used to print the value. '%f' display the value in decimal value.