Documento Sin Título
Documento Sin Título
3562715
We convert the number to a binary one:
011 101 110 010 111 001 101
4. When data is input to a computer, it is nearly always manipulated and stored in some
standard data format. Why is the use of data standards considered important, or
indeed, crucial in this case?
7. What is the relationship between the ASCII Latin-1 character set and its
Unicode equivalent that makes conversion between the two simple?
Unicode in his 128 first characters are placed in the same order as ASCII, and the
256 first characters are like Latin-1 positions, so that allow a direct transcript between
each other.
8. What is a collating sequence?
A collating sequence refers to the rules used to determine the order in which
information is arranged, such as words. In computing, words are typically ordered in
alphabetical order, with special characters like "Ñ" being treated according to specific
collation rules.
11. What is image metadata? Give an at least three examples of metadata that
would be required for a bitmap image. The metadata of a image is information that
is written about characteristics of the photo, that can be the image resolution, Color
Depth or file format.
13. Explain briefly how an A-to-D converter converts audio data into binary data.
It follows some steps. First it takes some measurements of the signal's amplitude
at specific time points, millions of times per second. Then it assigns a value for each
measurement, rounding it to the nearest discrete level within a defined range. For
last, each quantized level is converted into binary code, and that allows being
transmitted by digital devices.
14. Explain briefly the difference between lossless and lossy data compression.
Which type normally provides a smaller file? What is ‘‘lost’’ in lossy audio data
compression?
Lossless is a method that compresses data without any loss of information. When
decompressed, the original data is perfectly restored. Common formats include ZIP
and PNG.
This method compresses data by permanently removing some information, which
results in a smaller file size but sacrifices quality. Common formats include MP3 and
JPEG.
The differences are that lossy compression normally provides a smaller file size
compared to lossless compression for the loss of information and Lossless preserves
all original data, while lossy does not.
In lossy audio compression, certain frequencies and details that are less perceptible
to the human ear are discarded. Like nuances and high-frequency.
54 68 69 73 20 69 73 20 45 41 53 59 21
T H I S “Space” I S “Space” E A S Y !
17. Approximately how many pages of pure 16-bit Unicode text can a 4.3GiB DVD-
ROM hold?
First we calculate how many characters we can write:
4,3 x 1024 x 1024 x 1024 = 4617089843,2 / 16 = 288568115,2 Characters
The we divide that by the size of one page (3000 in one page in arial 11):
288568115,2 / 3000 = 96189,372 pages
18. Find an article that describes the various bitmapped graphics formats, and
compare .GIF, .PNG, and .BMP.
19. What is a register? Be precise. Name at least two components in the CPU
Architecture showed, that meet the qualifications for a register, but they are not the
R0-R9 . Identify the use of the registers named. Identify several different kinds of
values that a register might hold.
20. What is the purpose of the instruction register? What takes the place of the
instruction register in the CPU architecture?
The instruction register temporarily holds the instruction that has been fetched from
memory and is currently being executed. This allows the CPU to have immediate
access to the instruction it needs to process. This also enables the CPU's control unit
to decode it and determine what operations need to be performed.
21. When a value is copied from one register to another, what happens to the value
in the source register? What happens to the value in the destination register?
When a value is copied from one register (the source register) to another (the
destination register), the value in the source register remains unchanged, but the
value in the destination register is replaced with the value copied from the source
register. If the destination register previously held a value, that value is overwritten.
22. There are four primary operations that are normally performed on a register.
Describe each operation.
● Data storage: Registers are used to store data temporarily during processing
operations. They can hold intermediate results, operands, or variables
needed for calculations.
● Address storage: Registers can store memory addresses or pointers that
indicate the location of data or instructions in the memory. These addresses
help facilitate memory access during operations.
● Program counter storage: Registers are used to store the address of the
current instruction being executed.
● Status storage: Registers are used to store status flags that indicate the
outcome of an operation, such as whether an arithmetic operation resulted in
a carry or overflow.
23. Explain the relationship between the memory address register, the memory
data register, and memory itself.
Memory Address Register: holds the address of the memory location that the CPU
wants to access.
Memory Data Register: temporarily holds the data that is being transferred to or from
memory.
Memory: physical storage area where data and instructions are stored. Includes both
RAM and cache memory.
Memory Address Register and Memory Data Register are intermediaries between
the CPU and memory that allow for efficient access and management of data.
Memory Address Register specifies where to go in memory, while the Memory Data
Register holds the data being transferred, ensuring smooth communication.
24. If the memory address register for a particular computer is 32 bits wide, how
much memory can this computer support? 32 bits allows 4,294,967,296 or 4 GB
25. Describe, step by step, what the CPU Architecture showed in previous figure does to
execute a STORE R1,FFFF (CPU R1 ->Memory FFFF position) instruction.
26. Describe, step by step, what the CPU Architecture showed in previous figure does to
execute a LOAD FFFF,R1 (Memory FFFF → CPU R1) instruction.