English--Computer System
A: Hey, Bill, Can you tell what's wrong with my computer?
I can't move the mouse, I can's user the keyboard, Nothing is working right.
B: Hmm, It like your hard drive crashed.
A: That sounds bad.
B: Well ,if you don't save your work, you might lose the most recent changes you've made.but it shouldn't be too bad.
You just need to restart your computer.
================================================================================
A: Oh, no! I can't remember where I saved my file, and there are too many directories on my hard drive.
I will never find it.
B: Do you remember the name of the file?
A: I named it Term Paper.
B: Just click on the Start button at the left bottom of your screen.
Then you will see an item called Find.
Click on that and type in the name of your document.
The computer will help you find it no time!
========================================================================
A: What's the best kind of printer to buy?
B: That depends on what you want to print.
A: I guess that makes sense.
I mostly print word ducument and some Power Point files.
B: In that case,I would suggest a color bubble-jet printer.
They are usually pretty cheap and compact, but they produce sufficient graphic quality to print Power Point files.
===========================================================================
A: I've decided to buy a CD Writer.
B: What are you going to do with that?
A: I enjoy photography, and I've decided to start storing my pictures on CD-ROM.
======================================================
Software is the term used to describe the instructions that tell the hardware how to perform a task.without software instructions, the hardware doesn't know what to do.
The purpose of a computer system ,is to convert data into information.
Data is raw,unevaluated facts and figures, concepts and instructions.
This raw, material is processed into useful information.
In other words, information is the product of data processing.
This processing includes refining, summarizing categorizing,and otherwise manipulating the data into a useful form for decision making.
For example, the facts and figures contained in a stack of customer orders waiting to be entered into a computer-based order entry system are data.
after the data is entered and processed, and output report about how that data affected prduct inventory would be information.
English--Computer System的更多相关文章
- 【系统设计】论文总结之:Butler W. Lampson. Hints for computer system design
Butler W. Lampson. Hints for computer system design. ACM Operating Systems Rev. 15, 5 (Oct. 1983), p ...
- How to describe the wind sprial in computer system?
How to describe the wind sprial in computer system? 2017-02-21 刘崇军 风螺旋线 If we want get the approval ...
- What Is a Computer System?
What Is a Computer System? A combination of Five or Six Elements The term computer is used to descri ...
- get computer system mac info in javascript
get computer system mac info in javascript Q: how to using js get computer system mac information? A ...
- Stack switching mechanism in a computer system
A method and mechanism for performing an unconditional stack switch in a processor. A processor incl ...
- Hypervisor, computer system, and virtual processor scheduling method
A hypervisor calculates the total number of processor cycles (the number of processor cycles of one ...
- Access control differentiation in trusted computer system
A trusted computer system that offers Linux® compatibility and supports contemporary hardware speeds ...
- Method for performing cache coherency in a computer system
In a computing system, cache coherency is performed by selecting one of a plurality of coherency pro ...
- Computer system with dual operating modes
A system switches between non-secure and secure modes by making processes, applications, and data fo ...
- java输出各种学生成绩
class stu { public String stuno; public String name; public float math; public float english; public ...
随机推荐
- px和em,rem的区别
任意浏览器的默认字体高都是16px. px: 像素(Pixel) , 计算机屏幕上的一个点.固定大小:不方便维护: em:相对于当前对象内 (父元素) 文本的字体尺寸.如当前对行内文本的字体尺寸未被人 ...
- JPA 系列教程10-双向一对一关联表
双向一对一关联表的ddl语句 CREATE TABLE `t_person` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(255 ...
- navicat查询sqlserver数据库编码
首先:查看SQLserver编码格式的SQL语句为: go SELECT COLLATIONPROPERTY('Chinese_PRC_Stroke_CI_AI_KS_WS', 'CodePage' ...
- Zend Studio配合Xdebug调试
以下配置均在windows环境下. 1.下载xdebug 使用phpinfo()查看当前php的版本信息: 到xdebug下载页面下载对应的xdebug版本: 将解压出的php_xdebug-2. ...
- JPA使用的HelloWorld
一.使用JPA持久化对象的步骤 •创建 persistence.xml, 在这个文件中配置持久化单元 –需要指定跟哪个数据库进行交互; –需要指定 JPA 使用哪个持久化的框架以及配置该框架的基本属性 ...
- find排除目录
在linux find 进行查找的时候,有时候需要忽略某些目录不查找,可以使用 -prune 参数来进行过滤,但必须要注意要忽略的路径参数必须紧跟着搜索的路径之后,否则该参数无法起作用. 命令语法: ...
- C# Memcached缓存
net/c#分布式缓存系统Memcached简介与实践--非常好 缘起: 在数据驱动的web开发中,经常要重复从数据库中取出相同的数据,这种重复极大的增加了数据库负载.缓存是解决这个问题的好办法.但是 ...
- LeetCode OJ 223.Rectangle Area
Find the total area covered by two rectilinear rectangles in a 2D plane. Each rectangle is defined b ...
- AOP与动态代理有什么联系
曾遇到“AOP与动态代理有什么联系”的问题,现把个人观点整理如下: 我觉得,动态代理是AOP的主要实现手段之一,AOP是动态代理的一种应用深化 AOP是一种思想,或者是方法论,类似OOP,是OOP的有 ...
- 二维 ST POJ 2019
题目大意:给你一个n*n的矩阵,每次给你一个点(x,y),以其为左上角,宽度为b的矩阵中最小的数值和最大数值的差是多少? 一共k个询问. 思路:简单的二维st. 定义dp(i,j,k,L)表示以(i ...