-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathvirtualsplat-abbrev-dict.txt
4241 lines (4241 loc) · 156 KB
/
virtualsplat-abbrev-dict.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Application "VIRTUALSPLAT.COM/ABBREVIATIONS"
B-CHANNEL Bearer Channel
B/F Background/Foreground
B2B Business-To-Business
B2C Business To Consumer
B2E Business To Employees
B2X Binary To Hexadecimal [REXX]
BA Bell Atlantic (company)
BACP Bandwidth Allocation Control Protocol
BAK Backup (file name extension)
BAK Binary Adaptation Kit [Microsoft]
BAL Basic Assembly Language
BALUN Balanced Unbalanced (device)
BAM Boyan Action Module
BAPI Business Application Programming Interface [SAP]
BARTS Bell Atlantic Regional Timesharing
BAS Basic Language (file name extension)
BASH Bourne Again Shell [Unix]
BASIC Beginner's All-purpose Symbolic Instruction Code
BASM Built-In Assembler
BAT Batch Processing (file name extension)
BAT Block Address Translation
BBS Bulletin Board System
BCC Block Check Character
BCC: Blind Carbon Copy
BCD Binary Coded Decimal
BCL Base Class Libraries + Batch Command Language
BCN Beacon
BCNF Boyce-Codd Normal Form
BCP Best Current Practice + Bulk Copy Program
BCPL Basic Computer Programming Language
BCR Byte Count Register
BCS Bar Code Sorter
BDA Bios Data Area
BDC Backup Domain Controller
BDE Borland Database Engine [Borland]
BDLS Bidirectional Loop Switching
BDOS Basic Disk Operating System
BDR Bus Device Request
BDSL (See DSL)
BE Below or Equal
BECN Backward Explicit Congestion Notification
BEDO Burst Extended Data Out
BEEP Blocks Extensible Exchange Protocol
BEL Bell
BELLCORE Bell Communications Research
BER Basic Encoding Rules + Bit Error Rate
BERT Bit Error Rate Test/Tester
BF Bad Flag
BFC Briefcase (file name extension) [Microsoft]
BFF Binary File Format [IBM]
BFT Binary File Transfer
BFTP Batch FTP
BGA Ball Grid Array
BGCOLOR Background Color [HTML]
BGE Branch if Greater or Equal
BGI Borland Graphic Interface (file name extension)
BGP Border Gateway Protocol
BGT Branch if Greater Than
BHI Branch if Higher
BHIS Branch if Higher or Same
BI Binary Input
BIB Bibliography (file name extension)
BIFET Bipolar Field Effect Transistor
BIFF Binary Interchange File Format
BIM Beginning of Information Marker
BIN Binary (file name extension)
BINAC * Binary Automatic Computer
BIND Berkeley Internet Name Domain
BINHEX Binary Hexadecimal
BIOS Basic Input/Output System
BIS Business Information System
BISDN Broadband Integrated Services Digital Network
BIST Built-In Self-Test
BIT Binary Digit
BITNET Because It's Time Network
BITNIC Bitnet Network Information Center
BIU Bus Interface Unit
BIW Business Intelligence Warehouse [SAP]
BIX Byte Information Exchange (BBS)
BIZ Businesses (Domain Name) [Internet]
BK! Backup (file name extension) [WordPerfect]
BKSP Backspace
BL Backlit + Bit Line
BLAST Bell Labs Layered Space Time +
BLD BASIC Bload Graphics (file name extension)
BLE Branch if Less or Equal
BLER Block Error
BLK Block
BLMC Buried Logic Macrocell
BLOB Binary Large Object
BLOG Web Log
BLOS Branch if Lower Or Same
BMI Branch if Minus
BMIC BusMaster Interface Controller [Intel]
BMP Basic Mapping Support + Basic Multilingual Plane + Batch Message
BMP Bitmap (file name extension) [Paintbrush Format]
BNC Bayonet Neill-Concelman (connector used with coaxial cable invented
BNE Branch if Not Equal
BNF Backus-Naur Form (also Backus-Normal Form) [developed by John
BNS Backbone Network Service
BO Binary Output
BOA Basic Object Adapter
BOB Break-out Box
BOC Basic Operator Console
BOF Beginning Of File
BOM Basic Online Memory [IBM] + Beginning Of Message
BOND Bandwidth On Demand
BOOTP Bootstrap Protocol [Internet]
BOPS Billion Operations Per Second
BORPQU Borland Pro Quattro
BORQU Borland Quattro
BOS Basic Operating System
BOT Beginning Of Table + Beginning of Tape + Robot
BP Base Pointer
BPB BIOS Parameter Block
BPDU Bridge Protocol Data Unit Berkeley Packet Filter
BPI Bits Per Inch
BPL Branch if Plus
BPP Bits Per Pixel
BPR Business Process Re-engineering [Linux]
BPS Bits Per Second + Bytes Per Second
BPSK Binary Phase Shift Keying
BR Bad Register
BRGC Binary Reflected Gray Code
BRI Basic Rate Interface + Brain Response Interface
BS Backspace
BS-RAM Burst Static RAM
BSAM Basic Sequential Access Method
BSC Base Station Controller + Binary Synchronous Communication
BSC Boyan Script (file name extension) [Boyan Communications]
BSCS Bachelor of Science (Degree) in Computer Science
BSD Berkely Software/Standard Distribution
BSF Bit Scan Forward
BSI British Standards Institute
BSM Basic Storage Module [IBM]
BSP Bulk Synchronous Parallelism
BSR Bit Scan Reverse
BSS Block Started by Symbol
BST Binary Search Tree
BSY Busy
BSYNC Binary Synchronous Communications (protocol)
BT Bit Test
BTAM Basic Telecommunications Access Method [IBM]
BTB Branch Target Buffer
BTC Bit Test and Complement
BTI Business Type Identifier
BTOA Binary To ASCII
BTP Batch Transfer Program
BTR Bit Test and Reset
BTS Base Transceiver Station + Bit Test and Set
BU Branch Unit
BUBL Bulletin Board for Libraries [Janet]
BUF Buffer
BUS Broadcast and Unknown Server
BVH Base Video Handler
BWM Block-Write Mode
BYTE Binary Element String
Backus and Peter Naur]
BiDi Bi-Directional
BiSYNC (See BSYNC)
Blocked Asynchronous Transmission (protocol) [Communications Research
British Naval Connector
B~K Backup (file name extension)
C C Programming Language
C C source code (file name extension) [C]
C&T Chips and Technologies
C/D Control Data
C/S Client/Server
C2D Character To Decimal [REXX]
C2T Cable Changing Technology
C2X Character To Hexadecimal [REXX]
CA Certification Authority + Collision Avoidance
CAB Cabinet (file name extension) [Microsoft]
CAB Compressed Application Binary [Microsoft]
CACLS Command-Line Access Control Lists [Microsoft]
CAD Computer Aided Design
CADD Computer Aided Design and Drafting
CADE Client/server Application Development Environment
CAE Client Application Enabler + Common Applications Environment +
CAEN Chemically Assembled Electronic Nanocomputer
CAEX Computer Aided Exploration
CAG Column Address Generator
CAI Computer Aided Instruction
CAIRN Collaborative Advanced Interagency Research Network
CAL Calendar + Client Access License +
CALS Computer-Aided Acquisition in Logistic Support
CAM Common Access Method + Computer Aided Manufacturing +
CAN Cancel + Controller Area Network
CANBUS Conroller Area Network Bus
CAP Capture (file name extension)
CAP Carrierless Amplitude and Phase-Modulation + Central Arbitration
CAPD Computing To Assist Persons With Disabilities [Johns Hopkins
CAPE Concurrent Art-to-Product Environment
CAPS Capitals (Upper Case Letters) + Cassette Programming System
CAPTCHA Completely Automatic Public Turing Test To Tell
CAR Committed Access Rate [Cisco]
CARL Colorado Alliance of Research Libraries [Internet]
CART Computer-Assisted Radar Tomography
CAS Column Address Select/Strobe + Communications Application
CASE Computer Aided Software Engineering
CASL Crosstalk Application Scripting Language [DCA]
CASS Computer Assisted Search Service
CASSIS Classified and Search Support Information System
CAT Catalog (file name extension)
CAT Computer Adaptive Test + Computer Aided Testing + Computer Aided
CAT SCAN Computerized Axial Tomography Scan
CATS Computer Assisted Training System
CATV Community Antenna Television (this was the original name for what
CAU Controlled Access Unit
CAV Constant Angular Velocity
CAVE Computer Automatic Virtual Environment
CBC Cipher Block Chaining
CBCR Channel Byte Count Register
CBDS Connectionless Broadband Data Service
CBEMA Computer and Business Equipment Manufacturers Association
CBGA Ceramic Ball Grid Array
CBI Computer Based Instruction\Instrumentation
CBL COBOL source code (file name extension)
CBL Computer Based Learning
CBMS Computer-Based Mail System
CBN Community Based Networks
CBR Case Based Reasoning + Constant Bit Rate
CBT Computer Based Training
CBW Convert Byte to Word
CBX Computer-Controlled Branch Exchange
CC Cluster Controller
CC/PP Composite Capabilities/Preference Profile
CC: Carbon Copy
CCD Charged-Coupled Device
CCFT Cold Cathode Fluorescent Tube
CCI Common Client Interface
CCIE Cisco Certified Internetwork Expert [Cisco]
CCITT Comite Consultatif International Telegraphique et Telephonique/
CCL Connection/Cursor Control Language
CCM Corba Component Mode
CCNA Cisco Certified Network Associate
CCNP Cisco Certified Network Professional
CCP Certified Computing Professional +
CCS Color Calibration System (file name extension)
CCS Common Command Set + Common Communications Services + Common
CCSD Cellular Circuit-Switched Data
CCSIS Coded Character Set ID
CCTLD Country Code Top-Level Domain
CD Carrier Detect + Change Directory + Collision Detection + Color
CD+G Compact Disk plus Graphics
CD-DA Compact Disk - Digital Audio
CD-E Compact Disk - Erasable
CD-I Compact Disk - Interactive
CD-MO Compact Disk - Magneto Optical
CD-R Compact Disk - Recordable
CD-RAM Cached RAM
CD-RDx Compact Disk - Read Only Memory Data Exchange Standard
CD-ROM Compact Disk - Read Only Memory
CD-ROM-XA CD-ROM Extended Architecture
CD-RTOS Compact Disk - Real Time Operating System
CD-RW Compact Disk - Rewritable
CD-V Compact Disk - Video
CD-WO Compact Disk - Write Once
CD-XA Compact Disk - Extended Architecture
CDA CD Audio-Track (file name extension)
CDA Compound Document Architecture [DEC]
CDBT Compact Disk-Based Training
CDC Connected Device Configuration + Control Data Corporation
CDDI Copper Distributed Data Interface
CDE Common Desktop Environment + Complex Data Entry
CDF Channel Definition Format
CDF Comma Delimited Format (file name extension)
CDFS Compact Disc File System [Microsoft]
CDIA Certified Document Imaging Architect
CDL Computer Design Language
CDMA Code Division Multiple Access
CDMF Commercial Data Masking Facility [IBM]
CDO Collaboration Data Objects [Microsoft]
CDOS Concurrent Disk Operating System
CDP * Certificate In Data Processing (First certification for Computer
CDPD Cellular Digital Packet Data
CDR Call Detail Record + Call Detail Recording + Common Data
CDR CorelDRAW (file name extension) [Corel]
CDRL Contract Data Requirements List
CDS Current Directory Structure
CDSA Common Data Security Architecture
CDSL (See DSL)
CDT Corel Draw Template (file name extension)
CDX Compound Index (file name extension) [Fox Pro]
CD_CHRDY Card Channel Ready [IBM]
CE Cache Enable + Chip Enable + Collision Elimination + Convert Enable
CEB Conditional End Bracket
CEC Certified E-Commerce Consultant
CEG Continuous Edge Graphics
CEI Conducted Electromagnetic Interference
CELP Card Edge Low Profile (socket) [Intel]
CEMS Constituent Electronic Mail System
CEOP Conditional End Of Page
CER Canonical Encoding Rules
CERN The European Particle Physics Laboratory (initials originally from
CERT Computer Emergency Response Team
CFB Cipher Feedback + Configurable Function Block
CFG Configuration (file name extension)
CFM Code Fragment Manager [Macintosh] + Cubic Feet Per Minute
CFML ColdFusion Markup Language
CFR Computerized Facial Recognition
CFS Caching/Common File System
CFV Call For Votes [Bitnet]
CG Control Gate
CGA Color Graphics Adapter
CGE Common Graphics Environment
CGI Computer Generated Images + Computer Graphics Interface
CGI-BIN Common Gateway Interface - Binary
CGM Computer Graphics Metafile (file name extension) + Graph (file
CGS Continuous-Grain Silicon
CHAP Challenge-Handshake Authentication Protocol
CHAR Character
CHAT Conversational Hypertext Access Technology [Internet]
CHCK Channel Check
CHCP Change Code Page
CHDIR Change Directory
CHFN Change Finger [Unix]
CHGRP Change Group
CHIPS Clearinghouse Interbank Payments System
CHK CHKDSK (file name extension)
CHKDSK Check Disk
CHMOD Change Mode
CHOWN Change Owner
CHP Chapter
CHR Character
CHRP Common Hardware Reference Platform
CHS Cylinder Head Sector
CHTML Compressed HTML
CI Component Interface
CIA Current Instruction Address
CIAC Computer Incident Advisory Capability
CICS/VS Customer Information Control System/Virtual Storage [IBM]
CID Charge-Injection Device + Configuration/Installation/Distribution
CIDR Classless Inter-Domain Routing
CIF Common Interchange/Intermediate Format + Crystallographic
CIFS Common Internet File System
CIL Common Intermediate Language [ECMA]
CIM Common Information Model + CompuServe Information Manager +
CIO Chief Information Officer
CIOCS Communication Input/Output Control System
CIP Command Interface Port + Common Indexing Protocol
CIR Committed Information Rate
CIRC Circular Reference + Cross-Interleaved Reed-Solomon Code
CIS Card Information Structure + Client Information System + CompuServe
CISC Complex Instruction Set Computing
CIT Computer-Integrated Telephony
CIVR Computer and Interactive Voice Response
CIW Certified Internet Webmaster
CIX Commercial Internet Exchange + Compulink Information Exchange
CJLI Command Job Language Interpreter
CKD Count Key Data (device)
CLAR Channel Local Address Register
CLASS Client Access to Systems and Services + Cooperative Library
CLC Clear Carry Flag
CLD Clear Direction Flag
CLDC Connected Limited Device Configuration
CLEC Competitive Local Exchange Carrier
CLI Call-Level Interface + Clear Interrupt Flag + Client Library
CLIB C Library
CLID Calling Line Identification
CLIST Command List
CLK Clock
CLNP Connectionless Network Protocol
CLOS Common Lisp Object System
CLP Cell Loss Priority + Constraint Logic Programming
CLP Clipboard (file name extension) [Microsoft]
CLR Common Language Runtime [Microsoft]
CLS Clear Screen + Common Language Support
CLSID Class Identifier
CLTP Connectionless Transport Protocol
CLTS Clear Task Switch Flag
CLTV Constant Linear Time Velocity
CLUI Command Line User Interface
CLUT Color Look-Up Table
CLV Constant Linear Velocity
CM Centimeter + Control Mark + Corrective Maintenance
CMA Concert Multi-thread Architecture
CMC Common Mail Calls + Common Messaging Calls + Communication
CMD Circuit Mode Data
CMD Command (file name extension)
CMF Creative Music Format
CMIP Common Management Information Protocol
CMIS Common Management Information Services/System
CML Chemical Markup Language + Conceptual Modelling Language + Computer
CMM Capability Maturity Model
CMMS Computerized Maintenance Management Software
CMMU Cache/Memory Management Unit [Motorola]
CMOS Coats-Mellon Operational Specification + Complementary Metal-Oxide
CMOV Conditional Move
CMP Compare + Computer
CMPS Compare Word String
CMS Call Management Server + Code Management System + Compiler Monitor
CMTS Cable Modem Termination System
CMVC Configuration Management Version Control [IBM]
CMW Compartmented Mode Workstation
CMY Cyan-Magenta-Yellow (color model)
CMYK Cyan-Magenta-Yellow-Black (color model)
CNA Certified NetWare/Network Administrator
CNAPS Co-Processing Node Architecture for Parallel Systems
CNC Computerized Numerical Control
CNE Certified NetWare Engineer
CNF Configuration (file name extension)
CNG Calling (tone)
CNI Certified Novell Instructor [Novell]
CNIDR Clearinghouse for Network Information and Discovery and Retrieval
CNIDR Clearinghouse for Networked Information and Discovery and
CNN Composite Network Node
CNR Carrier to Noise Ratio + Communication Network Riser
CNSS Core Nodal Switching Subsystem [Internet]
CNT Contents (file name extension)
CNV Conventional (pertaining to Memory)
CNVT Convert
CNX Certified Network Expert
CO Central Office + Command Output + Convert Out
COAST Card On A Stick (module)
COAX Coaxial Cable
COB COBOL source code (file name extension)
COB Chip-On-Board
COBOL Common Business-oriented Language (See HLL)
COBOL)
COD Code List (file name extension)
CODASYL * Conference on Data System Languages (Group that designed
CODE Client-Server Open Development Environment
CODEC Coder/Decoder + Compression/Decompression
COEM Commercial Original Equipment Manufacturer
COFF Common Object File Format [Unix]
COGO Coordinate Geometry (Programming Language)
COL Collision + Computer Oriented Language
COLD Computer Output to Laser Disk
COLL Collision
COM Command (file name extension) + Commercial Business (Domain Name)
COM Component Object Model [Microsoft] + Computer Output Microfilm
COM1 First serial Port (asynchronous port)
COM2 Second serial Port
COM3 Third serial Port
COM4 Fourth serial Port
COMDEX Computer Dealers Exposition
COMET Cornell Macintosh Terminal Emulator
COMM Communications
COMP Compare
COMP. Computers [USENET Newsgroup Category]
COMSAT Communications Satellite Corporation
CON Console (includes Keyboard and Screen)
COND Condition
CONFIG Configuration
CONS Connection-Oriented Network Service
CONTONE Continuous Tone
COOP Cooperatives-Business (Domain Name) [Internet]
COPICS Communications Oriented Production Information and Control
COR Common Object Runtime
CORBA Common Object Request Broker Architecture
COREN Corporation for Research and Enterprise Network
COS Compatible Operating System
COSE Combined Office Standard Environment + Common Open
COSMIC Computer Software Management and Information Center [NASA]
COSMOS Computer System for Mainframe Operations
COSS Common Object Services Specification
COTS Commercial Off-The-Shelf (software)
CP Copy Protected
CP/M Control Program for Microcomputers [Digital Research]
CPA Certified Public Accountant + Cost Per Action
CPAN Comprehensive Perl Archive Network
CPC Constant Point Calculation + Cost Per Click
CPCS Check Processing Control System [IBM]
CPE Central Processing Element + Customer Premises Equipment + Customer
CPE Cover Page (file name extension)
CPFR Collaborative Planning, Forecasting and Replenishment
CPG Clock Pulse Generator
CPI Characters Per Inch + Clock Per Instruction + Common Programming
CPI Code Page Information (file name extension) [MS-DOS]
CPI-C Common Programming Interface for Communications [IBM]
CPIO Copy In and Out [Unix]
CPL Control Panel (file name extension)
CPL Current Privilege Level
CPLD Complex Programmable Logic Device
CPM Critical Path Method
CPO Chief Privacy Officer
CPRM Content Protection for Recordable Media
CPS Characters Per Second + Cycles Per Second
CPT Command Pass Through
CPU Central Processing Unit
CPW Commercial Processing Workload [IBM]
CR Carriage Return
CR/LF Carriage Return/Line Feed
CRAM Challenge-Response Authentication Mechanism + Cyberspatial Reality
CRAYON Create Your Own Newspaper
CRC Cyclic Redundancy Check
CRD Cardfile (file name extension) + Chord (music file name extension)
CREN Computer Research Education Network + Corporation for Research and
CRF Cable Retransmission Facility + Cross Reference File
CRI Color Reproduction Indices
CRL Certificate Revocation List
CRM Customer Relationship Management
CROM Control Read Only Memory
CRT Cathode Ray Tube
CRTC CRT Controller
CRUD Create, Retrieve, Update, Delete
CS Chip Select + Clear to Send + Code Segment
CS/SS Card Service/Socket Service
CSA Calendaring and Scheduling API [IBM]
CSAR Channel System Address Register
CSCW Computer Supported Cooperative Work
CSD Circuit-Switched Data + Computer Services Department + Corrective
CSDS Circuit Switched Data Service
CSE Certified System Engineer
CSFI Communication Subsystem For Interconnection
CSG Constructive Solid Geometry + Consulting Services Group [Lotus]
CSI Command Sequence Introducer + CompuServe Incorporated
CSID Call Subscriber Identification
CSL Computer Sensitive Language
CSLIP Compressed Serial Line Interface Protocol [Internet]
CSM Code Set Map (file) + Communications Services Manager + Control
CSMA/CA Carrier Sense Multiple Access/with Collision Avoidance
CSMA/CD Carrier Sense Multiple Access/with Collision Detection
CSMS Customer Support Management System
CSN Card-Select Number
CSNET Computer Science Network
CSO Central Services Organization
CSP Certified Systems Professional + Chip-Scale Packaging + Commercial
CSPDN Circuit Switched Public Data Network
CSRAM Custom Static RAM
CSS * Continuous System Simulator (Language)
CSS Cascading Style Sheet [Microsoft] + Contact Start-Stop + Content
CSSM Client-Server Systems Management [IBM]
CSTA Computer-Supported Telephony Applications
CSU Channel Service/Switching Unit
CSV Circuit-Switched Voice + Comma-Separated Value/Variable + Common
CTB Cipher Type Byte
CTC Channel To Channel + Counter/Timer Chip
CTCP Client-To-Client Protocol
CTI Computer-Telephony Integration
CTL Complex Text Layout
CTOS Cassette Tape Operating System + Computerized Tomography Operating
CTPA Coax-to-Twisted-Pair Adapter
CTRCO * Calculating,Tabulating,Recording Company (The name of this
CTRL Control
CTS Clear To Send + Computer Telephony Solution [IBM] + Customer
CTSS * Compatible Time Sharing System
CUA Common User Access [IBM]
CUB Cursor Backward
CUD Cursor Down
CUE Custom Updates and Extras (card) [Egghead Software]
CUF Cursor Forward
CUI Character-Oriented User Interface + Common User Interface [IBM]
CUP Cursor Position
CUPID Completely Universal Processor I/O Design [AST]
CUR Cursor (file name extension)
CUSIP Committee for Uniform Security Identification Procedures [U.S.
CUT Control Unit Terminal
CUTE Clarkston University Terminal Emulator
CUU Cursor Up
CVF Compressed Volume File
CVGA Color Video Graphics Array
CVIA Computer Virus Industry Association
CVS Computer Vision Syndrome + Concurrent Versions System
CVT Convert
CVW CodeView for Windows
CWA Competitive Web Analysis
CWD Convert Word to Double Word + Change Working Directory [Internet]
CWIS Campus Wide Information Service/System [Internet] + Community Wide
CXML Commerce Extensible Markup Language
CYL Cylinder
CYMK Cyan-Yellow-Magenta-Black (color model)
C]
Cable TV)
Category > Computer Abbreviation
Category [right.jpg] [3]Alphabet
Category | [37]Alphabet | [38]Meaning | [39]Search | [40]Contact us
Checksum
Command Line Interface + Common Language
Commercial Subroutine Package + CompuCom Speed
Communication Application Platform + Competitive Access
Communication [Internet]
Communications Support + Continuous Composite Servo + Cryptographic
Compact Disk
CompuCom] + Communicating Sequential Processes + Cross System
Computer Abbreviation for free
Computer Aided Engineering
Computer Aided Learning
Computer Aided Publishing
Computer Aided Styling
Computer Aided Transcription + Concatenate
Computer Information Systems + Contact Image
Computer Integrated Manufacturing
Computers and Humans Apart
Configuration + Complement Carry Flag + Computer-Mediated
Conseil Europien pour la Recherche Nucliaire)
Console Command Processor
Consultative Committee for International Telegraph and Telephone
Contact Us
Contents Addressable Memory
Convergent Technologies Operating System
Conversation Monitor System
Copyright 2003. [48]Virtual Splat. All Rights Reserved.
CreekIndia | [47]Free
Current Mode Logic
Custom Local-Area Signaling Services
Customer Information Feed
Customer Information System
D-CHANNEL Data Channel
D/A Digital to Analog
D/R Direct or Reverse
D/S Dhrystone Per Second
D2C Decimal To Character [REXX]
D2T2 Dye Diffusion Thermal Transfer (printing)
D2X Decimal To Hexadecimal [REXX]
DAA Data Access Arrangement + Decimal Adjust for Addition
DAB Digital Audio Broadcasting
DAC Data Acquisition and Control + Device Access Code + Digital to
DACL Discretionary Access Control List
DACTLU Deactive Logical Unit
DAD Desktop Application Director [Borland]
DAE Digital Audio Extraction
DAF Destination Address Field
DAI Distributed Artificial Intelligence
DAL Data Access Language [Apple Computer] +
DAM Data Acquisition and Monitoring
DAMPS Digital AMPS
DAO Data Access Object [Microsoft] + Disk At Once
DAP Data Access Protocol [DEC] +
DAPIE Developers Application Programming Interface Extensions
DARI Database Application Remote Interface [IBM]
DARMS Digital Alternate Realization of Musical Symbols
DART Digital Audio Reconstruction Technology
DAS Decimal Adjust for Subtraction +
DASD Direct Access Storage Device [IBM]
DAT Data (file name extension)
DAT Digital Audio Tape + Disk Array Technology
DATACOM Data Communications
DAV Digital Audio-Video +
DAVIC Digital Audio-Visual Council dB Decibel
DB Data Base + Data Buffer + Device Bay dBA Adjusted Decibel
DB2 Database 2
DBA Data Base Administrator
DBC Device Bay Controller
DBCS Delivery Bar Code Sorter + Double-Byte Character Set
DBF Database Format (file name extension)
DBIS Dun & Bradstreet Information Services
DBK Docbook (format) (file name extension)
DBM Data Base Manager
DBMS Data Base Management System
DBR DOS Boot Record
DBS Data Base Server + Direct (to home) Broadcast (satellite) System
DBV Digital Broadcast Video
DBWR Database Writer [Oracle]
DC Data Collection + Data Communication + Data Control + Device Control
DCA Digital Communications Associates +
DCAF Distributed Console Access Facility [IBM]
DCAM Digital Camera + Direct Chip Attach Module
DCB Device Control Block + Disk Coprocessor Board [Novell]
DCC Data Country Code + Digital Command Control + Digital Compact
DCD Data Carrier Detect
DCE Data Circuit-Terminating Equipment + Data Communications Equipment
DCED Distributed Computing Environment Daemon
DCF Data Communication Facility [IBM] + Data Compression Facility +
DCI Display Control Interface
DCL Data Control Language + Declaration +
DCML Dynamic Configuration Markup Language
DCOM Distributed Component Object Model
DCP Device Control Protocol + Digital Light Processing [TI]
DCS Data Collection System + Data Control System + Desktop Color
DCT Dictionary (file name extension)
DCT Discrete Cosine Transform
DCU Data-Cache Unit
DD Day + Digital Display + Double Density
DDA Distributed Data Access + Domain-Defined Attribute
DDB Device Dependent Bitmap + Device Descriptor Block
DDC Digital Data Channel [VESA] + Display Data Channel
DDC1 Display Data Channel One
DDCMP Digital Data Communications Message Protocol [DEC]
DDCS Distributed Database Connection Services [IBM]
DDD Direct Distance Dialing
DDE Direct Data Entry + Dynamic Data Exchange [Microsoft]
DDEML Dynamic Data Exchange Manager Library [Microsoft]
DDF Display Data Channel + Dynamic Data Formatting [IBM]
DDI Device Driver Interface + Digital Document Interchange + Direct
DDK Device Driver Kit [Microsoft Windows]
DDL Data Definition Language + Data Description Language
DDM Distributed Data Management
DDN Defense Data Network
DDNS Dynamic Domain Naming System
DDOS Distributed Denial Of Service
DDP Datagram Delivery Protocol + Distributed Data Processing
DDR Dynamic Document Review [Symantec]
DDR-SDRAM Double Data Rate-SDRAM
DDS Data Description Specification + Digital Dataphone Service [AT&T] +
DDX Digital Data Exchange
DE Device End
DEA Data Encryption Algorithm + Disposable Email Address
DEC Command Language [DEC] + Device Clear + Digital Control Logic +
DEC Decrement + Device Clear + Digital Equipment Corporation
DECNET Digital Equipment Corporation Networking (protocol)
DEF Definitions + Defaults (file name extensions)
DEF Desktop Functional Equivalent [Compaq]
DEFRAG Defragment
DEK Data Encryption Key
DEL Delete
DELSTR Delete String [REXX]
DEM Demonstration (file name extension)
DEN Directory Enabled Network + Document Enabled Networking
DER Distinguished Encoding Rules
DES Data Encryption Standard + Data Entry Sheet
DES Description (file name extension)
DET Device Execute Trigger
DEV Device
DF Data Field + Default + Destination Field +
DFC Data Flow Control
DFD Data Flow Diagram
DFDR Digital Flight Data Recorder
DFM Design For Manufacturability [IBM]
DFP Digital Flat Panel
DFS Distributed File System
DFSMS Data Facility Storage Management Subsystem [IBM]
DFT Design For Testability + Diagnostic Function Test +
DFU Data File Utility
DGIS Direct Graphics Interface Standard
DHCP Dynamic Host Configuration Protocol
DHL Dynamic Head Loading
DHP Dr. Halo PIC (file name extension)
DHTML Dynamic HTML
DI Data In + Destination Index
DIA Document Interchange Architecture [IBM]
DIB Device Independent Bitmap +
DIBOL DEC Business Oriented Language
DIC Dictionary (file name extension)
DICOM Digital Imaging and Communications in Medicine
DID Direct Inward Dialing
DIDS Distributed Intrusion Detection System
DIF Data Interchange Format
DIFFSENS Differential Sense
DIIP Direct Interrupt Identification Port
DIME Direct Internet Message Encapsulation
DIMM Dual In-Line Memory Module
DIN Deutsche Industrie Norm (German equivalent of EIA)
DIO Data Input-Output
DIP Dialup Internet Protocol [Internet] + Digital Imaging Processing +
DIR Directory (file)
DIS Draft International Standard + Dynamic Impedance Stabilization
DISA Data Interchange Standards Association + Direct Inward System
DISP Displacement (offset)
DIT Directory Information Tree
DIV Divide
DIVE Direct Interface Video Extension [OS/2 Warp]
DIVX Digital Video Express
DIW D-Inside Wire [AT&T]
DIX Digital-Intel-Xerox (Original Ethernet Standard)
DIZ Description In Zip (file name extension)
DL Download (also D/L)
DL/1 Data Manipulation Language 1 [IBM]
DLB Dynamic Load Balancing
DLC Data Link Control (protocol) [IBM] + Distributed Loop Carrier
DLCI Data Link Connection Identifier
DLD Display List Driver
DLE Data Link Escape
DLL Dynamic Link Library
DLM Distributed Lock Manager + Dynamic Link Module
DLP Digital Light Processing [TI]
DLPI Data Link Provider Interface
DLR DOS LAN Requester
DLS Data Link Switching [IBM]
DLT Digital Linear Tape
DM Distributed Memory
DMA Direct Memory Access/Addressing + Document Management Alliance
DMAC DMA Controller
DMACS Distributed Manufacturing Automation & Control Software
DMD Digital Micromirror Device [TI]
DME Direct Memory Execution + Distributed Management Environment
DMF Distribution Media Format [Microsoft]
DMI Desktop Management Interface
DML Data Manipulation Language + Dialog Markup Language [W3C]
DMM Digital Multimeter
DMMS Dynamic Memory Management System
DMOS Double-diffused Metal-Oxide Semiconductor
DMP Dot Matrix Printer
DMPC Distributed Memory Parallel Computer
DMPP Distributed Memory Parallel Processor
DMQS Display Mode Query and Set [IBM]
DMS Data Management Software + Data/Document Management System
DMSD Digital Multistandard Decoding
DMSDK Digital Media Software Development Kit [SGI]
DMSS Distributed Mass Storage System
DMT Digital/Discrete Multi-Tone
DMTF Desktop Management Task Force
DMY Day Month Year
DN Down
DNA Deoxyribonucleic Acid
DNC Direct Numerical Control
DNIC Data Network Identification Code
DNIS Dialed Number Identification Service
DNS Domain Naming System
DO Data Out + Distributed Objects
DO-IT Disabilities, Opportunities, Internetworking and Technology
DOA Dead On Arrival
DOC Document + Documentation (file name extensions)
DOCSIS Data Over Cable-Service Interface Specification
DOCSV Data Over Circuit-Switched Voice
DOE Distributed Objects Environment/Everywhere
DOIP Dial Other Internet Providers [IBM]
DOLAP Desktop OLAP
DOM Document Object Model [W3C]
DOMF Distributed Object Management Facility
DOS Denial Of Service + Disk Operating System
DOSEM DOS Emulation
DOT Document Template (file name extension)
DOV Data Over Voice
DOW Day Of Week
DP Data Processing
DPA Demand Protocol Architecture [3Com] + Document Printing
DPAM Demand Priority Access Method
DPAREN Data Parity Enable [IBM]
DPB Drive Parameter Block
DPC Direct Program Control
DPI Distributed Protocol Interface + Dots Per Inch
DPL Descriptor Privilege Level
DPM Digital Panel Meter
DPMA Data Processing Management Association
DPMI DOS Protected Mode Interface [Microsoft]
DPMS Digital Power Management Signaling + Display Power Management
DPO Data Phase Optimization
DPS Document Processing System
DPSK Differential Phase Shift Keying
DPtoTP Display Coordinates to Tablet Coordinates (converting)
DQDB Distributed Queue Dual Bus
DQL Data Query Language
DR Data Received
DR-DOS Digital Research-Disk Operating System
DR.BOND Dial-up Router Bandwidth On Demand [NEC]
DRAM Dynamic Random Access Memory
DRAW Direct Read After Write
DRDA Distributed Relational Database Algorithm/Architecture [IBM]
DRDW Direct Read During Write
DRE Direct Recording Electronic (voting systems)
DRI Declarative Referential Integrity + Digital Research Incorporated
DRM Digital Rights/Distributed Resource Management
DRO Data Request Output + Destructive Read-Out
DRS Document Registration System
DRS Driver Resource (file name extension) [WordPerfect]
DRV Device Driver (file name extension) (Also see .DVR)
DRV Drive
DRW Draw + Drawing (file name extensions)
DS Data Segment + Data Send + Data Server + Double Sided
DS3 Digital Signal Level 3
DSA Digital Signature Algorithm + Directory System Agent
DSAP Destination Service Access Point
DSD Direct Stream Digital [Sony-Philips]
DSDD Double Sided, Double Density (diskette)
DSE Data Storage Equipment
DSEA Display Station Emulation Adapter
DSECT Dummy Control Section
DSHD Double Sided, High Density (diskette)
DSIG Digital Signature
DSIS Distributed Support Information Standard
DSL Asymmetric DSL
DSL Broadband DSL
DSL Consumer DSL [Rockwell]
DSL Digital Subscriber Line
DSL Dynamic Simulation Language
DSL Fixed Directory Subscriber List
DSL High-Bit-Rate DSL +
DSL Integrated Services Digital Network DSL
DSL Rate-Adaptive DSL
DSL Single-Line DSL + Symmetric DSL
DSL Very-High-Bit-Rate DSL
DSL Very-High-Data-Rate DSL
DSL Very-High-Rate Asymmetric DSL
DSLAM Digital Subscriber Line Access Multiplexer
DSM Distributed Shared Memory + Domain-Specific Modeling
DSMA Digital Sense Multiple Access
DSML Directory Services Markup Language
DSN Data Source Name + Delivery Service Notification
DSO Dynamic Shared Object
DSOM Distributed System Object Model
DSP Delivery Service Partner + Digital Signal Processing/Processor +
DSPT Display Station Pass-Thru [IBM]
DSQD Double Sided, Quad Density (diskette)
DSR Data Set Ready + Device Status Register + Device Status Report
DSS Decision Support System + Digital Signature Standard + Digital
DSSI Digital Standard Systems Interconnect [DEC]
DSSS Direct-Sequencing Spread Spectrum
DSSSL Document Style Semantics and Specifications Language
DSTN Double Supertwisted Nematic
DSU Data Service/Switching Unit + Digital Service Unit
DSVD Digital Simultaneous Voice and Data
DSW Data Status Word + Device Status Word
DSX Digital Signals Cross-Connect
DTA Data (file name extension)
DTA Disk Transfer Area
DTC Desktop Conferencing
DTCP Digital Transmission Copy Protection [Hitachi, Intel, Panasonic,
DTD Document Type Definition
DTE Data Terminal Equipment + Dumb Terminal Emulator
DTF Distributed Test Facility
DTL Dialogue Tag Language [IBM] + Diode-Transistor Logic
DTM Digital Terrain Mapping
DTMF Data Tone Multiple Frequency + Dual Tone Multifrequency
DTP Desktop Publishing + Distributed Transaction Process
DTR Data Terminal Ready + Data Transfer Rate
DTS Distributed Traffic Shaping [Cisco]
DTSS Dartmouth Time Sharing System
DTV Desktop Video + Digital Television
DTVC Desktop Video Conferencing
DU Disk Usage
DUA Directory User Agent
DUAT Direct User Access Terminal
DUN Dial-Up Networking [Microsoft]
DUNCE Dial Up Network Connection Enhancement
DV DESQview Script (file name extension)
DV Digital Video
DVC Desktop Video Conferencing + Digital Video Camera
DVD Digital Video Disk
DVD-A Digital Video Disk-Audio
DVD-R Digital Video Disk-Recordable
DVD-RAM Digital Versatile Disc-RAM
DVD-ROM Digital Versatile Disc-ROM
DVE Digital Video Effect
DVI Device Independent (file name extension)
DVI Digital Video Interactive + Digital Visual Interface
DVM Digital Volt Meter
DVMRP Distance Vector Multicast Routing Protocol [Internet]
DVOF Digital Video Over Fiber
DVR Device Driver (file name extension) (Also see .DRV)
DVR Digital Video/Voice Recorder
DW Data Warehousing
DWDM Dense Wavelength Division Multiplexer
DWG Drawing
DWMT Discrete Wavelet Multitone
DWT Discrete Wavelet Transform
DXB Drawing Interchange Binary (file name extension)
DXC Data Exchange Control
DXF Data Exchange File + Drawing Exchange Format
DXI Data Exchange Interface
DYNSLT Dynamic Select [IBM]
DYNSRC Dynamic Source
D]
Data Access Layer + Disk Access Lockout
Data Count Field [IBM] + Driver Configuration File [Lotus]
Data-Rate DSL
Date Book Archive (file name extension) [Palm]
Decibels to a Milliwatt
Design Data Sheet + Digital Data Storage + Distributed Database
Developer Assistance Program
Device Flag + Double Flag
Dial In
Digital Command Language [Digital]
Digital Sound Processor + Directory Synchronization Protocol [Lotus]
Direct Cable/Client Connection + Display Combination Code
Direct Current
Direct Station Selector
Directory Information Base +
Discrete Fourier Transform +
Distributed Authoring and Versioning
Distributed Computing Environment [OSF] + Distributed Computing
Distributed Control System
Distributed Function Terminal
Document Content Architecture [IBM]
Dual Attachment Concentrator
Dual In-line Package + Dual In-line Pin
Dual Independent Bus [Intel]
Dual-Attached Station
Dynamic Application Partitioning [IBM]
E-FORM Electronic Form
E-MAIL Electronic Mail
E-TEXT Electronic Text
E-ZINE Electronic Magazine
E: [35]google_ads_frame
EA Effective Address + Extended Attribute [OS/2]
EAI Enterprise Application Integration
EAP Extensible Authentification Protocol
EAR External Access Register
EARN European Academic Research Network
EAROM Electrically Alterable Read Only Memory EARS Electronic Access to
EATA Enhanced AT Bus Attachment
EAX Environmental Audio Extensions [Creative]
EB Exabyte (1,024 petabytes) (One Billion Billion characters of
EBASIC Extended BASIC
EBC EISA Bus Controller
EBCDIC Extended Binary Coded Decimal Interchange Code [IBM]
EBCT Electron Beam Computed Tomography
EBI Equivalent Background Input + Extended Background Investigation
EBNF Extended Backus-Naur Form
EBOOK Electronic Book
EBPP Electric Bill Presentment and Payment
EBR Extended Boot Record
EBT Electronic Benefits Transfer
EC Electronic Commerce + Error Control
ECAL Enjoy Computing And Learn
ECAT Electronic Card Assembly and Test [IBM]
ECB Electronic Codebook + Event Control Block
ECC Elliptic Curve Crypto + Error Check Code + Error Checking and
ECD Enhanced Color Display + Enhanced Compact Disk
ECHO European Commission Host Organization [Internet]
ECI External Call Interface
ECL Emitter Coupled Logic
ECM Electronic Control Module
ECMA European Computer Manufacturers Association
ECN Electronic Communications Network
ECNE Enterprise Certified NetWare Engineer [Novell]
ECP Enhanced/Extended Capabilities Port [Microsoft]
ECS Enhanced Chip Set