Answer:
answer is 8! / (4! * 4!). Which gives a value of 70.
Explanation:
we have 8 places, we’re going to pick 4 places to put the zeros, it is 8! / (4! x 4!)
Vector: A one dimensional array. A 1 inch arrow pointing at a 30° angle.
Bitmap: Image file format. An image displayed on a computer monitor.
Image file types: JPEG, GIF, PDF.
Variables: A value that can change based on information in the program. null, int, char.
Program sequencing: Running code in order, from top to bottom.
Program integration: Combining parts of software into one system.
HTML: Programming language, short for Hypertext Markup Language. You can create paragraphs with HTML.
Good web design: A website that is easy to use, pleasing to look at, and suits the brand of the website accordingly.
Answer:
Batch Processing is the processing of previously collected jobs in a single batch.
Explanation:
Some advantages would be that a data center's staff can schedule batch processing during times when the computers are otherwise idle, such as overnight, The computer operators can delay or prioritize different batches easily, and computer files containing commands, programs and data; once created, some can be run repeatedly as needed, adding convenience for the staff and helping keep processing costs low.
Some disadvantages would be that all of a batch job's input data must be ready before the computer can run it, problems with data, errors and program crashes that occur during batch jobs bring the whole process to a halt, and the inputs must be carefully checked before the job can be run again.
https://www.techwalla.com/articles/advantages-disadvantages-of-batch-processing
// Here is the required switch statement on response character
switch(response){
case 'y': // case to check if the response is y
cout<<" Your request is being processed ";
case 'n': // case to check for n
cout<<" Than you, anyway for your consideration";
case 'h': // case to check for h
cout<<"Sorry \, no help is currently available.";
default : // default case
cout<< Invalid entry: please try again.";
}