Top answers


How is memory used in a computer system?

Memory is most computers that use the Von Neuman architecture is used to store program instructions and data. When any program or process is doing something inside a computer the computer used RAM (random ac...
Answered by Computing tutor
3103 Views

How do I convert decimal to binary?

There are 2 ways I know to convert decimal to binary, the first way I learnt to use is done by removing the highest power of 2 from the decimal value we have. Lets take 154 as an example. The powers of 2 use...
Answered by Computing tutor
3471 Views

Write the number 195 in binary

Binary is base 2, which means that all binary numbers are represented as sequences of 0's and 1'sEach time you to add a zero to the end of a binary number, you multiply it by 2E.g. 1 = 2 0 = 1, 2 = 2 1 = 10,...
Answered by Computing tutor
3249 Views

Simplify the boolean expression ¬(A.B)+A.

¬(A.B)+A -- given in question. =(¬A+¬B)+A -- using De Morgan's Law. =¬A+¬B+A -- can remove the brackets. =1+¬B -- using identity ¬A+A = 1.=1 -- using identity 1 + anything = 1.
Answered by Computing tutor
2270 Views

Calculate the file size in bits for a two minute sound recording that has used a sample rate of 1000 Hertz (Hz) and a sample resolution of 5 bits.

First, calculate time in seconds: 2 minutes * 60 = 120 seconds File size (bits) = time (seconds) * sample rate (Hz) * sample resolution (bits) File size = 120 * 1000 * 5 bitsFile size = 600,000 bits
JG
Answered by James G. Computing tutor
5208 Views