-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathafrikaanse-rekenaarterme.txt
11338 lines (11338 loc) · 548 KB
/
afrikaanse-rekenaarterme.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
3D accelleration ====> 3D-versnelling
A-bus ====> A-stamlyn
A-drive ====> A-aandrywer
AC ====> WS wisselstroom
ACK (acknowledge character) ====> EKK erkenkarakter
ADC (analogue-to-digital converter) ====> ASO analoog-na-syferomsetter
ALGOL ====> ALGOL algoritmies georiënteerde taal
ALU (arithmetic and logic unit arithmetic logic unit) ====> RLE; rekenkunde- en logika-eenheid
AM (amplitude modulation) ====> AM; amplitudemodulasie
AND circuit ====> EN-kring
AND element ====> EN-element
AND gate ====> EN-hek
AND operation ====> EN-operasie
AND operator ====> AND-operator / EN-operator
AND operator ====> EN-operateur
AND-NOT gate ====> EN-NIE-hek
ANSI (American National Standards Institute) ====> ANSI (Amerikaanse Nasionale Instituut van Standaarde)
ASCII ====> (American Standard Code for Information Interchange) ====> ASCII (Amerikaanse Standaardkode for Inligtingsoordrag); ASKIV
AVL tree ====> AVL-boom
Ada ====> Ada
Archie ====> Archie (argiefstelsel)
AutoLayout ====> OutoUitleg
BASIC ====> BASIC
BBS (Bullitin Board Service) (Bulletin Board System) ====> BBS (bulletinborddiens; bulletinbordstelsel; kennisgewingdiens)
BCD ====> binêr-gekodeerde desimaal; BKD
BEGIN statement ====> BEGIN-stelling
BPI (bits per inch) ====> BPD; bisse per duim
BSC (binary synchronous communication) ====> binêre sinchrone kommunikasie; BSK
Backus normal form ====> Backus-normaalvorm
Backus-Naur form (BNF) ====> Backus-Naur-vorm; BNF
Baudot code ====> Baudot-kode
Bitnet ====> Bitnet
Boolean ====> Boole- ====> Boolees; Boolese
Boolean ====> Boolese
Boolean algebra ====> Boole-algebra
Boolean calculation ====> Boole-berekening
Boolean complementation ====> Boole-komplementering
Boolean condition ====> Boole-voorwaarde
Boolean connective ====> Boole-operator
Boolean data type ====> Boole-datatipe
Boolean function ====> Boole-funksie
Boolean logic ====> Boole-logika
Boolean matrix ====> Boole-matriks
Boolean operation ====> Boole-operasie
Boolean operation table ====> Boole-operasietabel
Boolean operator ====> Boole-operator
Boolean variable ====> Boole-veranderlike
Bulletin Board System (BBS) ====> bulletinbordstelsel (BBS)
CAD (computer-aided design) ====> ORH; ontwerp met rekenaarhulp; RSO; rekenaargesteunde ontwerp
CAD (computer-aided draughting) ====> RST (rekenaargesteunde tekenwerk); TRH (tekenwerk met rekenaarhulp); RGO (rekenaargesteunde ontwerp); RSO (rekenaargesteunde ontwerp)
CAD/CAM ====> RST/RSV; TRH/VRH
CAE (computer-aided engineering) ====> IRH (ingenieurswerk met rekenaarhulp); RSI (rekenaargesteunde ingenieurswerk); CAE
CAI (computer-assisted instruction) ====> ORH; onderrig met rekenaarhulp; RSO; rekenaargesteunde onderrig
CAL (computer-assisted learning ====> LRH; leer met rekenaarhulp; RSL; rekenaargesteunde leer
CAM (computer-aided manufacturing) ====> RGV (rekenaargesteunde vervaardiging); RSV (rekenaargesteunde vervaardiging); CAM
CAQ (computer-aided quality control) ====> RGG; RGGB (rekenaargesteunde gehaltebeheer)
CAQC (computer-aided quality control) ====> RGG; RGGB (rekenaargesteunde gehaltebeheer)
CASE statement ====> CASE-stelling
CCD (charge-coupled device) ====> LKT (ladinggekoppelde toestel)
CD (compact disk) ====> CD (kompakte skyf)
CD-ROM ====> CD-ROM; CD-LAG; KS-LAG (kompakteskyf-leesalleengeheue)
CD-ROM drive ====> CD-aandrywer; CD-drywer
CE (customer engineer; field engineer) ====> KI (kliëntingenieur)
CERN (Comittee Europeen de Research Nucleaire) ====> CERN
CGI (Common Gateway Interface) ====> CGI (gemeenskaplike portaalkoppelvlak; gemeenskaplike koppelvlak)
CIM (computer-integrated manufacturing system) ====> CIM (rekenaargeïntegreerde vervaardigingstelsel)
CMI (computer-managed instruction) ====> RBO (rekenaarbestuurde onderrig)
CMOS (complementary metal-oxide semiconductor) ====> KMOH (komplementêre metaaloksiedhalfgeleier)
COBOL (common business oriented language) ====> COBOL (algemene besigheidsgeroriënteerde taal)
COM ====> RAM
CPM ====> KPM; kaarte per minuut; kritiekepad-metode
CPS ====> KPS; karakters per sekonde
CPU (central processing unit) ====> SVE (sentrale verwerkingseenheid)
CPU burst ====> SVE-sarsie
CRT ====> KSB; katodestraalbuis
Cartesian coordinates ====> Cartesiese koördinate
Cartesian product ====> Cartesiese produk
Cascading Style Sheets (CSS) ====> trapsgewysestylblad-notasie (CSS); trapsgewyse stylvelle (CSS)
Copy function ====> Copy-funksie
Ctrl (control) ====> Ctrl (control)
DAC ====> SAO
DASD ====> DTST
DB ====> DB; databasis
DBA ====> DBA; databasisadministreerder
DBMS ====> DBBS; databasisbestuurstelsel
DC ====> GS; gelykstroom
DC erasure ====> GS-uitwissing
DC noise ====> GS-ruis
DDL ====> DBT; databeskrywingstaal
DDL ====> DDT; datadefinieertaal
DDP ====> VDV; verspreide dataverwerking
DHCP (Dynamic Host Control Program) ====> DGBP; (Dinamiese Gasheer Beheer Program)
DHTML ====> DHTML (dinamiese HTML)
DMA (data break; direct memory access) ====> DGT; direkte geheuetoegang
DML (data manipulation language) ====> DMT; datamanipuleertaal
DNP (dynamic network protocol) ====> DNP (dinamiesenetwerkprotokol)
DO loop ====> DOEN-lus
DO-WHILE loop ====> DOEN-TERWYL-lus
DOS (denial of service) ====> DoS (diensontsegging)
DOS (disk operating system) ====> SBS (skyfgebaseerde bedryfstelsel)
DOS command ====> DOS-opdrag
DP (data processing) ====> DV; dataverwerking
DPM (data processing manager) ====> DVB; dataverwerkingsbestuurder
DRAM (dynamic random access memory) ====> DLAG; dinamiese leesalleengeheue
DRP (disaster recovery planning) ====> RHP; rampherstelbeplanning
DSL (Digital Subscriber Line) ====> DSL (Digitale Subskripsielyn)
DTP (desktop publication/publishing) ====> TP (tafelpublikasie)
DTP company (desktop publishing company) ====> TP-uitgewery (tafeluitgewery)
Del (delete) ====> Del (delete)
Delete procedure ====> Delete-prosedure
ECC (error-correcting code) ====> FKK (fout-korrigeerkode)
EDP ====> EDV (elektroniese dataverwerking)
EFT (electronic funds transfer) ====> EGO (elektroniese geldoordrag)
EFTS (electronic funds transfer system) ====> EGOS (elektroniese geldoordragstelsel)
EITHER-OR operation ====> OF-OF-operasie
ELSE rule ====> ANDERS-reël
END statement ====> END-stelling
EOM (end-of-message) ====> boodskapeinde; einde-van-boodskap
EOT (end-of-tape) ====> bandeinde; einde-van-band
EOT (end-of-transmission) ====> einde-van-transmissie; transmissie-einde
EPROM (erasable programmable read-only memory) ====> UPLAG (uitwisbare programmeerbare leesalleengeheue)
ETX (end-of-text) ====> einde-van-teks; tekseinde
Eccles-Jordan circuit ====> Eccles-Jordan-kring
Esc (escape) ====> Esc (escape)
Euclidean algorithm ====> Euklidiese algoritme
Euler’s method ====> Euler se metode
FAM (fast access memory) ====> STG; sneltoegangsgeheue; snelgeheue (met kort toegangstyd)
FAQ (Frequently Asked Questions) ====> kwelvrae; neulvrae; (FAQ)
FAX (facsimile) ====> fkas; FAX; faksimilie; faksimilee
FET ====> VET; veldeffektransistor
FFT (fast Fourier transform) ====> VFT; vinnige Fourier-transformasie
FIFO (first in first out) ====> EIEU; eerste-in-eerste-uit
FIFO list (push-up list. push-up stack; tou
FILO (first in; last out). EILU; eerste-in-laaste-uit
FLOPS (floating-point operations per second) ====> WOPS (wisselpuntoperasies per sekonde)
FOR loop ====> FOR-lus
FORTRAN ====> FORTRAN
FSM (finite state machine) ====> ETM (eindigetoestand-masjien)
FSR (finite state recogniser) ====> ETH (eindigetoestand-herkenner)
FTP (File Transfer Protocol) ====> FTP (lêeroordragprotokol); LOP (lêeroordragprotokol)
FYI: (for your information:) ====> ter kennis van
Faraday rotation ====> Faraday-rotasie
Fibonacci search ====> Fibonacci-soektog
Fibonacci sequence ====> Fibonacci-ry
Fibonacci subdivision ====> Fibonacci-onderverdeling
GCR (group-coded recording) ====> GKR; (groepgekodeerde-registrering)
GIGO (garbage in; garbage out) ====> SISU (snert-in-snert-uit)
Gantt chart ====> Gantt-diagram
GiB ====> GiB
Gibson mix ====> Gibson-mengsel
Gopher ====> Gopher
Gray code ====> Gray-kode
HIPO (hierarchical input process output) ====> HIPO (hiërargiese toevoer-proses-afvoer)
HLDLC (high-level data link control) ====> HVDVK (hoëvlak-dataverbindingskontrole)
HTML (Hyper Text Markup Language) ====> HTML (Hiperteks-markeertaal)
HTML-tag; HTML-plaatjie ====> HTML-merker; HTML-grepie
HTTP (Hyper Text Transfer Protocol) ====> HTTP (Hiperteks-oordragprotokol)
Hamming code ====> Hamming-kode
Hamming distance ====> Hamming-afstand
Hollerith card ====> Hollerith-kaart
Hollerith code ====> Hollerith-kode
Human Computer Interaction (HCI) ====> Mens-rekenaar interaksie (MRI)
I/0 (input/output) ====> T/A; toevoer/afvoer
I/0 equipment ====> T/A-toerusting
I/0 unit ====> T/A-eenheid
IC (integrated circuit) ====> IK (geïntegreerde kring)
ICT concept (initialise; change and test) ====> IVT-beginsel (inisialiseer; verander en toets)
IF statement ====> AS-stelling
IF statement ====> IF-stelling
IF-AND-ONLY-IF (IFF) ====> AS-EN-SLEGS-AS (ASS)
IF-THEN operation ====> AS-DAN-operasie
IF-THEN-ELSE ====> AS-DAN-ANDERS
IFF (IF-AND-ONLY-IF) ====> ASS (AS-EN-SLEGS-AS)
IN operator ====> IN-operator
IOCS (input/output control system) ====> TABS; toevoer/afvoer-beheerstelsel
IP-number ====> T/A-eenheid
IPL ====> APL; aanvangsprogram-laai; IPL; inisiëleprogram-laai
IPO (input processing output) ====> TVA (toevoer verwerking afvoer)
IPO table ====> TVA-tabel
ISAM (indexed sequential access method) ====> ISTM; geïndekseerde sekwensiële toegangsmetode; indeks-sekwensiële toegangsmetode
ISO (International Standards Organisation) ====> ISO; Internasionale Standaarde-Organisasie)
ISO seven-layer reference model ====> ISO-sewelaagverwysingsmodel
ISP (internet service provider) ====> ISP (internetdiensverskaffer); IDV
ITC concept (initialise; test and change) ====> ITV-beginsel (inisialiseer; toets en verander)
Identification character ====> identifiseerkarakter
Insert procedure ====> Insert-prosedure
Integrated Development Environment (IDE) ====> Geïntegreerde ontwikkelingsomgewing (GOO)
International Standards Organisation (ISO) ====> Internasionale Standaarde-Organisasie (ISO)
Internet ====> Internet; internet
Internet account ====> Internetrekening
Internet cloud ====> Internetwolk
JCL (job control language) ====> WBT; werkstukbeheertaal
Java script ====> Java teks; Java skrif
Javascript ====> Javascript
Josephson junction ====> Josephson-sperlaag
KSR (keyboard send/receive) ====> SSO; sleutelbord-stuur/ontvang
Karnaugh map ====> Karnaugh-diagram
LAN (local area network) ====> LAN; (lokalearea-netwerk; plaaslike netwerk)
LCD (liquid crystal display) ====> VKV (vloeistofkristalvertoon}
LED (light-emitting diode) ====> LED (ligemissiediode)
LIFO (last in; first out) ====> LIEU (laaste-in-eerste-uit)
LIFO list (push-down list; push-down stack; stack) ====> stapel (‘n laaste-in-eerste-uit-organisasie)
LILO (last in; last out) ====> LILU (laaste-in-laaste-uit)
LOGO ====> LOGO
LP (linear programming) ====> LP (lineêre programmering)
LR grammar ====> LR-grammatika
LRC (longitudinal redundancy check) ====> LOT (longitudinale oorbodigheidstoets)
LSI (large scale integration) ====> GSI (grootskaalse integrasie)
Length function ====> Length-funksie
Linux ====> Linux
MB (megabytes) ====> MG (megagrepe)
MICR (magnetic ink character recognition) ====> MIKH (magnetieseink-karakterherkenning)
MIPS (million instructions per second) ====> MIPS (miljoen instruksies per sekonde)
MIS (management information system) ====> BIS (bestuursinligtingstelsel)
MOS (metal-oxide semiconductor) ====> MOH (metaaloksied-halfgeleier)
MPU (microprocessing unit) ====> MVE; mikroverwerkingseenheid
MSI (medium scale integration) ====> MSI; mediumskaalintegrasie
MTBE (mean time between errors ====> MTBF; mean time between failures); GFT (gemiddelde falingsvrye tyd)
MTBF (mean time between failures ====> MTBE; mean time between errors); GFT (gemiddelde falingsvrye tyd)
MTTR (mean time to repair; mean repair time) ====> GHT (gemiddelde hersteltyd)
Monte Carlo method ====> Monte Carlo-metode
Monte Carlo technique ====> Monte Carlo-tegniek
NACK (negative acknowledge character; NAK) ====> OKK; ontkenkarakter
NAK (NACK; negative acknowledge character) ====> OKK; ontkenkarakter
NAND circuit ====> NEN-kring (by logikakringe)
NAND element ====> NEN-element (by logikakringe)
NAND gate (AND-NOT gate; except gate; inhibit gate) ====> EN-NIE-hek; inhibeerhek; NEN-hek; uitsluitende-OF-hek (by logikakringe)
NAND operation ====> NEN-operasie (by logikakringe)
NEITHER-NOR operation ====> NÒG-NÒG-operasie
NOR (NOT-OR) ====> NIE-OF; NOF
NOR circuit ====> NOF-kring (in logikakringe)
NOR element ====> NOF-element (in logikakringe)
NOR operation ====> NOF-operasie (in logikakringe)
NOR operator ====> NOF-operator (in logikakringe)
NOT circuit ====> NIE-kring
NOT element ====> NIE-element
NOT gate ====> NIE-hek
NOT operation ====> NIE-operasie
NOT operator ====> NIE-operator
NOT operator ====> NOT-operator / NIE-operator
NOT-AND element ====> NIE-EN-element
NOT-AND operation ====> NIE-EN-operasie
NOT-IF-THEN operation ====> NIE-AS-DAN-operasie
NOT-OR (NOR) ====> NIE-OF; NOF
NOT-OR operation ====> NIE-OF-operasie
NP-complete ====> NP-volledig
NP-hard ====> NP-hard
NRZ (non-return-to-zero; non-return-to-reference) ====> NTN; nie-terug-na-nul
NRZI (non-return-to-zero-on-invert) ====> NTNO; nie-terug-na-nul-by-omkering
Newton-Raphson process ====> Newton-Raphson-proses
O and M (organisation and method study) ====> O-en-M; organisasie-en-metodestudie
OA (office automation) ====> KO; kantooroutomatisasie
OCR (optical character recognition) ====> OKH; optiese karakterherkenning
OEM (original equipment manufacturer) ====> OTV; oorspronklike toerustingvervaardiger
OIS (office information system) ====> KIS; kantoorinligtingstelsel
OR (operations research; operations analysis) ====> ON; operasionele navorsing
OR circuit ====> OF-kring
OR element ====> OF-element
OR gate ====> OF-hek
OR operation ====> OF-operasie
OR operator ====> OF-operator
OR operator ====> OR-operator / OF-operator
OROM (optical read-only memory) ====> OLAG; optiese leesalleengeheue
OSA (open systems architecture) ====> OSA; oopstelselargitektuur (‘n spesifieke netwerkmodel)
OSI (open systems interconnection) ====> OIV; oopstelselinterverbinding
Object Orientated Programming (OOP) ====> Object-georiënteerde programmering (OGP)
PABX (private automatic branch exchange) ====> POTS; private outomatiese taksentrale
PC (personal computer) ====> PR; persoonlike rekenaar
PCM (plug-compatible manufacturer) ====> PV; propversoenbare vervaardiger
PCM (pulse-code modulation) ====> PKM; pulskodemodulasie (bv. by datakommunikasie)
PDA (push-down automaton) ====> ADO; afdrukoutomaat
PE (phase-encoded) ====> FE; fasegeënkodeer (by registrering op magnetiese band)
PERT (program evaluation and review technique) ====> PERT (programevaluasie en -revisietegniek)
PI/l ====> Pl/l (‘n programmeertaal)
POS (point. of sale) ====> VP (verkoopspunt)
PROM (programmable read-only memory) ====> PLAG; programmeerbare leesalleengeheue
PSN (packet-switching network) ====> PSN; pakkieskakelingsnetwerk
Pascal ====> Pascal (‘n programmeertaal)
Petri net ====> Petri-net (‘n grafiese model van ‘n stelsel)
Polish notation (prefix notation) ====> Poolse notasie; prefiksnotasie; voorvoegnotasie
Polish string ====> Pooise string
Pos function ====> Pos-funksie
R&D (research and development.) ====> N&O; navorsing en ontwikkeling
RAM (arbitrary access memory; random access memory) ====> ETG; ewetoeganklike geheue (toegangstyd oral dieselfde)
REPEAT loop ====> REPEAT-lus
RJE (remote job entry) ====> AWI; afstandswerkstukinvoer
ROM (non-erasable memory; read-only memory) ====> LAG; leesalleengeheue
SAM (sequential access method) ====> STM (sekwensiëletoegangsmetode)
SLSI (super large scale integration) ====> SGSI; supergrootskaalse integrasie
SOP (standard operating procedure) ====> SWP; standaardwerksprosedure
SQL query ====> SQL-navraag
SSI (small scale integration) ====> KSI; kleinskaalse integrasie
Schmidt trigger ====> Schmidt-sneller HOE WORD “SCHMIDT” GESPEL?
Schottky diode ====> Schottky-diode
Self-relocating program ====> selfverplasende program
Sheffer stroke operation ====> Sheffer-operasie
Shellsort ====> skilsortering
Simpson’s rule ====> Simpson se reel
TPS ====> TVS; transaksieverwerkingstelsel
Tab order ====> Tab-volgorde
Turing machine ====> Turing-masjien
UPS ====> OKT; onderbrekinglose kragtoevoer
VAL procedure ====> VAL-prosedure
VAR parameter ====> VAR-parameter
VDU (display unit; visual display unit) ====> vertooneenheid
VLSI ====> BGSI; baiegrootskaalse integraaie
VRC (vertical redundancy checking) ====> VOT (vertikale-oortolligheidstoetsing)
Veitch diagram ====> Veitch-diagram
Venn diagram ====> Venn-diagram
Von Neumann machine ====> Von Neumann-masjien
WAN (wide-area network) ====> WAN; wye-areanetwerk
WBS ====> TVS; taakverdelingstruktuur
WFF ====> welgevormde formule; WVF
WHILE loop ====> TERWYL-lus
WHILE loop ====> WHILE-lus
WP (word processing) ====> WV (woordverwerking)
Wheatstone bridge ====> Wheatstone-brug
Williams cathode ray tube ====> Williams-katodestraalbuis
Winchester technology disk ====> Winchester-tegnologieskyf
X axis ====> X-as
X coordinate ====> X-koördinaat
X height ====> X-hoogte
X punch ====> X-pons
X-Y plotter ====> X-Y-stipper
Y axis ====> Y-as
Y coordinate ====> Y-koördinaat
Young’s modulus ====> Young se modulus
Z axis ====> Z-as
Z coordinate ====> Z-koördinaat
abacus ====> abakus
abandon ====> afgooi
abbreviated address ====> afgekorte adres
abbreviated address call ====> afgekorte adresroep
abbreviated addressing ====> afgekorte adressering
abend ====> abnormale beëindiging
abnormal end ====> abnormale beëindiging
abnormal termination ====> abnormale beëindiging
abort ====> staak
abortive run ====> mislukte lopie
abscissa ====> absis
absolute accuracy ====> absolute noukeurigheid
absolute address ====> absolute adres
absolute addressing ====> absolute adressering
absolute assembler ====> absolute saamsteller
absolute code ====> absolute kode
absolute coding ====> absolute kodering
absolute command ====> absolute bevel
absolute coordinate ====> absolute koördinaat
absolute data ====> absolute data
absolute error ====> absolute fout
absolute error bound ====> absoluut foutbegrens
absolute expression ====> absolute uitdrukking
absolute instruction ====> absolute instruksie
absolute language ====> absolute taal
absolute loader ====> absolute laaier
absolute program ====> absolute program
absolute programming ====> absolute programmering
absolute system ====> absolute stelsel
absolute value ====> absolute waarde
absolute value representation ====> absolutewaarde-voorstelling
absolute vector ====> absolute vektor
absolute zero ====> absolute zero
abstract (n) ====> abstrak
abstract (v) ====> abstraheer
abstract algebra ====> abstrakte algebra
abstract computer ====> abstrakte rekenaar
abstract data type ====> abstrakte datatipe
abstract family of languages ====> abstrakte taalfamilie
abstract interface ====> abstrakte koppelvlak
abstract machine ====> abstrakte masjien
abstract symbol ====> abstrakte simbool
abstract syntax ====> abstrakte sintaksis
abstract theory ====> abstrakte teorie
abstraction ====> abstrahering
abstraction operation ====> abstraheringsoperasie
accelerated ageing ====> versnelde veroudering
accelerated-life testing ====> versnelde lewensduur-toetsing
acceleration error ====> versnellingsfout
acceleration time ====> versnellingstyd
accelerator key ====> snelsleutel
accelerator key ====> snelsleutel
accept state ====> aanvaartoestand
acceptable class of binary trees ====> aanvaarbare klas van binêre bome
acceptable quality level ====> aanvaarbare gehaltevlak
acceptance test ====> aanvaardingstoets
accepted sequence ====> aanvaarde volgorde
accepting station ====> ontvangende stasie
acceptor ====> ontvanger
access ====> toegang
access arm ====> toegangsarm
access authority ====> toegangsmagtiging
access code ====> toegangskode
access constraint ====> toegangsbeperking
access control word ====> toegangsbeheerwoord
access cycle ====> toegangsiklus
access environment ====> toegangsomgewing
access frequency loading ====> laai volgens toegangsfrekwensie
access function ====> toegangsfunksie
access key ====> toegangsleutel
access latency ====> toegangslatensie
access line ====> toegangslyn
access mechanism ====> toegangsmeganisme
access method ====> toegangsmetode
access mode ====> toegangsmodus
access parameter ====> toegangsparameter
access path ====> toegangsroete
access permission ====> toegangstoestemming
access port ====> toegangspoort
access property ====> toegangseienskap
access provider ====> toegangsverskaffer
access restriction ====> toegangsbeperking
access right ====> toegangsreg
access strategy ====> toegangstrategie
access table ====> toegangstabel
access time ====> toegangstyd
access vector ====> toegangsvektor
accessible state ====> toeganklike toestand
accessory ====> bykomstigheid; byprogram; hulpprogram
accompanying count ====> meegaande telling
account file ====> rekeninglêer
account number ====> rekeningnommer
accountability ====> aanspreeklikheid
accountable time ====> toerekenbare tyd
accumulate ====> akkumuleer
accumulated error ====> geakkumuleerde fout
accumulative error ====> akkumulatiewe fout
accumulator ====> akkumulator
accumulator register ====> akkumulator
accuracy check ====> akkuraatheidskontrole
accuracy control character ====> akkuraatheidskontrolekarakter
accurate optimisation ====> akkurate optimering
acknowledge character (ACK) ====> erkenkarakter; EKK
acknowledge signal ====> erkensein
acknowledgement ====> erkenning
acoustic channel ====> akoestiese kanaal
acoustic coupler ====> akoestiese koppelstuk
acoustic coupling ====> akoestiese koppeling
acoustic delay line ====> akoestiese vertraaglyn
acoustic device ====> akoestiese toestel
acoustic modem ====> akoestiese modem
acoustic storage ====> akoestiese stoor
act ====> tree op; optree
action code ====> aksiekode
action cycle ====> aksiesiklus
action entry ====> aksie-inskrywing
action key ====> aksiesleutel
action line ====> aksielyn
action message ====> aksieboodskap
action paper ====> deurslagpapier
action specification ====> aksiespesifikasie
action stub ====> aksielys
action symbol ====> aksiesimbool
activate ====> aktiveer
activate button ====> aktiveerknop
activation record ====> aktiveringsrekord
active circuit ====> aktiewe kring
active drive ====> aktiewe skyf
active element ====> aktiewe element
active file ====> aktiewe lêer
active icon ====> aktiewe ikoon
active job ====> aktiewe werkstuk
active line ====> aktiewe lyn
active matrix ====> aktiewe matriks
active node ====> aktiewe nodus
active page ====> aktiewe bladsy
active program ====> aktiewe program
active record ====> aktiewe rekord
active station ====> aktiewe stasie
active window ====> aktiewe venster
activity file ====> aktiwiteitslêer
activity level ====> aktiwiteitsvlak
activity loading ====> aktiwiteitslaai
activity ratio ====> aktiwiteitsverhouding
activity sequence ====> aktiwiteitsekwensie
actual address ====> absolute adres
actual code ====> absolute kode
actual decimal comma ====> werklike desimale komma
actual decimal point ====> werklike desimale punt
actual instruction ====> werklike instruksie
actual key ====> werklike sleutel
actual memory ====> werklike geheue
actual parameter ====> werklike parameter
actual state ====> werklike toestand
actual value ====> werklike waarde
actuate ====> in werking stel
acute ====> akuut
acyclic graph ====> asikliese grafiek
adaptable software ====> aanpasbare sagteware
adaptation of software ====> aanpassing van sagteware
adapter ====> passtuk
adapter card ====> aansluitkaart
adaptive channel allocation ====> aanpassende kanaaltoekenning
adaptive control ====> aanpassende beheer
adaptive system ====> aanpassende stelsel
add / subtract time ====> optel / aftrek-tyd
add ====> byvoeg
add carry ====> opteloordrag
add file ====> byvoegingslêer
add operation ====> byvoegbewerking
add time ====> opteltyd
add-inn ====> invoegsel
add-on ====> byvoegsel
add-on memory ====> byvoeggeheue
addend ====> opteller
addendum ====> addendum
adder / subtracter ====> opteller/aftrekker
adder ====> opteller
adder circuit ====> optelkring
adding machine ====> optelmasjien
addition ====> byvoeging
addition record ====> aanvulrekord
addition table ====> opteltabel
addition time ====> opteltyd
addition without carry ====> optelling sonder oordrag
additional character ====> addisionele karakter
additional equipment ====> addisionele toerusting
address ====> adres
address algorithm ====> adresalgoritme
address assignment ====> adrestoewysing
address book ====> adresboek
address bus ====> adresstamlyn
address calculation ====> adresberekening
address call ====> adresroep
address code ====> adreskode
address comparator ====> adresvergelyker
address compirtation ====> adresberekening
address constant ====> adreskonstante
address conversion ====> adresomsetting
address decoder ====> adresdekodeerder
address error ====> adresfout
address field ====> adresveld
address file ====> adreslêer
address format ====> adresformaat
address generation ====> adresgenerering
address key ====> adressleutel
address map ====> adrestabel
address mapping ====> adresafbeelding
address mark ====> adresmerk
address modification ====> adreswysiging
address part ====> adresgedeelte
address protection ====> adresbeskerming
address range ====> adresgebied
address reference ====> adresverwysing
address register ====> adresregister
address search ====> adressoektog
address selection ====> adresseleksie
address selection switch ====> adresseleksieskakelaar
address space ====> adresruimte
address substitution ====> adressubstitusie
address table ====> adrestabel
address track ====> adresbaan
address transfer ====> adresoordrag
address transformation ====> adrestransformasie
address translation ====> adresvertaling
address vector ====> adresvektor
address word ====> adreswoord
addressability ====> adresseerbaarheid
addressability measure ====> adresseerbaarheidmaatstaf
addressable ====> adresseerbaar
addressable cursor ====> adresseerbare merker
addressable location ====> adresseerbare posisie
addressable memory ====> adresseerbare geheue
addressable point ====> adresseerbare punt
addressable position ====> adresseerbare punt
addressable space ====> adresseerbare ruimte
addressed memory ====> geadresseerde geheue
addressed storage ====> geadresseerde stoor
addressee ====> geadresseerde
addressing character ====> adresseerkarakter
addressing function ====> adresseerfunksie
addressing level ====> adresseervlak
addressing machine ====> adresseermasjien
addressing mode ====> adresseermodus
addressing scheme ====> adresseerskema
addressless ====> adresloos
addressless instruction ====> adreslose instruksie
adhesion ====> klewing
adjacency ====> aanliggendheid
adjacency list ====> noduslys
adjacency matrix ====> nodusinatriks
adjacency structure ====> noduslys
adjacent ====> aanliggend
adjacent channel ====> aanliggende kanaal
adjacent node ====> aanliggende nodus
adjunct ====> adjunk
adjunction ====> adjunksie
adjust ====> verstel
administrative data processing ====> administratiewe dataverwerking
admissible character ====> toelaatbare karakter
admissible error ====> toelaatbare fout
admissible mark ====> toelaatbare merk
admissible operation ====> toelaatbare bewerking
admissible value ====> toelaatbare waarde
advance selector ====> vooruitselektor
advance-feed tape ====> vooruitvoerband
advanced ====> gevorderd
advancing ====> aanskuiwing
advice language ====> leidraadtaal
after-image ====> nabeeld
afterglow ====> nagloed
aggregate expression ====> aggregaatuitdrukking
aid ====> steun
aided ====> gesteun
aiming circle ====> miksimbool
aiming field ====> miksimbool
aiming symbol ====> miksimbool
air cushion ====> lugkussing
air gap ====> luggaping
alert ====> waarskuwing
alerting signal ====> aandagtreksein
algebraic adder ====> algebraîese opteller
algebraic language ====> algebraîese taal
algebraic manipulation ====> algebraîese manipulasie
algebraic modiflcation ====> algebraîese modifikasie
algebraic semantics ====> algebraîese semantiek
algebraic structure ====> algebraîese struktuur
algebraic transformation ====> algebraîese transformasie
algorithm ====> algoritme
algorithm ====> algoritme
algorithmic ====> algoritmies
algorithmic character ====> algoritmiese karakter
algorithmic notation ====> algoritmiese notasie
algorithniic language ====> algoritmiese taal
alias ====> alias
alias ====> alias; kennaam; pennaam
alias ban ====> aliasverbod
aliasing ====> aliasering
alien device ====> vreemde toestel
align ====> in lyn stel
align ====> instel
alignment ====> instelling
all-channel decoder ====> alkanaaldekodeerder
all-purpose computer ====> aldoelrekenaar
allocatable ====> toekenbaar
allocatable space ====> toekenbare ruimte
allocate ====> toeken ====> toewys
allocation algorithm ====> toekenningsalgoritme
allocation plan ====> toekenningsplan
allocation process ====> toekenningsproses
allocation routine ====> toekenningsroetine
allocator ====> allokeerder; toekenner
allowable character ====> toelaatbare karakter
allowable error ====> toelaatbare fout
allowable mark ====> toelaatbare merk
allowable operation ====> toelaatbare bewerking
allowable value ====> toelaatbare waarde
alloy ====> legering
alphabetic character set ====> alfabetiese karakterstel
alphabetic code ====> alfabetiese kode
alphabetic data ====> alfabetiese data
alphabetic field ====> alfabetiese veld
alphabetic listing ====> alfabetiese lys
alphabetic order ====> alfabetiese volgorde
alphabetic sequence ====> alfabetiese volgorde
alphabetic shift ====> alfabetiese wissel
alphabetic string ====> alfabetiese string
alphabetic word ====> alfabetiese woord
alphageometrics ====> alfageometrika
alphameric ====> alfanumeries
alphamosaic ====> alfamosaïek
alphanumeric ====> alfanumeries
alphanumeric character ====> alfanumeriese karakter
alphanumeric character set ====> alfanumeriese karakterstel
alphanumeric code ====> alfanumeriese kode
alphanumeric data ====> alfanumeriese data
alphanumeric expression ====> alfanumeriese uitdrukking
alphanumeric field ====> alfanumeriese veld
alphanumeric keyboard ====> alfanumeriese sleutelbord
alphanumeric representation ====> alfanumeriese voorstelling
alphanumeric word ====> alfanumeriese woord
alphanunieric string ====> alfanumeriese string
alter mode ====> wysigmodus
alterable memory ====> veranderbare geheue
alteration switch ====> wysigingskakelaar
alternate area ====> alternatiewe area
alternate buffering ====> alternatiewe bufferwerking
alternate route ====> alternatiewe roete
alternate routing ====> alternatiewe roetering
alternate track ====> alternatiewe baan
alternate unit ====> alternatiewe eenheid
alternating current (AC) ====> wisselstroom (WS)
alternatives box ====> beslissingshokkie
alternator ====> wisselaar
ambient noise ====> omgewingsruis
ambient temperature ====> omgewingstemperatuur
ambiguity error ====> dubbelsinnigheidsfout
ambiguous grammar ====> dubbelsinnige grammatika
ambiguous reference ====> dubbelsinnige verwysing
amendment file ====> veranderingslêer
amendment record ====> veranderingsrekord
amendment tape ====> veranderingsband
amorphous memory ====> amorfe geheue
amount field ====> bedragveld
ampersand ====> ampersand
amplification ====> versterking
amplitude ====> amplitude
amplitude modulation (AM) ====> amplitudemodulasie; AM
analog ====> analoog
analogue ====> analoog
analogue adder ====> analoogopteller
analogue channel ====> analoogkanaal
analogue comparator ====> analoogvergelyker
analogue computer ====> analoogrekenaar
analogue data ====> analoogdata
analogue device ====> analoogtoestel
analogue display ====> analoog vertoon
analogue display ====> analoogbeeld
analogue divider ====> analoogverdeler
analogue multiplier ====> analoogvermenigvuldiger
analogue recording ====> analoogregistrering
analogue representation ====> analoogvoorstelling
analogue signal ====> analoogsein
analogue subtracter ====> analoogaftrekker
analogue-to-digital converter (ADC) ====> analoog-na-syferomsetter (ASO)
analogy ====> analogie
analyse ====> analiseer
analyser ====> analiseerder
analysis ====> analise
analysis approach ====> ontledingsbenadering
analysis technique ====> ontledingstegniek
analyst ====> analis
analytical ====> analities
analytical function generator ====> analitiesefunksie-generator
analytical model ====> analitiese model
ancestor node ====> voorsaatnodus
ancestor process ====> voorsaatproses
ancestor set ====> voorsaatversameling
ancestral task ====> voorsaattaak
anchorage ====> klewing
anchoring ====> verankering
ancillary ====> hulp
ancillary equipment ====> hulptoerusting
anhysteresis ====> anhisterese
animate ====> animeer
animation ====> animasie
anisochronous transmission ====> anisochrone transmissie
annex memory ====> buffergeheue
annihilator ====> vernietiger
annotated program ====> geannoteerde program
annotation ====> annotasie
anonymity ====> anonimiteit
answer delay ====> antwoordvertraging
answer mode ====> antwoordmodus
answerback ====> terugantwoord
answerback memory ====> terugantwoordgeheue
answering time ====> antwoordtyd
anti-virus software ====> antivirusprogram; viruswering
app (smartphone or tablet) ====> toep (slimfoon of tablet)
app ====> toepassing
applet ====> miniprogram
application ====> toepassing
apply ====> aanwend; toepas
archive ====> argief; argiveer
arj ====> arj (kompressieformaat)
arrange ====> rangskik
array ====> skikking
article ====> artikel
assembler ====> saamstellerprogram; samesteller
assembly language ====> saamsteltaal
assignment operator := ====> toekenningsteken :=
asterisk ====> (*) asterisk; sterretjie (*)
at ====> (@) aapstert
attach ====> aanheg; aanhak; koppel
attached ====> aangeheg
attachment ====> aanhegsel; aanhangsel; abbalêer
attribute ====> eienskap; kenmerk; attribuut
authenticate ====> geldigheid vasstel; geldigheid verklaar
authentication ====> geldigheidsvasstelling
authorisation ====> magtiging
authorise ====> magtig
authorised ====> gemagtig
auto-reliable ====> outobetroubaar
autodetect ====> outospeur; selfspeur
autoload ====> outolaai
autologin ====> outolaai
automatic detection ====> outomatiese bespeuring; outospeur
automatic detection ====> outomatiese bespeuring; outospeur
automount ====> outoheg; outohegting
autoreliable ====> outobetroubaar
avatar ====> avatar; inkarnasie
average access time ====> gemiddelde toegangstyd
average edge line ====> gemiddelde randlyn
average information rate ====> gemiddeldeinligtingstempo
average speed ====> gemiddelde spoed
average transmission time ====> gemiddelde transmissietyd
average velocity ====> gemiddelde snelheid
avitar ====> avatar; inkarnasie
awaiting repair time ====> herstelafwagtyd
awake ====> aktiveer
awake process ====> geaktiveerde proses
axiom ====> aksioom
axiomatic ====> aksiomaties
axiomatic semantics ====> aksiomatiese semantiek
axiomatic theory ====> aksiomatiese teorie
axis ====> as
azerty keyboard ====> azerty-sleutelbord
azimuth ====> asimut
azimuth alignment ====> asimutinstelling
babble ====> babbel
back ====> rugkant
back arc ====> terugwaartse boog
back button ====> terugknoppie
back edge ====> terugwaartse skakel
back solution ====> terugwaartse oplossing
back up ====> rugsteun
back-end processor ====> naverwerker
back-ending ====> naverwerking
back-to-back ====> rug-aan-rug
back-to-back system ====> rug-aan-rugstelsel
back-up file ====> rugsteunlêer
back-up level ====> rugsteunvlak
back-up memory ====> rugsteungeheue
back-up system ====> rugsteunstelsel
backbone ====> ruggraat; gemeenskaplike dienskanaal
backchannel ====> padlangs gesels; agterlangs gesels; agterlangs; kortpad; padlangs; direk; agterdeur; in die agterkanaal
background ====> agtergrond
background colour ====> agtergrondkleur
background ink ====> agtergrondink
background item ====> agtergronditem
background job ====> agtergrondwerkstuk
background noise ====> agtergrondruis
background partition ====> agtergrondpartisie
background printing ====> agtergronddrukwerk
background processing ====> agtergrondverwerking
background program ====> agtergrondprogram
background reflectance ====> agtergrondreflektansie
background task ====> agtergrondtaak
backgrounding ====> agtergrondverwerking
backing ====> ruglaag
backing storage ====> hulpstoor
backlog ====> agterstand
backout ====> wysigingsonttrekking
backplane ====> moederpaneel
backslash ====> agtentoeskuinsstrepie; agteroor skuinsstreep; terug-skuinsstrepie; tru-skuinsstreep
backspace ====> terugspasieer
backspace character ====> terugspasieerkarakter
backspacing ====> terugspasiëring
backthread ====> terugryg
backtrack ====> terugspoor
backtrack programming ====> terugspoorprogrammering
backup ====> rugsteun; rugsteuning; dek
backward channel ====> terugwaartse kanaal
backward error correction ====> terugwaartse foutkorreksie
backward moderated ====> ná gemodereer; terug gemodereer
backward pointer ====> terugwaartse wyser
backward supervision ====> terugwaartse toesig
backwards recursion ====> terugwaartse rekursie
bad spot ====> swak kol
badge reader ====> kentekenleser
balance error ====> balanseerfout
balanced circuit ====> gebalanseerde kring
balanced error ====> gebalanseerde fout
balanced line ====> gebalanseerde lyn
balanced merge sort ====> gebalanseerde saamvlegsortering
balanced network ====> gebalanseerde netwerk
balanced system ====> gebalanseerde stelsel
balanced tree ====> gebalanseerde boom
balanced tree search ====> gebalanseerdeboom-soektog
balanced workload ====> gebalanseerde werkslading
balancing error ====> balanseringsfout
bandwidth ====> bandwydte; bandbreedte; streepwydte
bank automation ====> bankoutomatisasie
bank switching ====> geheuebankskakeling
banner ====> banier
banner word ====> eerste woord
bar ====> staaf ====> balk
bar code ====> strepiekode
bar code reader ====> strepiekodeleser
bar code scanner ====> strepiekode-aftaster
bar printer ====> staafdrukker
barrel connector ====> klinkbusverbinder
barrel printer ====> dromdrukker
base address ====> basisadres
base address register ====> basisadresregister
base element ====> basiselement
base film ====> ruglaag
base item ====> basisitem
base location ====> basisposisie
base notation ====> basisnotasie
base number ====> basisgetal
base plate ====> basisplaat
base register ====> basisregister
base-pair register ====> gepaarde basisregister
base-relative adressing ====> basisrelatiewe adressering
base-two arithmetic ====> binêre rekenkunde
baseband ====> basisband
baseband network ====> basisbandnetwerk
baseband signal ====> basisbandsein
baseline ====> basislyn
baseline document ====> basislyndokument
basic code ====> absolute kode
basic element ====> basiese element
basic hardware ====> basiese hardeware
basic instruction ====> basiese instruksie
batch ====> bondel
batch adding ====> bondeloptelling
batch command ====> bondelopdrag
batch compilation ====> bondelsamestelling
batch file ====> bondellêer
batch job ====> bondelwerkstuk
batch mode ====> bondelmodus
batch number ====> bondelnommer
batch partition ====> bondelpartisie
batch processing ====> bondelverwerking
batch processing system ====> bondelverwerkingstelsel
batch program ====> bondelprogram
batch run ====> bondellopie
batch session ====> bondelsessie
batch terminal ====> bondelterminaal
batch total ====> bondeltotaal
batched communication ====> gebondelde kommunikasie
batched job ====> gebondelde werkstuk
batched loading ====> gebondelde laaiing
batching ====> saambondeling
battery life ====> batterylewe; batterylewensduur
baud ====> baud
baud rate ====> baudtempo
bead ====> kraal
beam ====> bundel
beam deflection ====> straaldefleksie
beam position ====> bundelposisie
beam storage ====> straalstoor
beat frequency ====> swewingsfrekwensie
beeper ====> roeper
beginning-of-file mark ====> lêerbeginmerk
beginning-of-tape mark ====> bandbeginmerk
behaviour table ====> gedragstabel
bell character ====> klokluikarakter
bells and whistles ====> foefies en blinkers; foefies en flikkers
benchmark ====> normtoets; norm
benchmark problem ====> normtoetsprobleem
benchmark test ====> normtoets
benchmarking ====> normtoetsing
best fit ====> beste passing
beta ====> beta; b-uitgawe
beta tester ====> betatoetser; toetsbestuurder; betaspeler
bias-induced noise ====> voorspanningsruis
biased data ====> sydige data
biaxial ====> biaksiaal
biaxial magnetic element ====> biaksiale magnetiese element
biconnected graph ====> dubbelsamehangende grafiek
bidirectional ====> tweerigting
bidirectional bus ====> tweerigtingstamlyn
bidirectional flow ====> tweerigtingvloei
bidirectional printer ====> tweerigtingdrukker
bidirectional printing ====> tweerigtingdrukwerk
bidirectionally linked list ====> tweerigtingaaneengeskakelde lys
bifurcation ====> tweedeling
big-bang testing ====> alles-meteenstoetsing
billing system ====> faktureringstelsel
bimetal ====> bimetaal
bin ====> balie
bin sort ====> baliesortering
binary ====> binêr; binêre; binêre lêer; diadies; grafika; prent; tweetallig
binary adder ====> binêre opteller
binary arithmetic ====> binêre rekenkunde
binary arithmetic operation ====> binêre rekenkundige operasie
binary calculation ====> binêre berekening
binary cell ====> binêre sel
binary character ====> binêre karakter
binary chop ====> binêre soektog; halveringsoektog
binary code ====> binêre kode
binary coding ====> binêre kodering
binary conversion ====> binêre omsetting
binary data ====> binêre data
binary decision ====> binêre besluit
binary digit ====> binêre syfer; bis
binary digital computer ====> binêre syfer rekenaar
binary dump ====> binêre storting
binary element ====> binêre element.
binary format ====> binêre formaat
binary half-adder ====> binêre halfopteller
binary incremental representation ====> binêre inkrementele voorstelling
binary integer operation ====> binêre heelgetaloperasie
binary logic ====> binêre logika
binary mode ====> binêre modus
binary notation ====> binêre notasie
binary number ====> binêre getal
binary number system ====> binêre getallestelsel
binary numeral ====> binêre syfer; bis
binary operation ====> binêre operasie
binary operator ====> binêre operator
binary pair ====> binêre paar
binary point ====> binêre punt
binary program ====> binêre program
binary punch ====> binêre pons
binary real operation ====> binêre reëelgetaloperasie
binary relation ====> binêre relasie
binary representation ====> binêre voorstelling
binary row ====> binêre ry
binary scale ====> binêre skaal
binary search ====> binêre soektog; halveringsoektog
binary search method ====> binêre soekmetode
binary search tree ====> binêre soekboom
binary signal conditioner ====> binêre-sein kondisioneerder
binary state ====> binêre toestand
binary synchronous communication (BSC) ====> binêre sinchrone kommunikasie; BSK
binary synchronous transmission ====> binêre sinchrone transmissie
binary system ====> binêre stelsel
binary tree ====> binêre boom