answersLogoWhite

0

What is aprinter?

User Avatar

Anonymous

12y ago
Updated: 8/20/2019

a printer is an output device.

it is use to print document s calenders etc

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

How do you print the numbers in the from 1 1 1 1 2 1 1331?

buy aprinter and somepaper and then go on wordput numbers in and click print and click color and youhave your numbers


Why do we use a printer?

The reason that we use a printer is because it is a type of technology that helps us with many computer related things. For example, projects, reports, essays,etc. Aprinter is a useful source of technology that prints facts and details of the manythings that we need off of the internet or Microsoft.


Why did Charles Babbage make a computer?

The most important reason was to automate the production of mathematical tables which were used in the British navy for navigation. Human'computers' were found to be mking numerous mistakes and Babbage realised that a machine coupled to aprinter could do the repetetive job without errors. His ideas were sound but his instrument maker struggled to complete his instructions. The science museum in London has built a working machine and printer to Babbage's design.


What are the functions of a aprinter?

A printer primarily functions to produce physical copies of digital documents and images. It converts text and graphics from a computer or other devices into a tangible format, typically on paper. Printers can vary in type, including inkjet, laser, and thermal, each offering different printing technologies and qualities. Additionally, many modern printers come equipped with features like scanning, copying, and wireless connectivity for enhanced usability.


What are 3 advantages and disadvantages of using aprinter?

Well, 3D printing in plastic is mostly for prototyping use, such as testing form and function. The parts are mildly strong, and can be used for light duty, non-structural applications. For example, you can make a coat hook or a camera mount, to hold a couple pounds, but you wouldn't make an axle mount for your car. Recently I have taken the services from Iannone 3D, who provides Rapid Prototyping and a reliable FDM 3D printing service in the New Jersey area.


What is the Unix file system?

There are four types of file in unixOrdinary filesDirectory filesSpecial filesLinksOrdinary files can contain text, data, or program information. An ordinary file cannotcontain another file, or directory. An ordinary file can be a text file or a binary file. A text file containslines of printable characters where every line is terminated with a newline character. A binary file cancontain any of the ASCII characters. Most of the UNIX commands are binary filesDirectory files: Directories are containers that can hold files, and other directories. A directory isactually implemented as a file that has one line for each item contained within the directory. Each line ina directory file contains only the name of the item, and a numerical reference to the location of the item.The reference is called an i-number, and is an index to a table known as the i-list. The i-list is a completelist of all the storage space available to the file system.Special files Special files represent input/output (i/o) devices, like a tty (terminal), a disk drive, or aprinter. Because UNIX treats such devices as files, some of the commands used to access ordinary fileswill also work with device files. This allows for more efficient use of software. Special files can be eithercharacter special files, that deal with streams of characters, or block special files, that operate on largerblocks of data. Typical block sizes are 512 bytes, 1024 bytes, and 2048 bytes.Links A link is a pointer to another file. Since a directory is a list of the names and i-numbers offiles, a directory entry can be a hard link, in which the i-number points directly to another file. A hard linkto a file cannot be distinguished from the file itself. When a hard link is made, then the i-numbers of twodifferent directory file entries point to the same inode. Hence, hard links cannot span across file systems.A soft link or a symbolic link provides an indirect pointer to a file. A soft link is implemented as a directoryfile entry containing a pathname. Soft links are distinguishable from files, and can span across file systems.Soft links are not supported in all versions of UNIX.(mihir)