answersLogoWhite

0


Best Answer

It usually catches up when you get to a commercial and you try to fast-forward through the commercial. If you don't do this, the recorded show will stay behind the live show.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: When you rewind a dvr to rewatch part of a program how does the recorded show catch up to live TV?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Did Galileo ever catch on fire?

If he did, it is not recorded.


IS Throwing an exception always causes program termination?

No Not necessarily.. You can catch an exception and then continue to execute your program as if nothing happened. If in your catch block you have code like System.exit then your program would terminate.


What is catch net?

When an exception occurs in program execution. Such as 1/0 or divide by zero exception. The program must catch the exception or the program will crash. Although handling of the exception or solution is not necessary.


Is catch-22 An AR book today?

No, "Catch-22" by Joseph Heller is not an Accelerated Reader (AR) book. AR books are part of a program that includes quizzes and reading levels for students, and "Catch-22" is not included in this program. However, it is still a widely studied and recognized novel in literature.


Where can catch the bus to sesamiplace?

There is not a place that a person can catch a bus in order to go to Sesame Street. Sesame Street is the name of a television children's program; it is not a real place that a person can catch a bus to.


What is a final catch statement?

A "final catch" or a "try catch" statement is an exception (error) handling statement that will try to run the code between the final/try and "catch". If an error has been encountered, then the computer will proceed to the catch portion of the statement to prevent the program from terminating on error.


Why use throw in java in compare try-catch?

we use throws in our program so that we dont need to write try & catch block & to avoid the exception


An error that the compiler can neither catch nor easily generate code to catch this should be a violation of the language definition not just a program bug?

be stupid be stupid


Who was the bank robber who appeared on the program deadliest catch?

Joshua Tel Warner, he was a greenhorn on the Wizard.


Can you Use a Xbox 360 controller as a midi device?

Yes, you *can*. You would need either some sort of program to catch the HID signals and re-route them as MIDI, or use a program (xpadder?) to catch the HID and re-route them as regular keyboard commands.


How do you use try and catch method in a program?

public int getValue(String value){ int i; try { i = Integer.parseInt(value) } catch (Exception e){ i = 0; } return i; }


What are the errors in object oriented program?

In Java, errors that arise during the execution of the program are more formally referred to as Exceptions. Exceptions can be handled using try catch blocks. Here is an example : try { int answer = 42 / 0 ; } catch ( ArithmeticException e ) { e.printStackTrace(); }