About 50 results
Open links in new tab
  1. What and where are the stack and heap? - Stack Overflow

    Sep 17, 2008 · What are the stack and heap? Where are they located physically in a computer's memory? To what extent are they controlled by the OS or language run-time? What is their scope? …

  2. How does the computer stores the values in memory?

    Nov 14, 2023 · The computer stores bits, the 16 bit value 0b10101010101101011 is the same as 0xAABB, just easier for humans to carry the 0xAABB around when communicating to each other or …

  3. memory - Gigabyte or Gibibyte (1000 or 1024)? - Stack Overflow

    Dec 3, 2016 · The term gigabyte is commonly used to mean either 1000 3 bytes or 1024 3 bytes depending on the context. Disk manufacturers prefer the decimal term while memory manufacturers …

  4. How a variable and its reference is stored and accessed in computer …

    Dec 24, 2018 · The simplest one is that the computer has, in a certain moment, an amount of free and contiguous memory. When a program starts, all that (free and contiguous) memory is given to the …

  5. How do I find the CPU and RAM usage using PowerShell?

    Jun 9, 2011 · 91 I am trying to get PowerShell to give me the RAM and CPU usage, but I can't figure out what WMI class to use. My computer has two processors, so it would be useful to have the …

  6. Heap Memory in C Programming - Stack Overflow

    Apr 6, 2017 · Failure to free the memory when you are finished with it will result in what is known as a memory leak – memory that is still “being used”, and not available to other processes. Unlike the …

  7. computer science - What does the memory address mean? - Stack …

    Jan 18, 2011 · A hex memory address (like what you would see if you printed out the value of a pointer) points to a location in virtual memory. On a 32 bit system, each process has a full 4GB of virtual …

  8. How does a "stack overflow" occur and how do you prevent it?

    Aug 25, 2008 · This might overwrite memory, code, etc. Many programmers make this mistake by calling function A that then calls function B, that then calls function C, that then calls function A. It might …

  9. How to get free physical memory of remote computer using PowerShell

    Sep 3, 2012 · I have this: (Get-WMIObject Win32_logicaldisk -computername computer).TotalPhysicalMemory to get size of physical memory installed on remote computer. How …

  10. One memory location in a computer stores how much data?

    One memory location in a computer stores how much data? It depends on the computer. A memory location means a part of memory that the CPU can address directly. Whats the basic unit of memory …