answersLogoWhite

0

What is a hearing loop used for?

Updated: 10/18/2022
User Avatar

Wiki User

10y ago

Best Answer

The hearing loop is a system used for people with hearing aids, it is a special sound system. The hearing loop system supplies a wireless signal which is picked up in the hearing aid when on the setting 'T' (Telecoil).

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a hearing loop used for?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why is a hearing loop needed to be used?

Hearing loops are a aid for the hard of hearing. Where possible it is required by law. In the UK, the Equality Act 2010, means that they are available in all public Places, ATM machines and many more places.


Can Demerol be used with a loop diuretic?

Yes, Demerol can be used with a loop diuretic


Which loop is used when two things are done at the same time?

A loop inside a loop, which is known as a nested loop.


What statement is used to skip a part of loop?

The continue statement is used to skip the balance of a loop.


What are control structures used in javascript?

The control structures used in java script are if-statement, for-loop, for-in loop, while loop,do-while loop, switch-statement, with-statement. try-catch-finally statements.


What is the significance of test condition in a loop?

The test condition in a loop is what's used to determine when the loop should end.


What kind of loop is used to perform the loop until a special value is entered?

while


What is loop used for woman to avoid pregnancy?

"Loop?" It's called the vaginal ring.


What are break and continue statement in c language?

Break is used to exit the closest loop. Continue will cause the program to go to the beginning of the loop. for(int x=0;x<10;x++) { //continue; for(int y=0;y<10;y++) { break; } } The break statement causes the inner loop to stop at the first iteration. If the continue statement was uncommented, the inner loop would never be executed because the program would jump back to the beginning(until x = 10 of course).


What does a for next loop do?

A for loop is typically used to implement a counted loop: for x=0 to 100 step 1 print x next x


What are the index variable in the for loop?

The for loop uses a counter or an index variable to loop through the statements. This variable is used through the loop, changed and finally compared with the loop condition for consideration of the loop's next cycle. The variable(s) used inside the for loop for comparison (with the mentioned condition) and increment/decrement is know as the index variable. for example (Java) : for(int i=1; i<5; i++){ ... } in this example, integer 'i' is the index variable.


Who can used to exit from a loop?

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