About 50 results
Open links in new tab
  1. What is the computer science definition of entropy?

    In the topic of simulated annealing (as far as computer science is concerned), entropy is described as how much decay has happened during the evaluation of the algorithm. I guess to answer your …

  2. What does 'predicate' mean in the context of computer science?

    In computer science, we use this form of the word to describe conditional execution. For instance, in CUDA programming, there are assembly instructions whose execution we can predicate (KATE) on …

  3. What are ADTs? (Abstract Data Types) - Stack Overflow

    In computer science, an abstract data type (ADT) is a mathematical model for a certain class of data structures that have similar behavior; or for certain data types of one or more programming …

  4. multithreading - What is a "thread" (really)? - Stack Overflow

    Jul 8, 2025 · As an example of a definition that didn't really help me much . . . From Wikipedia: "A thread in computer science is short for a thread of execution. Threads are a way for a program to divide …

  5. computer science - What are vectors and how are they used in ...

    7 The mathematical vectors you're used to are tensors of rank one; the data structures in computer science don't necessarily obey the tensor transformation rules. They're just arrays that can expand …

  6. computer science - Simple definition of "semantics" as it is commonly ...

    Jul 19, 2010 · A definition cribbed from here is The semantics of a programming language describe the relationship between the syntax and the model of computation.. This is pretty much exactly what your …

  7. definition - What does the word "semantic" mean in Computer Science ...

    Aug 11, 2016 · The word ‘semantic ‘as an adjective simply means ‘meaningful’ which is very related to the word 'high level' in computer science. For instances: Semantic data model: a data model that is …

  8. c++ - What is a 'thunk'? - Stack Overflow

    Apr 14, 2010 · 91 The word thunk has at least three related meanings in computer science. A "thunk" may be: a piece of code to perform a delayed computation (similar to a closure) a feature of some …

  9. What does abstraction mean in programming? - Stack Overflow

    Abstraction is a core concept in all of computer science. Without abstraction, we would still be programming in machine code or worse not have computers in the first place.

  10. terminology - What is a Shim? - Stack Overflow

    Jan 22, 2010 · In computer programming, a shim is a small library which transparently intercepts an API, changes the parameters passed, handles the operation itself, or redirects the operation elsewhere. …