answersLogoWhite

0

How do you create an endless audio loop?

Updated: 11/10/2022
User Avatar

Josh31899

Lvl 1
13y ago

Best Answer

Program the digital audio tape to repeat until stopped by user

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you create an endless audio loop?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

When was Endless Loop created?

Endless Loop was created on 2005-12-14.


In endless loop the value of i2 k10 and the loop will terminated when value of you is greater than k and the value of k is assign to 17 after the loop and it is said to endless loop why?

"In endless loop the value of i2 k10 and the loop will terminated when value of you is greater than k and the value of k is assign to 17 after the loop and it is said to endless loop why?"


An endless cycle of creation and response in the internet is called a what?

feed back loop


In information technology what is the term for a code that is an endless loop?

on going


Which IP packet field will prevent endless loop?

Time-to-live (TTL)


An endless cycle of creation and response on the Internet is called a .?

feed back loop


Can you feel deja vu about feeling deja vu?

Yes, but it will produce an endless loop?


What is thought with meaning?

Thought must have a purpose or it becomes an endless loop. When you think, do so with purpose.


How do you beat ant mania on Webkinz?

I don't think you can beat it. It's on endless loop I think.


Can you create a gif image which will not loop?

Of course you can, loop is an option for animated gift only.


When does a microprocessor encounter the HLT instruction?

It encounters the HLT instruction when there is not an endless loop or other things that are done endlessly.


Why it is necessary to avoid infinite loop in program design?

It is not necessary to avoid infinite loops. You are perhaps confusing infinite loops with endless loops which are to be avoided at all costs. An endless loop is an infinite loop that has no reachable exit condition; the loop will iterate until we forcibly terminate the program. We use the the term infinite loop in the sense that it is impossible to measure or calculate when the exit point will be hit. the following are all examples of infinite loops in their simplest form: for (;;) { // ... } while (true) { // ... } do while (true) { // ... } endless: // ... goto endless; The conditional expressions in each of these loops can never be false thus we cannot easily determine when these loops will exit. We typically use infinite loops when there are many exit conditions to consider and it is either impractical or inefficient to evaluate all of those conditions via the controlling expression alone. We take it as read the exit conditions are contained within the body of the loop. If the body of the loop has no reachable exit condition then it becomes an endless loop. It is the programmer's responsibility to ensure that all infinite loops can exit at some point.