Answer:
Convey more factual data that helps facilitate decision making - REPORTS
Reports are made with factual data to show the condition of the subject so convey more factual data that helps in decision making.
Are one page long - MEMORANDUMS
Memorandums are used to convey new information and are usually brief which means they take one or two pages.
Are written in a block style, with the body text aligned along the left margin - BUSINESS LETTERS
Business letters are to be as formal as possible and this includes writing them block style and aligning the text to the left margin.
Allow attachments of files, such as images - EMAILS
As emails are softcopy and computer based, they allow for the attachment of other files such as images, documents, audio, etc.
Any program can be an executable, and it can be named anything the user chooses, and would still function exactly the same.
PC games are often run via an executable. If you rename that executable to something else, it will still function perfectly fine.
Therefore, one character long executable programs are just executable programs that have been renamed one character long, and will function as intended.
Explanation:
6579689993 and password is 3250 I RISHAVjoin please I join yar
Answer: False
Explanation: Because fast-tracking doesn’t involve additional resources, it’s usually best to start with this technique while Crashing requires careful planning to prevent “panic mode” among the project crews and to avoid acceleration claims.
Answer:
for(i = 0 ; i < NUM_VALS; ++i)
{
cout << courseGrades[i] << " ";
}
cout << endl;
for(i = NUM_VALS-1 ; i >=0 ; --i)
{
cout << courseGrades[i] << " ";
}
cout << endl;
Explanation:
The first loop initializes i with 0, because we have to print the elements in order in which the appear in the array. We print each element, adding a space (" ") character at its end. After the loop ends, we add a new line using endl.
The second loop will print the values in a reverse order, so we initialize it from NUM_VALS-1, (since NUM_VALS = 4, and array indices are 0,1,2,3). We execute the loop till i >= 0, and we print the space character and new line in a similar way we executed in loop1.