answersLogoWhite

0


Best Answer

mp3 is used to create a podcast

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What file is usually used to create a podcast?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a file extension How many letters does it have?

File extensions tell the computer what kind of program was used to create it, and are usually three letters. Common file extensions are .txt .doc .wps


What file is used to create TCG?

no


What is the use of a file?

A file is used to shave things down and create a smooth surface.


What is the use of file?

A file is used to shave things down and create a smooth surface.


What utility is used to create and edited XF86Config file?

Any text editor can be used to edit the configuration file.


What is a file command used to create or start a new file?

The 'touch' command creates a new empty file in Unix.


What is the feature used to create an uncompressed copy of a file?

BY create an uncompressed copy of a file I asume you mean make a copy of the compressed file and have the copy be uncompressed. all you need to do is unzip it.


How big is a standard video file?

The size of a Standard video file depends on the size of the media used to create it.


What is an archive file?

It usually means to compress it or it is a dead file which is not used for a long time


What type of file does the Windows 2000 setup manager wizard create and what is this file used for?

stop trying to cheat on your labs.


What is the .opt file extension?

The .opt file extension is used by innumerable programs. it is usually an option / configuration file, but is also used for certain document types.


What are the constructors are used to create an object of the file class?

There are three constructors that can be used to create a File class.public File(String path). 'path' is basically the full pathname to the file in your current directory.public File(String path, String name). You can also separate the path and filename. 'name' would represent the filename and 'path' would represent the name of the directory.public File(File directory, String name). This is somehow similar to the previous way; however, directory is a File object rather than a String object.To create a new File object:File newFile = new File("something");