Answer:
Dealing with traffic related issues
Explanation:
The police officer are primarily charged with the primary responsibilities of maintaining law and order in any given society.
from the police officer's perspective when I get pulled for a traffic stop it is expected that
- as a first rule is to always be polite to the officer. Greet the officer with a warm and friendly smile as this will lower his or her fears.
- Always follow instructions and give the officer your license, registration and insurance information when they ask for it.
- Treat the officer with respect and courtesy.
- Always remove your sunglasses and maintain eye contact with the officer. Most law enforcement officials view this as a sign that you are being truthful.
- Remain as inconspicuous as possible. If the officer doesn’t remember certain aspects of the incident, this can work to your advantage in court.
The additional two (2) things you need to do make traffic stop go smoothly are:
1) Ensure you maintain a high sense of dutifulness in cause of performing your responsibility,
2) Ensure you put on a user friendly welcome to the road users this help to make them feel safe and secured.
Answer:
Card style
Explanation:
Microsoft Word refers to a word processing software application or program developed by Microsoft Inc. to enable its users type, format and save text-based documents.
In Microsoft Word 2019, the users are availed with the ability to edit the word document in the following view type;
I. View Mode.
II. Print Mode.
III. Drift Layout.
Generally, end users are able to print a hard copy (physical copy) of the word document they created through the use of a printer.
In this scenario, Stacy plans to print her contacts and would like to choose an option that will print select information for each contact in a business card format. Therefore, the option she should choose is Card style.
The Card style is designed to present informations in a grid-like format or landscape arrangement.
Answer:
To do this you'll need to use malloc to assign memory to the pointers used. You'll also need to use free to unassign that memory at the end of the program using the free. Both of these are in stdlib.h.
#include <stdlib.h>
#include <stdio.h>
#define SIZE_X 3
#define SIZE_Y 4
int main(void){
int **matrix, i, j;
// allocate the memory
matrix = (int**)malloc(SIZE_X * sizeof(int*));
for(i = 0; i < SIZE_X; i++){
matrix[i] = (int *)malloc(SIZE_Y * sizeof(int));
}
// assign the values
for(i = 0; i < SIZE_X; i++){
for(j = 0; j < SIZE_Y; j++){
matrix[i][j] = SIZE_Y * i + j + 1;
}
}
// print it out
for(i = 0; i < SIZE_X; i++){
for(j = 0; j < SIZE_X; j++){
printf("%d, %d: %d\n", i, j, matrix[i][j]);
}
}
// free the memory
for(i = 0; i < SIZE_X; i++){
free(matrix[i]);
}
free(matrix);
return 0;
}
Answer:
The answer to this question is option "d".
Explanation:
In the given question option d is correct because variable-length argument is a new feature in J2SE 5.0 which stands for java 2 standard edition and 5.0 is the version name. It is the variable-length argument lists. A coder can create functions that uses a function to receive several parameter that is not specified. An argument type followed by an ellipsis(...) in the parameter list of a method means that a fixed number of arguments of that particular type is obtained by the method. and other options are not correct that can be given as:
- In option a, we do not need to use the string the variable-length argument list. That's why it is wrong.
- The option b and c are all wrong because in the last parameter the variable-length argument list is used.
That's why the answer to this question is the option "d".