answersLogoWhite

0

No. There are other methods such as a panic bar.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is the exit point of neurons from the retina of the eyeball has no rods or cones What is this exit point called?

The blind spot


Who can used to exit from a loop?

If you meant 'what can be used' then it is statement break.


What statement is used to exit aloop?

break;


What is break in c?

The break statement is used to exit a loop or switch-case.


What is the exit that is the halfway point from New Orleans and Baton Rouge?

The closest exit to Garyville is Exit 194 (Rte. 641)


What are the differences between Break Continue and Exit?

break - The break statement is used to jump out of loop. After the break statement control passes to the immediate statement after the loop.continue - Using continue we can go to the next iteration in loop.exit - it is used to exit the execution of program.note: break and continue are statements, exit is function.


What command is used to exit from the middle of a loop in Scilab?

As in most languages, a break statement is used to exit the nearest enclosing scope, including loops:// Scilab example:// Loop 5 times with a 50% chance of early termination on each iterationfor i=1:5disp (i)if rand (1,1)>0.5 thenbreakendend// break jumps to this point


When a bullet penetrates glass it leaves a crater shaped hole that?

is wider on the exit side due to the impact and force of the bullet. This is because the glass fractures and breaks away as the bullet passes through, resulting in a larger hole on the side where the glass breaks.


How do you exit in nested loop in java?

You may exit a nested loop in Java using a break with a label for the outer loop.


If you break down and have to exit the vehicle exit away from traffic and move off the road in the direction of traffic?

oncoming traffic


How do you measure for a circular barbell nipple piercing?

From entry point to exit point.


How can you use the "break" statement in Java to prematurely exit a "for" loop?

In Java, you can use the "break" statement within a "for" loop to exit the loop prematurely. When the "break" statement is encountered, the loop will immediately stop executing and the program will continue with the code after the loop.