Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Outline three microprocessor system buses, citing their functions. (6 marks)June/July 2020
A bus is a communication system that allows different components of a computer to communicate with each other. In a microprocessor system, there are several different types of buses that perform different functions. The data bus is used to transfer data between the microprocessor, memory, and periphRead more
A bus is a communication system that allows different components of a computer to communicate with each other. In a microprocessor system, there are several different types of buses that perform different functions.
write an assembly language program to add 13 H and 08 H. ( 4marks)June/July 2020
Here is an example of an assembly language program to add two hexadecimal numbers, 13H and 08H: ; Program to add 13H and 08H ; Load 13H into register A MOV A, #13H ; Load 08H into register B MOV B, #08H ; Add the contents of register A and register B, and store the result in register A ADD A, B ; EnRead more
Here is an example of an assembly language program to add two hexadecimal numbers, 13H and 08H:
; Load 13H into register A
MOV A, #13H
; Load 08H into register B
MOV B, #08H
; Add the contents of register A and register B, and store the result in register A
ADD A, B
; End of program
This program would add the two hexadecimal numbers 13H and 08H, and store the result (1BH) in register A.
See lessDifferentiate between program counter and stack pointer, (3 marks)June/July 2020
The program counter (PC) and stack pointer (SP) are both special purpose registers in a computer's central processing unit (CPU). They are used to store the addresses of instructions and data in memory, and to control the flow of a program. The program counter is a register that stores the address oRead more
The program counter (PC) and stack pointer (SP) are both special purpose registers in a computer’s central processing unit (CPU). They are used to store the addresses of instructions and data in memory, and to control the flow of a program.
State two categories of 8085 microprocessor instruction sets.(3 marks)June/July 2020
Data transfer instructions: These instructions are used to transfer data between the microprocessor and external devices or memory. Examples include the MOV and MVI instructions. Arithmetic instructions: These instructions are used to perform arithmetic operations, such as addition, subtraction, andRead more
Outline three differences between random access memory and hard disk memory.(6 marks)June/July 2020
Random access memory (RAM) and hard disk memory are two types of computer memory that are used to store data and support the operation of a computer. There are several differences between these two types of memory: Type of memory: RAM is a type of volatile memory, which means that it requires a consRead more
Random access memory (RAM) and hard disk memory are two types of computer memory that are used to store data and support the operation of a computer. There are several differences between these two types of memory:
Explain each of the following terms as applied to memories: (i) access time: (ii) back-up. (4 marks)June/July 202
(i) Access time: Access time refers to the amount of time it takes for a computer or device to retrieve data from its memory. The access time of a memory is an important factor to consider when choosing a memory for a computer or device, as it affects the overall performance of the system. A memoryRead more
(i) Access time:
Access time refers to the amount of time it takes for a computer or device to retrieve data from its memory. The access time of a memory is an important factor to consider when choosing a memory for a computer or device, as it affects the overall performance of the system. A memory with a shorter access time will be able to retrieve data faster, which can improve the performance of the system.
(ii) Back-up:
A back-up is a copy of data that is made and stored in a separate location to protect against data loss due to hardware failure, software errors, or other issues. Back-ups can be made to a variety of storage media, including hard drives, external drives, and cloud storage.
It is important to regularly perform back-ups of important data to ensure that it is protected in the event of a data loss. Back-ups can be made manually or automatically, and may be stored locally or remotely depending on the needs and preferences of the user.
See lessList two computer devices.” (2 marks)June/July 2020
Desktop computers: Desktop computers are stationary computers that are typically used in a fixed location, such as an office or home. They typically have more processing power and storage capacity than other types of computers, and may be used for tasks such as word processing, data analysis, and gaRead more