Placing it on top then sliding the dile to close it, can you give me brainlist??
Selection is the step in algorithm that let's the computer decide which group of steps to perform.
<h3>What is Algorithm?</h3>
This can be defined as set of instructions which are used for solving a problem or accomplishing a task.
Selection happens when there are one or more options are available in which the computer decide which group of steps to perform.
Read more about Algorithm here brainly.com/question/11302120
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.
Answer:
ifstream inputFile;
inputFile.open("Friends.txt");
Explanation:
Though, the programming language is not stated, questions like this are often from C++.
The first statement defines the ifstream object using the following syntax.
ifstream [object_name]
In this case, the object name is inputFile
So, the syntax becomes
ifstream inputFile;
The next line opens a file using the following syntax.
[object_name].open("Filename")
Here, object_name is inputFile and filename is Friends.txt
So, the open statement becomes
inputFile.open("Friends.txt")