計算機組成原理html
計算機的基本組成:git
組成的聯繫:express
圖二編程
馮·諾依曼機制:windows
計算機系統的體系結構:數組
圖二:
網絡
定義:鏈接計算機各部件之間或各計算機直接的一束公共信息線,它是計算機中傳送信息代碼的公共途徑app
總線(Bus)是指計算機組件間規範化的交換數據(data)的方式,即以一種通用的方式爲各組件提供數據傳送和控制邏輯。從另外一個角度來看,若是說主板(Mother Board)是一座城市,那麼總線就像是城市裏的公共汽車(bus),能按照固定行車路線,傳輸來回不停運做的比特(bit)。這些線路在同一時間內都僅能負責傳輸一個比特。所以,必須同時採用多條線路才能發送更多數據,而總線可同時傳輸的數據數就稱爲寬度(width),以比特爲單位,總線寬度愈大,傳輸性能就愈佳。總線的帶寬(即單位時間內能夠傳輸的總數據數)爲:總線帶寬 = 頻率x寬度(Bytes/sec)。less
特色:dom
分類:
總線標準依據: 物理尺寸,引線數組,信號含義,功能和時序,工做頻率,總線協議
The bit is a basic unit of information(信息的基本單元) in computing and digital communications. A bit can have only one of two values(只有兩種狀態), and may therefore be physically implemented with a two-state device. These values are most commonly represented as either a 0or1. The term bitis a portmanteau of binary digit.
字節(英語:Byte),一般用做計算機信息計量單位,不分數據類型。一個字節表明八個比特(英語:Bit)。它也是程序設計語言裏不可缺乏的基本數據類型——整數。
In computing, a device driver (commonly referred to as a driver) is a computer program(電腦程序) that operates or controls(操做或控制) a particular type of device that is attached to a computer. A driver provides a software interface(提供了接口) to hardware devices, enabling operating systems and other computer programs to access hardware functions without needing to know(沒必要知道) precise details of the hardware being used.
What is the Difference Between JPG, GIF, PNG, BMP Image Formats?
JPEG/JPG:
JPEG is a commonly used method of lossy compression(有損壓縮) for digital images, particularly for those images produced by digital photography. The degree of compression can be adjusted, allowing a selectable tradeoff between storage size and image quality. JPEG typically achieves 10:1 compression with little perceptible loss(人眼可覺察到的損失) in image quality.
The term "JPEG" is an acronym(縮寫) for the Joint Photographic Experts Group, which created the standard.
JPEG/JFIF supports a maximum image size of 65,535×65,535 pixels. JPG supports 16.7 million colors and is the preferred format for photographs.
JPG and JPEG stand both for an image format proposed and supported by the Joint Photographic Experts Group. The two terms have the same meaning and are interchangeable.(二者實質同樣,主要是爲了兼容windows以前的版本)
GIF:
The Graphics Interchange Format is a bitmap image format(位圖格式).
If an image has large areas with flat or single tones colors, then GIF is the format of choice. Think logos, icons, banners, and cartoons which are all preferably GIF images. The GIF format supports 256 colors (i.e. an 8-bit color palette). As they use only 256 colors(顏色少), they make for compact images and consume less bandwidth.
GIF images are compressed using the Lempel–Ziv–Welch (LZW) lossless data compression(無損壓縮) technique to reduce the file size without degrading the visual quality.
支持動圖
PNG:
Portable Network Graphics is a raster graphics file format that supports lossless data compression(無損壓縮). PNG was created as an improved, non-patented replacement(替代) for Graphics Interchange Format (GIF), and is the most used lossless image compression format on the Internet
Like GIF, the PNG format supports 8-bit color but also extends it to 24-bits, thus giving you more color ranges to work with like in a JPEG file. PNG files do not support animation. PNG files are also lossless files retaining color information when they are compressed. Richer images will lead to larger file sizes.
ROM
Read-only memory (ROM只讀內存存儲器) is a type of non-volatile memory used in computers and other electronic devices. Data stored in ROM can only be modified slowly, with difficulty, or not at all, so it is mainly used to store firmware(software that is closely tied to specific hardware and unlikely to need frequent updates) or application software in plug-in cartridges.
RAM(隨機存取存儲器)
Random-access memory (RAM) is a form of computer data storage. A random-access memory device allows data items to be accessed (read or written) in almost the same amount of time irrespective of the physical location of data inside the memory.
What is the difference between ROM and RAM?
There is one major difference between a ROM and a RAM chip. A ROM chip is non-volatile storage and does not require a constant source of power(不須要持續的電源) to retain information stored on it. When power is lost or turned off, a ROM chip will keep the information stored on it. In contrast, a RAM chip is volatile and requires a constant source of power to retain information. When power is lost or turned off, a RAM chip will lose the information stored on it.
Other differences between a ROM and a RAM chip include:
A programming language is a formal computer language or constructed language designed to communicate instructions to a machine, particularly a computer. Programming languages can be used to create programs to control the behavior of a machine or to express algorithms.
ASCII abbreviated from American Standard Code for Information Interchange, is a character encoding standard (the Internet Assigned Numbers Authority (IANA) prefers the name US-ASCII[2]). ASCII codes represent text in computers, telecommunications equipment, and other devices. Most modern character-encoding schemes are based on ASCII, although they support many additional characters.
UTF-8 is a character encoding capable of encoding all possible characters, or code points, defined by Unicode and originally designed by Ken Thompson and Rob Pike.
The encoding is variable-length and uses 8-bit code units. It was designed for backward compatibility with ASCII and to avoid the complications of endiannessand byte order marks in the alternative UTF-16 and UTF-32 encodings. The name is derived from: Unicode (or Universal Coded Character Set) TransformationFormat – 8-bit.