The answer is definitely C. 3
Answer:A)Fail-open
Explanation:After opening ,accessing any operation or function in system or communicating through a network ,results in the failure by factor of not being able to be accessed is known as fail-open.The unrestricted access can occur due to several reason like network issue, origin problem etc.
Other options in the given question are incorrect because mission critical ,default flow and fail secure are not the situations that occur when after opening, access gets restricted. Thus, the correct option is option(A).
Answer:
A test condition
Explanation:
In programming, loops (for, while and do...while) will contain these three components. Consider the for statement below in java/c++/c language
for(int i = 0; i<10; i++) there are three components in there
int i = 0 //The Initial value
i<10 //This is the test condition
i++ // An action performed to change (increment) the value of i
A while statement also has these three components and without the test condition to be checked at each iteration, the code won't compile. The loop only continous as long as the condition remains true.