计算机基础知识 一 Basic knowledge of computers One
计算机硬件由CPU(Central Processing Unit)、存储器、输入设备、输出设备组成。
CPU通常由控制单元(控制器)和算数逻辑单元(运算器)组成。


运算器:负责进行算数运算和逻辑运算。组成运算器的部件有寄存器、控制电和执行部件等。
控制器:负责从内存中取回命令、分析指令并控制其他部件共同完成指令的执行。
存储器:存储程序(程序由若干指令组成)和数据。
分类:
内存:有一个个基本电路组成,每一个基本电路都可以存储一位二进制数
一个基本电路成为一个位(Bit)
8个位合并组成一组,每一组成为一个字节(byte),也成为一个存储单元。
内存中的每一个字节都有一个唯一的编号,该编号称为内存地址。
内存特点:
(1)一个内存单元永远不能为空,总是有内容(总是代表8个二进制数),但其内容不一定有意义。
(2)内存的存取速度比外存快得多。
(3)内存中存储的信息靠电维持,一旦掉电则信息丢失(电容自动放电)。内存需要额外的电路每隔一段时间间隔进行一次刷新操作。所谓刷新,就是对电量超过1⁄2容量的电容进行充电,
对少于1/2容量的电容进行放电。
(4)内存可以直接和CPU进行信息交换,即CPU可以直接读写内存。
外存:外存包括硬盘、U盘、光盘和软盘。
外存特点:
(1)外存靠机械部件驱动,故存取速度慢。
(2)外存上的信息不容易丢失,不需要一直通电维持。
(3)外存上的信息不能直接被CPU处理,必须先装入内存,才能被CPU读取,反之,CPU若要向外存写数据,也必须经过内存。
存储器的特性:
1.存储器中存的信息,不管读多少次,该信息不会丢失,可反复读取。
2.如果存储单元已经存了一个数据,又向其中存了一个新数据,则新数据把旧数据覆盖。
输入设备:用来输入程序或输入数据的设备。
如:键盘、鼠标、扫描仪、照相机和摄像头。
输出设备:输出程序的运行结果。
如:显示器、打印机、绘图仪和照相机。
The computer hardware is composed of a CPU (Central Processing Unit), a memory, an input device, and an output device.
The CPU usually consists of a control unit (controller) and an arithmetic logic unit (operator).
Operator: responsible for arithmetic and logic operations. The components that make up the operator are registers, control power, and execution components.
Controller: Responsible for retrieving commands from memory, analyzing instructions, and controlling other components to complete the execution of instructions.
Memory: Stores programs (programs consist of several instructions) and data.
classification:
Memory: There are one basic circuit components, each basic circuit can store one binary number
A basic circuit becomes a bit (Bit)
The eight bits are combined into one group, each of which is one byte (byte) and also becomes a storage unit.
Each byte in memory has a unique number, which is called a memory address.
Memory features:
(1) A memory unit can never be empty, always has content (always representing 8 binary numbers), but its content does not necessarily make sense.
(2) Memory access speed is much faster than external storage.
(3) The information stored in the memory is maintained by electricity. Once the power is lost, the information is lost (the capacitor is automatically discharged).
The memory requires additional circuitry to perform a refresh operation at intervals. The so-called refresh is to charge the capacitor with more than 1⁄2 capacity.
Discharge capacitors with less than 1/2 capacity.
(4) The memory can directly exchange information with the CPU, that is, the CPU can directly read and write the memory.
External storage: External storage includes hard disks, USB flash drives, optical disks and floppy disks.
External storage features:
(1) The external memory is driven by mechanical components, so the access speed is slow.
(2) The information on the external storage is not easy to lose, and it does not need to be powered on all the time.
(3) The information on the external memory cannot be directly processed by the CPU. It must be loaded into the memory before it can be read by the CPU. Conversely, if the CPU wants to write data out, it must pass through the memory.
Memory characteristics:
1. The information stored in the memory, no matter how many times it is read, the information will not be lost and can be read repeatedly.
2. If the storage unit already has a data and a new data is stored in it, the new data overwrites the old data.
Input device: A device used to enter a program or enter data.
Such as: keyboard, mouse, scanner, camera and camera.
Output device: The result of the output program.
Such as: monitors, printers, plotters and cameras.
计算机基础知识 一 Basic knowledge of computers One的更多相关文章
- Python基础知识(Basic knowledge)
Python基础知识(Basic knowledge) 1.认识Python&基础环境搭建 2.Python基础(上) 3.Python基础(中) 4.Python基础(下) 5.Python ...
- day01<计算机基础知识&Java语言基础>
计算机基础知识(计算机概述) 计算机基础知识(软件开发和计算机语言概述) 计算机基础知识(人机交互) 计算机基础知识(键盘功能键和快捷键) 计算机基础知识(如何打开DOS控制台) 计算机基础知识(常见 ...
- 计算机基础知识和tcp详解
计算机基础知识 作为应用软件开发程序员是写应用软件的,而应用软件必须应用在操作系统之上,调用操作系统接口,由操作系统控制硬件 比如客户端软件想要基于网络发送一条消息给服务端软件,流程是: 1.客户端软 ...
- Python进阶----计算机基础知识(操作系统多道技术),进程概念, 并发概念,并行概念,多进程实现
Python进阶----计算机基础知识(操作系统多道技术),进程概念, 并发概念,并行概念,多进程实现 一丶进程基础知识 什么是程序: 程序就是一堆文件 什么是进程: 进程就是一个正在 ...
- 【java基础】01 计算机基础知识
一.计算机基础知识 1. 计算机 1. 什么是计算机? 计算机在生活中的应用举例 计算机(Computer)全称:电子计算机,俗称电脑.是一种能够按照程序运行,自动.高速处理海量数据的现代化智能电子设 ...
- 《Java从入门到失业》第一章:计算机基础知识(一):二进制和十六进制
0 前言 最近7年来的高强度工作和不规律的饮食作息,压得我有些喘不过气,身体也陆续报警.2018年下半年的一场病,让我意识到了这个问题的严重性,于是开始强制自己有规律饮食和作息,并辅以健身锻炼,不到2 ...
- Java学习1——计算机基础知识
本文包含了一些计算机基础知识:计算机组成:Windows常用快捷键:DOS常用命令:计算机语言发展史.
- 《Java从入门到失业》第一章:计算机基础知识(三):程序语言简介
1.3程序语言简介 我们经常会听到一些名词:低级语言.高级语言.编译型.解释型.面向过程.面向对象等.这些到底是啥意思呢?在正式进入Java世界前,笔者也尝试简单的聊一聊这块东西. 1.3.1低级语言 ...
- 《Java从入门到失业》第一章:计算机基础知识(二):计算机组成及基本原理
1.2计算机组成及基本原理 1.2.1硬件组成 这里说的计算机主要指微型计算机,俗称电脑.一般我们见到的有台式机.笔记本等,另外智能手机.平板也算.有了一台计算机,我们就能做很多事情了,比如我在写这篇 ...
随机推荐
- 解决:Determining IP Information for eth0...问题
环境:Centos 6.2 VMWare Workstation 7.1.2 故障现象: 在虚拟机中启动Centos,在启动页面中停留在Determining IP Information ...
- Windows Server 2012 R2 创建AD域
前言 我们按照下图来创建第一个林中的第一个域.创建方法为先安装一台Windows服务器,然后将其升级为域控制器.然后创建第二台域控制器,一台成员服务器与一台加入域的Win8计算机. 环境 网络 ...
- CVE-2013-2551
目录 小白的CVE-2013-2551 分析 & 利用 0xFF 前言 0x00 环境和工具 0x01 分析POC POC 调试 0x02 利用 构造R3任意内存读写 劫持eip 利用利用 0 ...
- MySQL数据库的安装与基本操作
实验要求: 1.安装mysql源码包,并做相关的配置和优化路径,启动服务. 步骤: 1)先查询MySQL软件的安装情况,如果有建议将其卸载, 2)安装光盘自带的ncurses-devel包. 3)My ...
- 1)HDFS分布式文件系统 2)HDFS核心设计 3 )HDFS体系结构
一.HDFS简介 1.HDFS:Hadoop distributed file system 一个分布式文件系统 基于流数据模式访问和处理超大文件的需要而开发 适合应用在大规模数据集上 2. 优点 处 ...
- 题解 P1550 【[USACO08OCT]打井Watering Hole】
题面(翻译有点问题,最后一句话) 农民John 决定将水引入到他的n(1<=n<=300)个牧场.他准备通过挖若 干井,并在各块田中修筑水道来连通各块田地以供水.在第i 号田中挖一口井需要 ...
- Balanced Search Trees
平衡搜索树 前面介绍的二叉搜索树在最坏情况下的性能还是很糟糕,而且我们不能控制操作的顺序,有时根本就不是随机的,我们希望找到有更好性能保证的算法. 2-3 search trees 于是先来了解下 2 ...
- Mysql表类型(存储引擎)的比较
面试官问:你知道mysql有哪些存储引擎,区别是啥? 我:一脸闷逼,于是乎下来补一补,以作备查 1.和大多数数据库不同,MySQL 中有一个存储引擎的概念,针对不同的存储需求可以选择最优的存储引擎. ...
- css图片替换方法
图片替换主要是指将文字替换成图片的技术,即在html语句中使用文字,浏览器显示时用对应的图片显示.其意义在于便于做网站优化(SEO),因为文字才是搜索引擎寻找的主要对象. https://www.cn ...
- Tushare test
查看版本 import tushare print(tushare.__version__) 1.2.12 初步的调用方法为: import tushare as ts ts.get_hist_dat ...