0% found this document useful (0 votes)
76 views4 pages

Multiprocessor vs Multicomputer Systems

Uploaded by

Bikash Bardhan
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
76 views4 pages

Multiprocessor vs Multicomputer Systems

Uploaded by

Bikash Bardhan
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Multiprocessors: A single computer system with two or more CPUs that share a

common memory and work concurrently on different tasks.

Multicomputer Systems: Multiple independent computers working together,


connected via a network. These systems don’t share memory but communicate via
messaging.

Multicomputer Multiprocessors
1. A computer made up of several 1. 1.A computer that has more than one CPU on its
computers. motherboard.
2. Distributed computing deals with 2. [Link] is the use of two or more
hardware and software systems central processing units (CPUs) within a single
containing more than one processing computer system.
element, multiple programs 3. [Link] depends on the all Processors speed
3. It can run faster 4. [Link] Computer with multiple processors
4. A multi-computer is multiple computers,
5. [Link] for true parallel processing.
each of which can have multiple 6. [Link] can share the memory.
processors. 7. [Link] as shared memory multi processors
5. Used for true parallel processing. 8. [Link] is low
6. Processor can not share the memory.
7. Called as message passing multi
computers
8. Cost is more

Data Repsentation:

Types of Number Systems


Based on the base value and the number of allowed digits,
number systems are of many types. The four common types of
Number systems are:
 Decimal Number System
 Binary Number System
 Octal Number System
 Hexadecimal Number System

Decimal Number System


A number system with a base value of 10 is termed a
Decimal number system . It uses 10 digits i.e. 0-9 for the
creation of numbers. Here, each digit in the number is at a
specific place with a place value of a product of different powers
of 10. Here, the place value is termed from right to left as the
first place value called units, second to the left as Tens, so on
Hundreds, Thousands, etc. Here, units have a place value of 100,
tens have a place value of 101, hundreds as 102, thousands as
103, and so on.
For example, 12265 has place values as,
(1 × 104) + (2 × 103) + (2 × 102) + (6 × 101) + (5 × 100)
= (1 × 10000) + (2 × 1000) + (2 × 100) + (6 × 10) + (5 × 1)
= 10000 + 2000 + 200 + 60 + 5
= 12265

Binary Number System


A number System with a base value of 2 is termed a
Binary number system. It uses 2 digits i.e. 0 and 1 for the
creation of numbers. The numbers formed using these two digits
are termed Binary Numbers. The binary number system is very
useful in electronic devices and computer systems because it
can be easily performed using just two states ON and OFF i.e. 0
and 1.
Decimal Numbers 0-9 are represented in binary as 0, 1, 10, 11,
100, 101, 110, 111, 1000, and 1001
For example, 14 can be written as 1110, 19 can be written as
10011, and 50 can be written as 110010.
Example of 14 in the binary system

Here 14 can be written as 1110

Octal Number System


Octal Number System is one in which the base value is 8. It uses
8 digits i.e. 0-7 for the creation of Octal Numbers. Octal Numbers
can be converted to Decimal values by multiplying each digit
with the place value and then adding the result. Here the place
values are 80, 81, and 82. Octal Numbers are useful for the
representation of UTF8 Numbers. Example,
(81)10 can be written as (121) 8
(125)10 can be written as (175) 8

Hexadecimal Number System


A number System with a base value of 16 is known as
Hexadecimal Number System. It uses 16 digits for the creation of
its numbers. Digits from 0-9 are taken like the digits in the
decimal number system but the digits from 10-15 are
represented as A-F i.e. 10 is represented as A, 11 as B, 12 as C,
13 as D, 14 as E, and 15 as F. Hexadecimal Numbers are useful
for handling memory address locations. Examples,
(185)10 can be written as (B9) 16
(5440)10 can be written as (1540) 16
(4265)10 can be written as (10A9) 16
Hexadecimal 0 1 2 3 4 5 6 7 8 9 A B C D E F

Decimal 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15

ASCII and Unicode:


ASCII (American Standard Code for Information Interchange):

ASCII is a character encoding standard used for electronic communication.


It represents text using numeric codes (7-bit integers) and includes basic
characters like letters (both uppercase and lowercase), digits, and punctuation
marks.

Unicode:
Unicode is the universal character encoding used for processing, storing, and
exchanging text data in any language. Unlike ASCII, it supports a multitude of
characters from various scripts and languages.

Character Unicode

U+1F60A

U+1F44

1 U+0031

+ U+002B

Common questions

Powered by AI

A binary number system, with its base value of 2, is fundamental to computing because it aligns directly with the physical states of electronic devices, which can be easily represented by two states: ON or OFF, 0 or 1 . This correlation allows binary numbers to be naturally encoded and processed by digital circuits such as transistors and logic gates. Binary arithmetic is used extensively in computing operations, memory storage, and data transmission within computers, providing a stable and efficient method for performing complex calculations and tasks in all digital systems .

The primary differences between a multiprocessor system and a multicomputer system lie in memory sharing and communication methods. Multiprocessor systems feature multiple CPUs within a single system that share a common memory and work concurrently on different tasks . This shared memory model allows for efficient inter-processor communication directly through the memory. In contrast, multicomputer systems consist of multiple independent computers connected via a network, which do not share memory. These systems rely on message passing for communication, making the system suitable for tasks that can be distributed but more challenging in terms of coordinating tasks than in a shared memory multiprocessor system .

Unicode provides extensive support for multilingual text processing by encoding over 143,000 characters from virtually all scripts, symbols, and languages globally. It allows for consistent text representation and interchange across different systems and languages . Unlike ASCII, which is limited to 128 characters mainly for English text, Unicode encompasses a wide array of characters, including complex scripts like Chinese, Arabic, emojis, and special symbols. This universality makes it possible to create and manage documents that mix characters from multiple languages, ensuring interoperability and preservation of text integrity across diverse computing systems .

To convert a decimal number into an octal number, one repeatedly divides the decimal number by 8 and records the remainders in reverse order . The octal number system, with a base of 8, is particularly useful in computing for representing large binary numbers in a more condensed form, since each octal digit represents three binary digits. This feature simplifies operations in scenarios such as setting file permissions in UNIX/Linux systems, where the octal number system concisely represents binary flags. Additionally, octal was historically used due to its compatibility with systems supporting 24-bit, 36-bit words where each word could be conveniently expressed in octal .

Using the hexadecimal number system for representing memory addresses is significant due to its efficiency and readability. Hexadecimal, with its base of 16, aligns well with the byte-oriented binary architecture of computer memory, where one hexadecimal digit corresponds to four binary digits (a nibble). This alignment makes it easier to convert between binary and hexadecimal, saving time and reducing errors when dealing with large binary numbers involved in memory addressing . Additionally, hexadecimal notation is more compact and human-readable compared to binary, allowing programmers and engineers to easily manage memory locations in debugging and system programming .

ASCII and Unicode are distinguished by their scope and character representation. ASCII is an older encoding system using 7-bit integers to represent text, covering basic characters such as English letters, digits, and punctuation marks . Its limited character set restricts it to primarily English characters. Unicode, on the other hand, is a comprehensive encoding system designed to support characters from virtually all languages and scripts worldwide, encompassing over 143,000 characters with its multiple encoding forms . This makes Unicode invaluable for global text processing, storage, and exchange, supporting diverse languages and symbols beyond ASCII's capacity.

The practical challenges with message passing in multicomputer systems include latency, network congestion, and synchronization issues. Message passing requires data to be transmitted over a network, which can introduce significant delays compared to shared memory systems . Network congestion can occur when too many messages are sent simultaneously, leading to bottlenecks and reduced system performance. Additionally, coordinating and synchronizing processes across different computers can be complex since each system operates independently, requiring robust protocols to manage communication efficiently and avoid issues like deadlocks and data inconsistency .

The hexadecimal number system differs from the decimal number system primarily in its base value and digit representation. Hexadecimal is a base-16 system using digits 0-9 and letters A-F to represent values, whereas decimal is a base-10 system using digits 0-9 . In computing, hexadecimal is advantageous because it can represent byte-level data effectively, which is useful for handling memory addresses efficiently due to its alignment with binary, where one hexadecimal digit corresponds to four binary digits. This compact representation simplifies many programming and debugging tasks, especially in low-level programming and digital electronics .

Shared memory in multiprocessor systems allows multiple CPUs to access the same memory space, facilitating efficient communication and data sharing among processors . This setup enables faster data exchange compared to distributed systems that rely on networks for communication. Shared memory systems benefit performance by reducing the latency in inter-processor communication, improving response times, and allowing for simpler and faster synchronization mechanisms. However, it also introduces challenges such as cache coherence and memory contention which need to be managed to ensure consistent data access across all processors .

The cost of multicomputer systems is generally higher than that of multiprocessor systems due to their architectural complexities and network requirements. Multicomputer systems involve multiple independent computers, each potentially having multiple processors, necessitating a complex network infrastructure to enable communication via message passing . This setup increases the system complexity, hardware requirements, and maintenance overhead, contributing to higher costs. The implications for computing are significant: while multicomputers can offer true parallel processing and scalability for distributed computing tasks, the cost-effectiveness of their deployment must be justified by the computational needs and the scale of applications .

You might also like