Dictionary of Computer Science, Engineering and Technology
eBook - ePub

Dictionary of Computer Science, Engineering and Technology

  1. 560 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

Dictionary of Computer Science, Engineering and Technology

Book details
Book preview
Table of contents
Citations

About This Book

A complete lexicon of technical information, the Dictionary of Computer Science, Engineering, and Technology provides workable definitions, practical information, and enhances general computer science and engineering literacy. It spans various disciplines and industry sectors such as: telecommunications, information theory, and software and hardware systems. If you work with, or write about computers, this dictionary is the single most important resource you can put on your shelf.
The dictionary addresses all aspects of computing and computer technology from multiple perspectives, including the academic, applied, and professional vantage points. Including more than 8, 000 terms, it covers all major topics from artificial intelligence to programming languages, from software engineering to operating systems, and from database management to privacy issues. The definitions provided are detailed rather than concise.
Written by an international team of over 80 contributors, this is the most comprehensive and easy-to-read reference of its kind. If you need to know the definition of anything related to computers you will find it in the Dictionary of Computer Science, Engineering, and Technology.

Frequently asked questions

Simply head over to the account section in settings and click on “Cancel Subscription” - it’s as simple as that. After you cancel, your membership will stay active for the remainder of the time you’ve paid for. Learn more here.
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
Both plans give you full access to the library and all of Perlego’s features. The only differences are the price and subscription period: With the annual plan you’ll save around 30% compared to 12 months on the monthly plan.
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Yes, you can access Dictionary of Computer Science, Engineering and Technology by Philip A. Laplante in PDF and/or ePUB format, as well as other popular books in Technology & Engineering & Engineering General. We have over one million books available in our catalogue for you to explore.

Information

Publisher
CRC Press
Year
2017
ISBN
9781351830638
Edition
1

C

C a language developed at AT&T Bell Laboratories in the 1970s, a derivative of BCPL.
C&P See capture and playback.
C++ a language developed at AT&T Bell Laboratories in the 1980s, an object-oriented variant of the C language. A language based loosely on the principles of SIMULA-67.
cable drive in robotic manipulators, transmission of motive forces from actuators to links via wire cables.
cache (1) an intermediate memory store having storage capacity and access times somewhere in between the general register set and main memory. A cache is usually invisible to the programmer, and its effectiveness comes from being able to exploit program locality to anticipate memory-access patterns and to hold closer to the CPU; most accesses to main memory can be satisfied by the cache, thus making main memory appear to be faster than it actually is.
There may be more than one cache; if so, they are traditionally numbered by their nearness to the processor. The closest, and usually smallest but fastest, cache is called the “LI cache”, the next one out is called the “L2 cache”, and so on. A compiler may be able to take advantage of the presence of a cache to optimize the performance of code.
See code cache, data cache, direct mapped cache, fully associative cache, set-associative cache, cache line, cache line size, and unified cache.
(2) a data structure which holds a (typically small) number of values, used to expedite access to larger data structures. When a cache is filled and a new element must be placed in it, a cache replacement algorithm is used to determine which element to discard.
cache aliasing a situation where two or more entries (typically from different virtual addresses) in a cache correspond to the same address(es) in main memory. Considered undesirable, as it may lead to a lack of consistency (coherence) when data is written back to main memory.
cache associativity the number of cache entries that can be searched concurrently.
cache block the number of bytes transferred as one piece when moving data between levels in the cache hierarchy or between main memory and cache. The term line is sometimes used instead of block. Typical block size is 16128 bytes and typical cache size is 1-256 KB. The block size is chosen so as to optimize the relationship of the “cache miss ratio”, the cache size, and the block transfer time.
cache coherence the problem of keeping consistent the values of multiple copies of a single variable, residing either in main memory and cache in a uni-processor, or in different caches in a multi-processor computer. In a uni-processor, the problem may arise if the I/O system reads and writes data into the main memory, causing the main memory and cache data to be inconsistent, or if there is aliasing. Old (stale) data could be output if the CPU has written a newer value in the cache, and this has not been transported to the memory. Also, if the I/O system has input a new value to main memory, new data would reside in main memory, but not in the cache.
cache coherence protocol a mechanism to maintain data coherence among multiple caches so that every data access will always return the latest version of that datum in the system.
cache consistency in a system with multiple processors, each with its own local cache, the caches are consistent if each cache always contains exact copies of remote data. The problem of keeping local cache copies up to date with changes in remote data is known as the cache consistency problem.
cache hit when the data referenced by the processor is already in the cache.
cache hit ratio the percentage of time in which a requested instruction or data is actually in the cache.
cache line (1) the fundamental quantum of caching. From the notion of a hardware cache, in which some number of bits, bytes, or other storage units are transferred to the next outer cache as a single unit of information. This unit of information is a cache line. Each level of cache in a multilevel system may have its own cache line size.
(2) a block of data associated with a cache tag.
cache line size the number of bits, bytes, or other storage units that can be stored in a single cache line. Knowledge of the cache line size and the cache replacement algorithm can allow a compiler to optimize the code to work with, rather than against, the cache. Speedups by factors of 20 or more have been seen for FORTRAN programs accessing array data.
cache memory See cache.
cache miss a reference by the processor to a memory location currently not housed in the cache.
cache replacement when a “cache miss” occurs, the block containing the accessed location must be loaded into the cache. If this is full, an “old” block must be expelled from the cache and replaced by the “new” block. The “cache replacement algorithm” decides which block should be replaced. An example of this is the Least Recently Used (LRU) algorithm, which replaces the block that has gone the longest time without being referenced.
cache replacement algorithm a means of determining which element of a cache to replace when the cache is full and a new element must be placed in the cache. Most caches are commonly managed by using a Least Recently Used algorithm, but other techniques including hash associative and set associative can be used.
cache set See set-associative cache.
cache synonym See cache aliasing.
cache tag a bit held associated with each block in the cache. It is used to determine where (and if) a referenced block resides in the cache. The tags are typically housed in a separate (and even faster) memory (the “tag directory”), which is searched in for each memory reference. In this search, the high order bits of the memory address are associatively compared with the tags to determine the block location. The number of bits used in the tag depends on the cache block “mapping function” used: “Direct-mapped”, “Fully associative” or the “Block-set-associative” mapped cache.
cactus stack a representation of a stack in which multiple threads of control share the stack-defined namespace hierarchy; so named because a diagram of the stack relationships resembles a saguaro cactus.
CAD See computer-aided design.
calculus of communicating system (CCS) Robin Milner’s algebraic theory to formalize the notion of concurrent computation. This process algebra is used to describe process behavior, mainly used in the study of parallelism. It has operators for the parallel composition of processes, for synchronization, to hide events, etc. Programs written in CCS can be compared using the notion of observational equivalence that checks if two processes have the same external behavior. See process algebra, CSP.
calendar time synonymous with real-time.
calibration process of adjusting system parameters to optimize accuracy or to ensure conformity to a standard.
call See function call.
call-by-address See call-by-reference.
call-by-name a mechanism defined by the Algol-60 specification, stating that the appearance of a formal parameter of a function in a function body would evaluate the actual parameter expression each time such a use occurred. This led to interesting problems in side effects. See also call-by-reference, call-by-value.
call-by-name reduction See normal-order reduction.
call-by-reference a mechanism for parameter passing in many languages which states that the value of the actual parameter is not passed to the called function, but rather a reference (memory address) to the value is passed instead. Use of the actual parameter in the function body uses or modifies the value thus referenced. Also called call-by-address. See also call-by-name, call-by-value, call-by-value-result.
call-by-result a mechanism for parameter passing in many languages which states that the actual parameter must reference a value that can be modified. In the body of the function, the appearance of the formal parameter can only be as the target of an assignment (or it can be passed as a call-by-result parameter to another function). The formal parameter represents a local variable. Upon return from the function, the contents of the local variable representing the formal parameter are copied to the location specified by the actual parameter. See also call-by-value, call-by-value-result.
call-by-value a mechanism for parameter passing in many languages that states that the expression defining the value of an actual parameter is computed once and the resulting value is passed to the function being called. In the body of the function, the appearance of the formal parameter represents the copy of the value that has been made. Some languages do not permit the value represented by the formal parameter to be modified in the body of the function.
call-by-value-result a mechanism for parameter passing in many languages that states that the actual parameter to a function must reference a value that can be modified. A copy of this value is made and is passed into the function that is called. Upon return from the function, the value of the formal parameter is copied back to the location from which it was originally copied. While this appears to be similar to call-by-reference, its behavior with respect to side effects is quite different, particularly when aliasing occurs, and it can also support alternate value representations between the actual parameter type and formal parameter type. See also call-by-name, call-by-reference, c...

Table of contents

  1. Cover Page
  2. Title Page
  3. Copyright Page
  4. Preface
  5. Foreword
  6. Editor-in-Chief
  7. Areas and Areas Editors
  8. Contributors
  9. Special Terms
  10. A
  11. B
  12. C
  13. D
  14. E
  15. F
  16. G
  17. H
  18. I
  19. J
  20. K
  21. L
  22. M
  23. N
  24. O
  25. P
  26. Q
  27. R
  28. S
  29. T
  30. U
  31. V
  32. W
  33. X
  34. Y
  35. Z
  36. References