編譯用戶程序英語單詞
㈠ 編譯程序是什麼意思編譯是什麼意思
編譯程序(Compiler,compiling program)也稱為編譯器,是指把用高級程序設計語言書寫的源程序,翻譯成等價的機器語言格式目標程序的翻譯程序。
解釋程序是一種語言處理程序,在詞法、語法和語義分析方面與編譯程序的工作原理基本相同,但在運行用戶程序時,它直接執行源程序或源程序的內部形式(中間代碼)。
(1)編譯用戶程序英語單詞擴展閱讀:
結構:
編譯過程分為分析和綜合兩個部分,並進一步劃分為詞法分析、語法分析、語義分析、代碼優化、存儲分配和代碼生成等六個相繼的邏輯步驟。這六個步驟只表示編譯程序各部分之間的邏輯聯系,而不是時間關系。
編譯過程既可以按照這六個邏輯步驟順序地執行,也可以按照平行互鎖方式去執行。在確定編譯程序的具體結構時,常常分若干遍實現。對於源程序或中間語言程序,從頭到尾掃視一次並實現所規定的工作稱作一遍。每一遍可以完成一個或相連幾個邏輯步驟的工作。
可以把詞法分析作為第一遍;語法分析和語義分析作為第二遍;代碼優化和存儲分配作為第三遍;代碼生成作為第四遍。反之,為了適應較小的存儲空間或提高目標程序質量,也可以把一個邏輯步驟的工作分為幾遍去執行。
㈡ 什麼是編譯程序
編譯程序指將某一種程序設計語言寫的程序翻譯成等價的另一種語言的程序的程序, 稱之為編譯程序
編譯程序也稱為編譯器,是指把用高級程序設計語言書寫的源程序,翻譯成等價的機器語言格式目標程序的翻譯程序。編譯程序屬於採用生成性實現途徑實現的翻譯程序。
它以高級程序設計語言書寫的源程序作為輸入,而以匯編語言或機器語言表示的目標程序作為輸出。編譯出的目標程序通常還要經歷運行階段,以便在運行程序的支持下運行,加工初始數據,算出所需的計算結果。
編譯程序的實現演算法較為復雜,這是因為它所翻譯的語句與目標語言的指令不是一一對應關系,而是一多對應關系,同時也因為它要處理遞歸調用、動態存儲分配、多種數據類型,以及語句間的緊密依賴關系。
由於高級程序設計語言書寫的程序具有易讀、易移植和表達能力強等特點,編譯程序廣泛地用於翻譯規模較大、復雜性較高、且需要高效運行的高級語言書寫的源程序。
(2)編譯用戶程序英語單詞擴展閱讀:
編譯流程分為了四個步驟:
1.預處理,生成預編譯文件(.文件)
2.編譯,生成匯編代碼(.s文件)
3.匯編,生成目標文件(.o文件)
4.鏈接,生成可執行文件
㈢ 用C語言編寫一個程序,用戶輸入一個兩位數,然後顯示該數的英文單詞
#include<stdio.h>
main()
{
char words[3][10][10]={{"","eleven","twelve","thirteen","fourteen","fifteen","sixteen","seventeen","eighteen","nineteen"}
,{"","","twenty","thirty","forty","fifty","sixty","seventy","eighty","ninety"}
,{"","one","two","three","four","five","six","seven","eight","nine"}};
int num;
start:
scanf("%d",&num);
if(num>99||num<10)printf("error\n");
else
{
if(num==10)printf("ten\n");
else if(num<20)printf("%s%\n",words[0][num-10]);
else{
printf("%s",words[1][num/10]);
if(num%10!=0)printf("-%s",words[2][num%10]);
printf("\n");
}
}
goto start;
}
㈣ 編程序常用英語單詞是什麼
編程序常用英語單詞部分:
1、Compile:編繹
2、Run:運行
3、Class:類
4、Object:對象
5、System:系統
6、out:輸出
7、print:列印
8、line:行
9、variable:變數
10、type:類型
11、static:靜態的
12、array:數組
13、parameter:參數
14、method:方法
15、function:函數
16、public:公有的
17、default:默認
18、get:得到
19、private:私有的
20、import:導入
21、set:設置
22、package:包
23、access:訪問
24、protected:受保護的
25、void:無(返回類型)
26、operation:操作運算
27、member-variable:成員變數
28、member-function:成員函數
29、extends:繼承 base class:基類 parent class:父類
30、interface:介面 child class:子類 super class:超類
31、overload:重載 abstract:抽象 exception:異常
32、implements:實現 Runtime:運行時
33、derived class:派生類
34、override:重寫覆蓋
35、final:最終的不能改變的
(4)編譯用戶程序英語單詞擴展閱讀
一、編程:設計具備邏輯流動作用的一種「可控體系」【註:編程不一定是針對計算機程序而言的,針對具備邏輯計算力的體系,都可以算編程。】
二、編程是編寫程序的中文簡稱,就是讓計算機代為解決某個問題,對某個計算體系規定一定的運算方式,使計算體系按照該計算方式運行,並最終得到相應結果的過程。
三、為了使計算機能夠理解人的意圖,人類就必須將需解決的問題的思路、方法和手段通過計算機能夠理解的形式告訴計算機,使得計算機能夠根據人的指令一步一步去工作,完成某種特定的任務。這種人和計算體系之間交流的過程就是編程。
㈤ 關於C語言程序設計中所有英語大全求解!
你需要什麼英語大全,關鍵字就那麼幾個 int short long float double if else .....while for.....
還有就是些錯誤提示英文解釋。:
TURBOC編譯錯誤信息說明大全
#operator not followed by maco argument name
#運算符後沒跟宏變元名
Ambiguous operators need parentheses
不明確的運算需要用括弧括起
Ambiguous symbol ''xxx''
不明確的符號
Argument # missing name
參數#名丟失
Argument list syntax error
參數表語法錯誤
Array bounds missing
丟失數組界限符
Array size too large
數組尺寸太大
Assembler statement too long
匯編語句太長
Bad call of in-line function
內部函數非法調用
Bad character in paramenters
參數中有不適當的字元
Bad configuration file
配置文件不正確
Bad file name format in include directive
包含命令中文件名格式不正確
Bad ifdef directive synatax
編譯預處理ifdef有語法錯
Bad ifndef directive syntax
編譯預處理ifndef指令語法錯誤
Bad undef directive syntax
編譯預處理undef有語法錯
Bit field too large
位欄位太長
Call of non-function
調用未定義的函數
Call to function with no prototype
調用函數時沒有函數的說明
Cannot modify a const object
不允許修改常量對象
Case outside of switch
Case 出現在switch外
Case statement missing
Case語句漏掉
Case syntax error
Case 語法錯誤
Character constant too long
字元常量太長
Code has no effect
代碼不可述不可能執行到
Compound statement missing{
分程序漏掉"{"
Conflicting type modifiers
不明確的類型說明符
Constant expression required
要求常量表達式
Constant out of range in comparison
在比較中常量超出范圍
Conversion may lose significant digits
轉換時會丟失意義的數字
Conversion of near pointer not allowed
不允許轉換近指針
Could not find file ''xxx''
找不到XXX文件
Declaration missing ;
說明缺少";"
Declaration needs type or storage class
說明必須給出類型或存儲類
Declaration syntax error
說明中出現語法錯誤
Default outside of switch
Default 出現在switch語句之外
Define directive needs an identifier
編譯預處理指令Define需要標識符
Division by zero
用零作除數
Do statement must have while
Do-while語句中缺少while部分
DO while statement missing (
Do while語句中漏掉了符號 "("
Do while statement missing;
Do while語句中掉了分號
Duplicate Case
Case情況不唯一
Enum syntax error
枚舉類型語法錯誤
Enumeration constant syntax error
枚舉常數語法錯誤
Error directive :xxx
錯誤的編譯預處理命令
Error writing output file
寫輸出文件錯誤
Expression syntax error
表達式語法錯誤
Extra parameter in call
調用時出現多餘參數
Extra parameter in call to xxxxxx
調用xxxxxxxx函數時出現了多餘參數
File name too long
文件名太長
For statement missing )
For語名缺少")"
For statement missing(
For語句缺少"("
For statement missing;
For 語句缺少";"
Function call missing )
函數調用缺少右括弧
Fuction definition out of place
函數定義位置錯誤
Fuction should return a value
函數必需返回一個值
Goto statement missing label
Goto語句沒有標號
Hexadecimal or octal constant too large
16進制或8進制常數太大
If statement missing(
If語句缺少"("
If statement missing)
If語句缺少")"
Illegal character ''x''
非法字元x
Illegal initialization
非法的初始化
Illegal octal digit
非法的8進制數字
Illegal pointer subtraction
非法的指針相減
Illegal structure operation
非法的結構體操作
Illegal use of floating point
非法的浮點運算
Illegal use of pointer
指針使用非法
Improper use of a typedef symbol
類型定義符號使用不恰當
In-line assembly not allowed
不允許使用行間匯編
Incompatible storage class
存儲類別不相容
Incompatible type conversion
不相容的類型轉換
Incorrect commadn line argument:xxxxxx
不正確的命令行參數:xxxxxxx
Incorrect commadn file argument:xxxxxx
不正確的配置文件參數:xxxxxxx
Incorrect number format
錯誤的數據格式
Incorrect use of default
Default使用不當
Initializer syntax error
初始化語法錯誤
Invalid indirection
無效的間接運算
Invalid macro argument separator
無效的宏參數分隔符
Invalid pointer addition
指針相加無效
Irrecible expression tree
無法執行的表達式運算
Invalid use of dot
點使用錯
Lvalue required is assigned a value
需要邏輯值0或非0值
Macro argument syntax error
宏參數語法錯誤
Macro expansion too long
宏的擴展太長
Mismatched number of parameters in definition
定義中參數個數不匹配
Misplaced break
此處不應出現break語句
Misplaced continue
此處不應出現continue語句
Misplaced decimal point
此處不應出現小數點xxx''
Misplaced else
此處不應出現else
Misplaced else directive
此處不應出現編譯預處理else
Misplaced endif directive
此處不應出現編譯預處理endif
Must be addressable
必須是可以編址的
Must take address of memory location
必須存儲定位的地址
No declaration for function ''xxx''
沒有函數xxx的說明
No file name ending
無文件終止符
No file names given
未給出文件名
No stack
缺少堆棧
No type information
沒有類型信息
Non-portable pointer assignment
對不可移動的指針(地址常數)賦值
Non-portable pointer comparison
不可移動的指針(地址常數)比較
Non-portable pointer conversion
不可移動的指針(地址常數)轉換
Non-protable return type conversion
不可移植的返回類型轉換
Not a valid expression format type
不合法的表達式格式
Not an allowed type
不允許使用的類型
Numeric constant too large
數值常太大
Out of memory
內存不夠用
Parameter ''xxx'' is never used
參數xxx沒有用到
Pointer required on left side of ->
符號->的左邊必須是指針
Possible use of ''xxx'' before definition
在定義之前就使用了xxx(警告)
Possibly incorrect assignment
賦值可能不正確
Redeclaration of ''xxx''
重復定義了xxx
Redefinition of ''xxx'' is not identical
xxx的兩次定義不一致
Register allocation failure
寄存器定址失敗
Repeat count needs an lvalue
重復計數需要邏輯值
Size of structure or array not known
結構體或數組大小不確定
Statement missing ;
語句後缺少";"
Structure or union syntax error
結構體或聯合體語法錯誤
Structure size too large
結構體尺寸太大
Subscripting missing ]
下標缺少右方括弧
Superfluous & with function or array
函數或數組中有多餘的"&"
Suspicious pointer conversion
可疑的指針轉換
Switch statement missing (
switch 語句缺少"("
Switch statement missing )
switch 語句缺少")"
Symbol limit exceeded
符號超限
Too few parameters in call
函數調用參數太少
Too few parameter in call to'xxxxxx'
調用'xxxxxx'時參數太少
Too many cases
Cases太多
Too many decimal points
十進制小數點太多
Too many default cases
Default太多(switch語句中一個)
Too many exponents
階碼太多
Too many initializers
初始化太多
Too many error or warning messages
錯誤或警告信息太多
Too many storage classes in declaration
說明中存儲類太多
Too many type in declaration
說明中類型太多
Too much auto memory in function
函數用到的自動存儲太多
Too much global data defined in file
文件中全局數據太多
Two consecutive dots
兩個連續的點
Type mismatch in parameter #
參數"#"類型不匹配
Type mismatch in parameter # in call to 'XXXXXXX'
調用'XXXXXXX'時參數#類型不匹配
Type mismatch in parameter xxx
參數xxx類型不匹配
Type mismatch in parameter 'YYYYYYYY' in call to 'YYYYYYYY'
調用'YYYYYYY'時參數'XXXXXXXX'數型不匹配
Type mismatch in redeclaration of ''xxx''
xxx重定義的類型不匹配
Unable to create output file ''xxx''
無法建立輸出文件xxx
Unable to create turboc.lnk
不能創建turboc.lnk
Unable to execute command 'xxxxxxxx'
不能執行'xxxxxxxx'命令
Unable to open include file 'xxx'
無法打開被包含的文件xxx
Unable to open input file 'xxx'
無法打開輸入文件xxx
Undefined label 'xxx'
沒有定義的標號xxx
Undefined structure 'xxx'
沒有定義的結構xxx
Undefined symbol 'xxx'
沒有定義的符號xxx
Unexpected end of file in comment started on line xxx
源文件在從xxx行開始的注釋中意外結束
Unexpected end of file in conditional started on line xxx
源文件在#行開始的條件語句中意外結束
Unknown assemble instruction
未知的匯編結構
Unknown option
未知的操作
Unknown preprocessor directive: ''xxx''
不認識的預處理命令xxx
Unreachable code
無路可達的代碼
Untermimated character constant
未終結的字元常量
Unterminated string
未終結的串
Unterminated string or character constant
字元串或字元常量缺少引號
User break
用戶強行中斷了程序
Value required
賦值請求
Void functions may not return a value
Void類型的函數不應有返回值
While statement missing (
While語句漏掉 '('
While statement missing )
While語句漏掉 ')'
Wrong number of arguments in of 'xxxxxxxx'
調用'xxxxxxxx'時參數個數錯誤
'xxx' not an argument
xxx不是參數
'xxx' not part of structure
xxx不是結構體的一部分
xxx statement missing (
xxx語句缺少左括弧
xxx statement missing )
xxx語句缺少右括弧
xxx statement missing ;
xxx缺少分號
'xxx' declared but never used
說明了xxx但沒有使用
'xxx' is assigned a value which is never used
給xxx賦了值但未用過
Zero length structure
結構體的長度為零
㈥ 程序員必須懂的英語單詞詞彙
干程序員這行實在是離不開英語,需要懂的 英語單詞 有很多。下面是我整理的程序員必須懂的英語單詞,以供大家學習參考。
程序員必須懂的英語單詞
CPU(Center Processor Unit)中央處理單元
mainboard主板
RAM(random access memory)隨機存儲器(內存)
ROM(Read Only Memory)只讀存儲器
Floppy Disk軟盤
Hard Disk硬碟
CD-ROM光碟驅動器(光碟機)
monitor監視器
keyboard鍵盤
mouse滑鼠
chip晶元
CD-R光碟刻錄機
HUB集線器
Modem= MOlator-DEMolator,數據機
P-P(Plug and Play)即插即用
UPS(Uninterruptable Power Supply)不間斷電源
BIOS (Basic-input-Output System)基本輸入輸出系統
CMOS(Complementary Metal-Oxide-Semiconctor)互補金屬氧化物半導體
setup安裝
uninstall卸載
wizzard向導
OS(Operation Systrem) 操作系統
OA(Office AutoMation)辦公自動化
exit退出
edit編輯
復制
cut剪切
paste粘貼
delete刪除
select選擇
find查找
程序員常用英語單詞select all全選
replace替換
undo撤消
redo重做
program程序
license許可(證)
back前一步
next下一步
finish結束
folder文件夾
Destination Folder目的文件夾
user用戶
click點擊
double click雙擊
right click右擊
settings設置
update更新
release發布
data數據
data base資料庫
DBMS(Data Base Manege System)資料庫管理系統
view視圖
insert插入
object對象
configuration配置
command命令
document文檔
程序員必備英語單詞彙POST(power-on-self-test)電源自檢程序
cursor游標
attribute屬性
icon圖標
service pack服務補丁
option pack功能補丁
Demo演示
short cut快捷方式
exception異常
debug調試
previous前一個
column行
row列
restart重新啟動
text文本
font字體
size大小
scale比例
interface界面
function函數
access訪問
manual指南
active激活
computer language計算機語言
menu菜單
GUI(graphical user interfaces )圖形用戶界面
template模版
page setup頁面設置
password口令
code密碼
print preview列印預覽
zoom in放大
zoom out縮小
pan漫遊
cruise漫遊
full screen全屏
tool bar工具條
>>>下一頁更多“程序員必備英語單詞”㈦ 編寫一個程序,由用戶輸入一個含有5個單詞的英文句子,按照用戶的要求輸出句中
源碼:
==============CODE===============
#!usr/bin/perl
print "Please enter a sentence containing 5 words:\n";
$sentence = <STDIN>;
print "\nWhich word do you want to print?\nEnter a number from 1 to 5:\n";
$num = <STDIN>;
@words = split /\s+/, $sentence;
print "The word is:\t$words[$num-1]\n";
==============CODE===============
㈧ 電腦里常用的的英語有那些(漢語意思)
硬體類(Hardware)
軟體類(Software)
網路類(Network)
CPU(Center Processor Unit)中央處理單元
mainboard主板
RAM(random access
memory)隨機存儲器(內存)
ROM(Read Only Memory)只讀存儲器
Floppy Disk軟盤
Hard Disk硬碟
CD-ROM光碟驅動器(光碟機)
monitor監視器
keyboard鍵盤
mouse滑鼠
chip晶元
CD-R光碟刻錄機
HUB集線器
Modem= MOlator-DEMolator,數據機
P-P(Plug and Play)即插即用
UPS(Uninterruptable Power Supply)不間斷電源
BIOS(Basic-input-Output
System)基本輸入輸出系統
CMOS(Complementary Metal-Oxide-Semiconctor)互補金屬氧化物半導體
setup安裝
uninstall卸載
wizzard向導
OS(Operation Systrem)操作系統
OA(Office AutoMation)辦公自動化
exit退出
edit編輯
復制
cut剪切
paste粘貼
delete刪除
select選擇
find查找
select all全選
replace替換
undo撤消
redo重做
program程序
license許可(證)
back前一步
next下一步
finish結束
folder文件夾
Destination Folder目的文件夾
user用戶
click點擊
double click雙擊
right click右擊
settings設置
update更新
release發布
data數據
data base資料庫
DBMS(Data Base Manege
System)資料庫管理系統
view視圖
insert插入
object對象
configuration配置
command命令
document文檔
POST(power-on-self-test)電源自檢程序
cursor游標
attribute屬性
icon圖標
service pack服務補丁
option pack功能補丁
Demo演示
short cut快捷方式
exception異常
debug調試
previous前一個
column行
row列
restart重新啟動
text文本
font字體
size大小
scale比例
interface界面
function函數
access訪問
manual指南
active激活
computer language計算機語言
menu菜單
GUI(graphical user
interfaces )圖形用戶界面
template模版
page setup頁面設置
password口令
code密碼
print preview列印預覽
zoom in放大
zoom out縮小
pan漫遊
cruise漫遊
full screen全屏
tool bar工具條
status bar狀態條
ruler標尺
table表
paragraph段落
symbol符號
style風格
execute執行
graphics圖形
image圖像
Unix用於伺服器的一種操作系統
Mac OS蘋果公司開發的操作系統
OO(Object-Oriented)面向對象
virus病毒
file文件
open打開
colse關閉
new新建
save保存
exit退出
clear清除
default默認
LAN區域網
WAN廣域網
Client/Server客戶機/伺服器
ATM( Asynchronous
Transfer Mode)非同步傳輸模式
Windows NT微軟公司的網路操作系統
Internet互聯網
WWW(World Wide Web)萬維網
protocol協議
HTTP超文本傳輸協議
FTP文件傳輸協議
Browser瀏覽器
homepage主頁
Webpage網頁
website網站
URL在Internet的WWW服務程序上
用於指定信息位置的表示方法
Online在線
Email電子郵件
ICQ網上尋呼
Firewall防火牆
Gateway網關
HTML超文本標識語言
hypertext超文本
hyperlink超級鏈接
IP(Address)互聯網協議(地址)
SearchEngine搜索引擎
TCP/IP用於網路的一組通訊協議
Telnet遠程登錄
IE(Internet Explorer)探索者(微軟公司的網路瀏覽器)
Navigator引航者(網景公司的瀏覽器)
multimedia多媒體
ISO國際標准化組織
ANSI美國國家標准協會
able 能
activefile 活動文件
addwatch 添加監視點
allfiles 所有文件
allrightsreserved 所有的權力保留
altdirlst 切換目錄格式
並能夠解決更大范圍內的磁碟問題
andotherinFORMation 以及其它的信息
archivefileattribute 歸檔文件屬性
assignto 指定到
autoanswer 自動應答
autodetect 自動檢測
autoindent 自動縮進
autosave 自動存儲
availableonvolume 該盤剩餘空間
badcommand 命令錯
badcommandorfilename 命令或文件名錯
batchparameters 批處理參數
binaryfile 二進制文件
binaryfiles 二進制文件
borlandinternational borland國際公司
bottommargin 頁下空白
bydate 按日期
byextension 按擴展名
byname 按名稱
bytesfree 位元組空閑
callstack 調用棧
casesensitive 區分大小寫
要求出現確認提示,在你想覆蓋一個
centralpointsoftwareinc central point 軟體股份公司
changedirectory 更換目錄
changedrive 改變驅動器
changename 更改名稱
characterset 字元集
checkingfor 正在檢查
檢查磁碟並顯示一個狀態報告
chgdrivepath 改變盤/路徑
china 中國
chooseoneofthefollowing 從下列中選一項
clearall 全部清除
clearallbreakpoints 清除所有斷點
clearsanattribute 清除屬性
clearscommandhistory 清除命令歷史
clearscreen 清除屏幕
closeall 關閉所有文件
codegeneration 代碼生成
colorpalette 彩色調色板
commandline 命令行
commandprompt 命令提示符
compressedfile 壓縮文件
配置硬碟,以為 MS-DOS 所用
conventionalmemory 常規內存
***ceptemptyones 拷貝目錄和子目錄,空的除外
拷貝設置了歸檔屬性的文件
把文件拷貝或搬移至另一地方
把一個軟盤的內容拷貝到另一個軟盤上
diskette 復制磁碟
C拷貝M移動 O比 F搜索R改名 D刪除 V版本 E瀏覽A屬性 W寫字 P列印 L列表
rightc 版權(c
創建DOS分區或邏輯DOS驅動器
createextendeddospartition 創建擴展DOS分區
在擴展DOS分區中創建邏輯DOS驅動器
createprimarydospartition 創建DOS主分區
createsadirectory 創建一個目錄
創建,改變或刪除磁碟的卷標
currentfile 當前文件
currentfixeddiskdrive 當前硬碟驅動器
currentsettings 當前設置
currenttime 當前時間
cursorposition 游標位置
defrag 整理碎片
dele 刪去
刪除分區或邏輯DOS驅動器
刪除一個目錄和所有的子目錄及其中的所有文件
deltree 刪除樹
devicedriver 設備驅動程序
dialogbox 對話欄
directionkeys 方向鍵
directly 直接地
directorylistargument 目錄顯示變數
directoryof 目錄清單
directorystructure 目錄結構
diskaccess 磁碟存取
disk 磁碟拷貝
磁碟服務功能: C拷貝 O比較 F搜索R改卷名V校驗 瀏覽E編緝M圖 L找文件 N格式化
diskspace 磁碟空間
displayfile 顯示文件
displayoptions 顯示選項
displaypartitioninFORMation 顯示分區信息
顯示指定目錄和所有目錄下的文件
顯示指定屬性的文件
顯示或改變文件屬性
displaysorsetsthedate 顯示或設備日期
以單色而非彩色顯示安裝屏信息
顯示系統中已用和未用的內存數量
顯示磁碟上所有文件的完整路徑和名稱
顯示或改變當前目錄
doctor 醫生
doesn 不
doesntchangetheattribute 不要改變屬性
dosshell DOS 外殼
doubleclick 雙擊
你想顯示邏輯驅動器信息嗎(y/n)?
driveletter 驅動器名
editmenu 編輯選單
emsmemory ems內存
endoffile 文件尾
endofline 行尾
enterchoice 輸入選擇
entiredisk 轉換磁碟
environmentvariable 環境變數
esc esc
everyfileandsubdirectory 所有的文件和子目錄
existingdestinationfile 已存在的目錄文件時
expandedmemory 擴充內存
expandtabs 擴充標簽
explicitly 明確地
extendedmemory 擴展內存
fastest 最快的
fatfilesystem fat 文件系統
fdiskoptions fdisk選項
fileattributes 文件屬性
fileFORMat 文件格式
filefunctions 文件功能
fileselection 文件選擇
fileselectionargument 文件選擇變元
filesin 文件在
filesinsubdir 子目錄中文件
fileslisted 列出文件
filespec 文件說明
filespecification 文件標識
filesselected 選中文件
findfile 文件查尋
fixeddisk 硬碟
fixeddisksetupprogram 硬碟安裝程序
fixeserrorsonthedisk 解決磁碟錯誤
floppydisk 軟盤
FORMatdiskette 格式化磁碟
FORMatsadiskforusewithmsdos 格式化用於MS-DOS的磁碟
FORMfeed 進紙
freememory 閑置內存
fullscreen 全屏幕
functionprocere 函數過程
graphical 圖解的
graphicslibrary 圖形庫
groupdirectoriesfirst 先顯示目錄組
hangup 掛斷
harddisk 硬碟
hardwaredetection 硬體檢測
ha**een 已經
helpfile 幫助文件
helpindex 幫助索引
helpinFORMation 幫助信息
helppath 幫助路徑
helpscreen 幫助屏
helptext 幫助說明
helptopics 幫助主題
helpwindow 幫助窗口
hiddenfile 隱含文件
hiddenfileattribute 隱含文件屬性
hiddenfiles 隱含文件
howto 操作方式
ignorecase 忽略大小寫
在常規和上位內存
incorrectdos 不正確的DOS
incorrectdosversion DOS 版本不正確
indicatesabinaryfile 表示是一個二進制文件
indicatesanasciitextfile 表示是一個ascii文本文件
insertmode 插入方式
請用scandisk,不要用chkdsk
inuse 在使用
invaliddirectory 無效的目錄
is 是
kbytes 千位元組
keyboardtype 鍵盤類型
labeldisk 標注磁碟
laptop 膝上
largestexecutableprogram 最大可執行程序
largestmemoryblockavailable 最大內存塊可用
lefthanded 左手習慣
leftmargin 左邊界
linenumber 行號
linenumbers 行號
linespacing 行間距
listbyfilesinsortedorder 按指定順序顯示文件
listfile 列表文件
listof 清單
locatefile 文件定位
lookat 查看
lookup 查找
macroname 宏名字
makedirectory 創建目錄
memoryinfo 內存信息
memorymodel 內存模式
menubar 菜單條
menucommand 菜單命令
menus 菜單
messagewindow 信息窗口
microsoft 微軟
microsoftantivirus 微軟反病毒軟體
microsoftcorporation 微軟公司
mini 小的
modemsetup 數據機安裝
molename 模塊名
monitormode 監控狀態
monochromemonitor 單色監視器
moveto 移至
multi 多
newdata 新建數據
newer 更新的
newfile 新文件
newname 新名稱
newwindow 新建窗口
norton norton
nostack 棧未定義
noteusedeltreecautiously 注意:小心使用deltree
onlinehelp 聯機求助
optionally 可選擇地
or 或
pageframe 頁面
pagelength 頁長
在顯示每屏信息後暫停一下
pctools pc工具
postscript 附言
prefixmeaningnot 前綴意即"不
prefixtoreverseorder 反向顯示的前綴
presetche** 用前綴和放在短橫線-後的開關(例如/-w)預置開關
pressakeytoresume 按一鍵繼續
pressanykeyforfilefunctions 敲任意鍵執行文件功能
pressentertokeepthesamedate 敲回車以保持相同的日期
pressentertokeepthesametime 敲回車以保持相同的時間
pressesctocontinue 敲esc繼續
pressesctoexit 敲鍵退出
pressesctoexitfdisk 敲esc退出fdisk
敲esc返回fdisk選項
㈨ 誰知道一些常用的電腦詞彙的英文怎麼說
電腦英語詞彙表
access arm 磁頭臂、存取臂
access time 存取時間
adder 加法器
address 地址
alphanumeric 字母數字的
analog computer 模擬計算機
analyst 分析員
area 區域
array 數組、陣列
assembler 匯編程序
automation 自動化
band 區
batch processing 成批處理
binary code 二進制碼
binary digit 二進制位、二進制數字
bit 比特、二進制的一位
branch 分支、支線
brush 電刷
buffer storage 緩沖存儲器
calculator 計算器
call instruction 呼叫指令
card punch 卡片穿孔機
card reader 卡片閱讀機、讀卡機
cell 單元
channel 通道、信道
character 字元
check digit 校驗數位
circuit 電路、線路
to clear 清除、清零
clock 時鍾
code 代碼
to code 編碼
coder 編碼員、編碼器
command 指令、命令
compiler 編譯程序
computer language 計算機語言
console 控制台
control unit 控制部件、控制器
core storage、 core store 磁心存儲器
counter 計數器
cybernetics 控制論
cycle 循環
data 數據
data processing 數據處理
debugging 調試
decision 制定
digit 數字、數位、位
digital computer 數字計算機
disc、 disk 磁碟
display unit 顯示裝置
drum 磁鼓
to edit 編輯
electronics 電子學
emitter 發射器
to encode 編碼
to erase 擦除、清洗、抹除
feed 饋送、供給
to feed 饋送、供給
feedback 反饋
field 欄位、信息組、域
file 文件
floppy disk 軟磁碟
floppy disk drive 軟磁碟機
flow chart 流程圖
frame 幀
hardware 硬體
identifier 標識符
index 索引
information 信息
inline processing 內處理
input 輸入
inquiry 詢問
instruction 指令
integrated circuit 集成電路
to interpret 解釋
item 項目、項
jump 轉移
key 鍵、關鍵碼
keyboard 鍵盤
latency time 等待時間
library 庫、程序庫
linkage 連接
to load 裝入、寄存、寫入、載入
location 存儲單元
logger 登記器、記錄器
loop 循環
machine language 機器語言
magnetic storage 磁存儲器
magnetic tape 磁帶
matrix 矩陣
memory 存儲器
message 信息、報文
microcomputer 微型計算機
mole 組件、模塊
monitor 監視器、監督程序、管程
nanosecond 毫微秒
network 網路、網
numeric、 numerical 數字的、數值的
octet 八位位組、八位位元組
operator 操作員
optical character reader 光符閱讀機
optical scanner 光掃描器
output 輸出
overflow 溢出、上溢
panel 平板
parameter 參數、參量
perforator 穿孔機
peripheral equipment 外圍設備、外部設備
personal computer 個人計算機
printed circuit 印製電路
printer 列印機
printout 列印輸出
to process 處理
processing unit 處理部件
program 程序
to program 程序編制
programmer 程序設計員
programming 程序設計、程序編制
pulse 脈沖
punch 穿孔
to punch 穿孔
punched card、 punch card 穿孔卡片
punched tape、 punch tape 穿孔紙帶
punch hole 孔、穿孔
random access 隨機存取
to read 讀
reader 閱讀程序
reading 閱讀
real time 實時
record、 register 記錄
rendancy 冗餘
routine 例行程序
selector 選擇器、選擇符
sentinel 標記
sequence 序列、順序
sequential 順序的
serial 串列的.連續的
shift 移位、移數
signal 信號
simulation 模擬
simulator 模擬器、模擬程序
software 軟體、軟設備
sort 分類、排序
sorter 分類人員、分類機、分類程序、排序程序
storage 存儲器
to store 存儲
subroutine、 subprogram 子程序
switch 開關
symbol 符號
symbolic language 符號語言
system 系統
tabulator 製表機
teleprinter 電傳打字機
terminal 終端
terminal unit 終端設備
timer 時鍾、精密計時器
time sharing 分時
timing 定時
track 磁軌
transcer 感測器、翻譯機
translator 翻譯程序、翻譯器
to update 更新
Winchester disk drive 溫徹斯特磁碟機、硬碟機
working storage 工作存儲器
CSS: Cascading Style Sheets,層疊格式表
DCD: Document Content Description for XML: XML文件內容描述
DTD: Document Type Definition,文件類型定義
HTML(HyperText Markup Language,超文本標記語言)
JVM: Java Virtual Machine, Java虛擬機
OJI: Open Java VM Interface,開放JAVA虛擬機介面
SGML: Standard Generalized Markup Language,標准通用標記語言
SMIL: Synchronous Multimedia Integrate Language(同步多媒體集成語言)
VRML:Virtual Reality Makeup Language,虛擬現實結構化語言
VXML(Voice eXtensible Markup Language,語音擴展標記語言)
XML: Extensible Markup Language(可擴展標記語言)
XSL: Extensible Style Sheet Language(可擴展設計語言)
CTI:Computer Telephone Integration,計算機電話綜合技術
DBS: Direct Broadcast Satellite,直接衛星廣播
DWDM: Dense WaveLength Division Multiplex,波長密集型復用技術
MMDS: Multichannel Multipoint Distribution Service,多波段多點分發服務
PCM: Pulse Code Molation,脈沖編碼調制
PSTN(Public Switched Telephone Network,公用交換式電話網)
TAPI: Telephony Application Programming Interface,電話應用程序介面
TSAPI: Telephony Services Application Programming Interface,電話服務應用程序介面
WDM: WaveLength Division Multiplex,波分多路復用
ADSL: Asymmetric Digital Subscriber Line,不對稱數字訂閱線路
AH: Authentication Header,鑒定文件頭
AMR(Audio/Modem Riser,音效/數據主機板附加直立插卡)
ARP(Address Resolution Protocol,地址解析協議)
ATM(Asynchronous Transfer Mode,非同步傳輸模式)
BOD(Bandwidth On Demand,彈性帶寬運用)
CBR(Committed Burst Rate,約定突發速率)
CCIRN: Coordinating Committee for Intercontinental Research Networking,洲際研究網路協調委員會
CCM(Call Control Manager,撥號控制管理)
CDSL: Consumer Digital Subscriber Line(消費者數字訂閱線路)
CGI(Common Gateway Interface,通用網關介面)
CIEA: Commercial Internet Exchange Association,商業網際網路交易協會
CIR(Committed Infomation Rate,約定信息速率)
CTS(Clear to Send,清除發送)
DBS-PC: Direct Broadcast Satellite PC(人造衛星直接廣播式PC)
DCE: Data Circuit Terminal Equipment,數據通信設備
DES: Data Encryption Standard,數據加密標准
DMT: Discrete Multi - Tone,不連續多基頻模式
DNS(Domain Name System,域名系統)
DOCSIS(Data Over Cable Service Interface Specifications,線纜服務介面數據規格)
DTE: Data Terminal Equipment,數據終端設備
EBR(Excess Burst Rate,超額突發速率)
ESP: Encapsulating Security Payload,壓縮安全有效載荷
FDM: Frequency Division Multi,頻率分離
Flow-control流控制
FRICC: Federal Research Internet Coordinating Committee,聯邦調查網際網路協調委員會
FTP(File Transfer Protocol,文件傳輸協議)
Ghost:(General Hardware Oriented System Transfer,全面硬體導向系統轉移)
HDSL: High bit rate DSL,高比特率數字訂閱線路
HTTP(HyperText Transfer Protocol,超文本傳輸協議)
ICMP(Internet Control Message Protocol,網際網路信息控制協議)
IETF(Internet Engineering Task Framework,網際網路工程任務組)
IKE: Internet Key Exchange,網際網路密鑰交換協議
IMAP4: Internet Message Access Protocol Version 4,第四版網際網路信息存取協議
Internet(網際網路)
IP(Internet Protocol,網際協議)
ISDN(Integrated Service Digital Network,綜合服務數字網路)
ISOC: Internet Society,網際網路協會
ISP(Internet Service Provider,網際網路服務提供商)
LAN(Local Area Network,區域網)
LDAP: Lightweight Directory Access Protocol,輕權目錄訪問協議
LOM(LAN-on-Montherboard)
IAB: Internet Activities Board,網際網路工作委員會
IETF: Internet Engineering Task Force,網際網路工程作業推動
L2TP(Layer 2 Tunneling Protocol,二級通道協議)
LMDS: Local Multipoint Distributed System,局域多點分布式系統
MIME: Multipurpose Internet Mail Extension,多用途網際網路郵件擴展協議
MNP: Microcom Networking Protocal
MODEM(Molator Demolator,數據機)
NAT(Network Address Translation,網路地址轉換)
NC(Network Computer,網路計算機)
NDS: Novell Directory Service,Novell目錄服務
NNTP: Network News Transfer Protocol,網路新聞傳輸協議
MSN: Microsoft Network,微軟網路
OFDM(orthogonal frequency division multiplexing,直角頻率部分多路復用)
P3P(Privacy Preference Project,個人私隱安全平台)
PDS: Public Directory Support,公眾目錄支持
PGP: Pretty Good Privacy,優良保密協議
PICS: Platform for Internet Content Selection,網際網路內容選擇平台
POF: Polymer Optical Fiber,聚合體光纖
POP3: Post Office Protocol Version 3,第三版電子郵局協議
PPTP: Point to Point Tunneling Protocol,點對點通道協議
RADSL: Rate Adaptive DSL,速率自適應數字訂閱線路
RARP(Reverse Address Resolution Protocol,反向地址解析協議)
RDF: Resource Description Framework,資源描述框架
RSA(Rivest Shamir Adlemen,一種網際網路加密和認證體系)
RTS(Request To Send,需求發送)
SIS: Switched Internetworking Services(交換式網路互聯服務)
S/MIME: Secure MIME,安全多用途網際網路郵件擴展協議
SNMP(Simple Network Management Protocol,簡單網路管理協議)
SMTP(Simple Mail Transfer Protocol,簡單郵件傳輸協議)
SKIP: Simple Key Exchange Internet Protocol,網際網路簡單密鑰交換協議
SUA(Single User Account,單用戶帳號)
TCP(Transmission Control Protocol,傳輸控制協議)
UART(Universal Asynchronous Receiver/Transmitter,通用非同步接收/發送裝置)
UDP(User Datagram Protocol,用戶數據報協議)
ULS: User Location Service,用戶定位服務
VOD: Video On Demand,視頻點播
VPN: virtual private network,虛擬區域網
WWW(World Wide Web,萬維網,是網際網路的一部分)
參考資料:http://sl.iciba.com/html/2006/0718/23/88193_1.htm