The sensor of a mouse connected to the computer or the touch pad being touched and swiped around on
Answer:
D customer relations
Explanation:
A sales process is a term that describes a set of predetermined undertakings in which a salesperson perform in order to engage and put up with prospective buyer right from the first stage which is pre-approach to a closed sale.
The sale process involves the following steps:
1. Pre-approach
2. Approaching the customer
3. Determining the needs of customers
4. Introducing the product
5. Handling questions and objections
6. Closing the sale
7. Recommendation selling
8. Encouraging and follow up.
Hence, all the steps involved in the sales process deals with CUSTOMER RELATIONS. Therefore, the right answer is option D.
The application program that saves data automatically as it is entered is the MS Access.
Answer:
The programming code can be found in the explanation part, please go through it.
Explanation:
Code:
#include<stdio.h>
#include<stdlib.h>
#include <pthread.h>
// function check whether a number
// is prime or not
int isPrime(int n)
{
// Corner case
if (n <= 1)
return 0;
// Check from 2 to n-1
for (int i = 2; i < n; i++)
if (n % i == 0)
return 0;
return 1;
}
void* printPrimes(void *vargp)
{
int *n = (int *)vargp;
int i=0;
for (i=2;i<=n;i++)
{
if (isPrime(i)) printf("%d\n", i);
}
}
// Driver Program
int main(int argc, char* argv[])
{
int n = atoi(argv[1]);
pthread_t tid;
pthread_create(&tid, NULL, printPrimes, (void *)n);
pthread_exit(NULL);
return 0;
}
Answer:
Option c is the correct answer for the above question.
Explanation:
- The vulnerability is a term that is used to state that any system has some limitation by which the system causes an error while performing the action.
- The above question states a software and asked the action which is used by the analyst to prevent the limitation. So the system will use the input validation.
- It is because this prevents the error. it is because this will help to proceed with the wrong or invalid information on the database and the database or system can not hold the wrong data.
- Hence option c is the correct answer while the other option is not correct because other options can not able to fix the limitation of the above system.