Question? Call Us  +1 (817) 546-4770

COSC2473 Introduction To Computer Systems And Platform Technologies

Academic Anxiety?

Get an original paper within hours and nail the task

156 experts online

Free Samples

COSC2473 Introduction To Computer Systems And Platform Technologies

.cms-body-content table{width:100%!important;} #subhidecontent{ position: relative;
overflow-x: auto;
width: 100%;}

COSC2473 Introduction To Computer Systems And Platform Technologies

0 Download5 Pages / 1,171 Words

Course Code: COSC2473
University: Royal Melbourne Institute Of Technology

MyAssignmentHelp.com is not sponsored or endorsed by this college or university

Country: Australia

Question:

Question 1 — Number Systems
Please answer the following questions, showing all your working out and intermediate steps.

Convert the last five digits of your RMIT student number to binary. For example, if your student number is “s1234567”, then convert 3456710 to binary, octal, and hexadecimal.

b.Convert the last five digits of your RMIT student number to base 12, where 1010=A13, 1110=B13.
Consider a base 26 number system wherein the letters of the alphabet are the digits. That is, A26=010, B26=110, C26=210, … Z26=2510. Use the first three letters of your given name, and the last three letters of your surname as numbers in the base 26 system. Add these two base 26 numbers together to obtain the sum (in base 26). Show all your working out and intermediate steps.
Note: If one of these has less than three letters, repeat the last letter, e.g. LI become LII.
Example 1 — if your first name is “Lara” and your surname is “Croft”, then add up LAR26 and OFT26, and show the sum in base 26.
Example 2 — if your first name is “Lara” and your surname is “Ft”, then add up LAR26 and FTT26, and show the sum in base 26.
Question 2 — Binary Addition and Subtraction (13 marks)
Please answer the following questions, showing all your working out and intermediate steps. For this question, use the last two digits of your student number. (For example, if your student number is “s1234567”, then A=7 and B=6; −A=−7 and −B=−6.) If either of these digits is a “0”, use 9 instead.

Convert decimal numbers A and B to 4-bit binary numbers; and −A and −B to 6-bit binary numbers.
Show how to add together the two 4-bit binary numbers (A+B) and state whether the answer is valid to 4-bit arithmetic.
Show how to use 2’s complement 6-bit arithmetic to compute (−A−B). Show how to translate the binary result back to decimal.

Carrier Sense Multiple Access/Collision Detect (CSMA/CD) is a major protocol used in Ethernet and standardised as 802.3

Briefly explain how CSMA/CD works.
How is the back off time calculated in the event of a collision?
What is CSMA/CA (Carrier Sense Multiple Access/Collision Avoidance) and what is the major difference compared to CSMA/CD.

Do some research and find out how real (floating point) numbers are represented in Binary.

Devise your own 16-bit representation for floating point numbers. Draw a diagram of your representation and explain what the various bits are used for.
Show how the numbers 1, 10, and 1/3 are represented in your system.
If your student number is “s1234567”, then

A=7 and B=6
x = A + B/10 = 7 + 6/10 = 7.6
y = B + A/10 = 6 + 7/10 = 6.7

If either of these digits is a “0”, use 9 instead.
(i) Show how x and y would be represented using your 16-bit representation.
(ii) Show in detail, the various steps needed to add together the two numbers x and y. d. When adding up a large number of floating point numbers, in what order should they be added together to get the most accurate result? Explain why with an example

Answer:

Question 1 – Number system:
The student number is S3543535. So, the last 5 digits are 43535.
Hence, (43535)10 = 1*2^(15) + 0*2^(14) + 1*2^(13) + 0*2^(12) + 1*2^(11) + 0*2^(10) + 1*2^(9) + 0*2^(8) + 0*2^(7) + 0*2^(6) + 0*2^(5) + 0*2^(4) + 1*2^3 + 1*2^2 + 1*2^1 + 1*2^0 = (1010101000001111)2
Now, grouping by three bit and then evaluating by three bit, the binary number can be converted into octal equivalent.
(43535)10 = (001 010 101 000 001 111)2 = (125017)8
For converting the binary number into hexadecimal equivalent, the binary numbers are grouped by 4 bits.
(43535)10 = (1010 1010 0000 1111)2 = (AA0F)16.

The last five digits (43535)10can be converted into base 12 number by dividing the number by 12 and then listing the remainder in reverse order.

43535/12 = 3627*12 + 11
Now, 3627/12 = 12*302 + 3
302/12 = 12*25 + 2
25/12 = 12*2 + 1
2/12 = 12*0 + 2
Hence, the number in base 12 will be (43535)10 = (2123B)12

The name of the student is Yazeed Othman.

Hence, the first three letters of the name are ‘YAZ’.
The last three letters of the digit are ‘MAN’.
Hence, (YAZ)26 and (MAN)26 will be added.
Now, (YAZ)26 = 24*(26^2) + 0*(26) + 25*(26^0) = 16224 + 25 = (16249)10
(MAN)26 = 12*(26^2) + 0*26 + 13*(26^0) = (8125)10
Now, adding the decimal equivalents gives (16249)10 + (8125)10 = (24374)10
Now, (24374)10 is converted into base 26 number by dividing it consecutively by 26 and then arranging the remainders in reverse order.
24374/26 = 937*26 + 12
937/26 = 26*36 + 1
36/26 = 26*1 + 10
1/26 = 26*0 + 1
Hence, (24374)10 = (BKBM)26
Hence, (YAZ)26 + (MAN)26 = (BKBM)26
Question 2:

The last two digits of the student number is 35. Hence, A = 3 and B = 5

and -A = -3, -B = -5.
So, A = 310 = 00112
B = 01012
Now, in 6-bit representation, negative of a number is the 2’s complement of the unsigned number.
So, -A = One’s complement of 0000112 + 1
= 111100 +1 = (111101)2
-B = One’s complement of 0001012 + 1 = 111010 + 1 = 1110112

The two 4-bit unsigned numbers are added in binary form by the binary arithmetic rule.

The binary arithmetic rule is the following.
1 + 1 = 0(carry 1), 1+0 = 1, 0+1 = 1 and 0+0 = 0.
Hence, (A+B) = 0011 + 0101 = (1000)2
Now, checking this by decimal addition.
0011 + 0101 = 3+ 5 = 8 = (1000)2.
Hence, the binary addition holds in 4-bit arithmetic.

Now, in two’s complement 6 bit arithmetic (-A-B) is performed in the following way.

(-A-B) = – 3 – 5 =  (111101)2 + 1110112 = (1111000)2
Here, the MSB represents the signed bit which is negative.
Now, again 2’s complementing the result we find the final result.
One’s complement of 111000 + 1 = 000111 + 1 = 001000 = 810
Hence, the signed result will be -8.
Question 3:

Bits in 1 and 5thposition is set and all other bits are reset.

Hence, the bit mask will be (00010010).
Bitwise operators will be used in first step will be OR in bit 1 and bit 5 position.
Bitwise operators will be used in the second step will be AND in bit 0,2,3,4,6,7 position.

Now, inverting the values of bit 3 and 4 will change the bit mask to (00001010).

The bitwise operators that are used are two XOR gates in bit 3 and bit 4 position respectively.
Question 4:
For, the above circuit the equivalent Boolean expression is
O = ((AB + C’)’ + D)’ss
The equivalent Boolean expression of the above circuit is
O = AB + C’ + D’
The truth table of the first expression is the following.

A

B

C

D

E

F

G

O

1

1

1

1

1

0

0

1

1

1

1

0

1

0

0

0

1

1

0

1

1

1

1

0

1

1

0

0

1

1

1

1

1

0

1

1

0

0

1

0

1

0

1

0

0

0

1

1

1

0

0

1

0

1

0

1

1

0

0

0

0

1

0

0

0

1

1

1

0

0

1

0

0

1

1

0

0

0

1

1

0

1

0

1

0

1

0

1

0

1

0

0

0

1

0

0

0

0

1

1

0

0

1

0

0

0

1

0

0

0

1

1

0

0

0

1

0

1

0

1

0

0

0

0

0

1

0

0

The truth table of the second expression is the following.

A

B

C

D

E

F

G

O

1

1

1

1

1

0

0

1

1

1

1

0

1

0

1

0

1

1

0

1

1

1

0

0

1

1

0

0

1

1

1

1

1

0

1

1

0

0

0

0

1

0

1

0

0

0

1

1

1

0

0

1

0

1

0

1

1

0

0

0

0

1

1

0

0

1

1

1

0

0

0

0

0

1

1

0

0

0

1

1

0

1

0

1

0

1

0

1

0

1

0

0

0

1

1

0

0

0

1

1

0

0

0

0

0

0

1

0

0

0

1

1

0

0

0

1

0

1

0

1

0

0

0

0

0

1

1

0

Hence, it is evident that the truth table of final output O is same for both the circuits. Hence, the second expression is the simplified form of the first expression.

Question 5:

The retrieved binary code is 11001010.

The code can be written in standard form.

1

1

0

0

1

0

1

0

P8

D7

D6

D5

P4

D3

P2

P1

The parity bits are in position 2^0,2^1, 2^2 and 2^3 position.
The data bits are in 3rd, 4th, 5th and 6th position. Hence, the data bit is 1000.
Now, by the SECDED code the parity bit P1 depends on D3, D5 and D7.
D3,D5,D7 = 001
Hence, for odd parity P1 = 0.
P2 depends on D3,D6 and D7
D3,D6,D7 = 001
For odd parity P2 = 0
But, in the code P2 = 1
Hence, there is an error.
Next, P4 depends on D5, D6 and D7.
D5, D6, D7 = 001
For odd parity P4 = 0
But, in the signal P4 = 1
Next, P8 depends on D3,D5,D6
D3,D5,D6 = 000
Now, P8 = 1 for odd parity.
Hence, the signal contains error.

b) Hence, if the Data bit D6 is 1 instead of 0 then the parity bits will be matched.

So, the corrected signal will be 11101010.
Question 6:

The CSMA/CD works based on detection of a collision in the data transmission medium and then back off occurs based on necessity. At the time of transmission of the frame, the medium is checked to realize if the medium is busy. If there is no current then it is assumed that no other transmission is occurring (Lin & Zhang, 2018). The current level is also overseen for detecting the collision. If collision is detected then a special jamming signal is sent to notify all the receivers about the position of the collision. At this time the sender will receive the jamming signal and abortion occurs after detection of CRC failure.
The back-off time algorithm in CSMA/CD working is inbuilt in the system. When a node is unable to send a data packet as the medium is under use, it needs to wait for a certain time which is known as “back-off time” (Chakraborty et al., 2016). The exact calculation of the back off time is generally exponential i.e. the back off time increases with the increase in number of full channel by the node (Al-Humairi & Probst, 2016). By the Zigbee method of algorithm the max value of back off period increases with the increase in number of failure of sending packet.
The basic difference between CSMA/CD and CSMA/CA is that the former one deals with the transmission after occurrence of the collision while, the later protocol deals with the transmission such that collision do not occur before occurrence of any collision. Both protocols are under 802.11 networking protocol.

Question 7:

a)By the IEEE 754 standards the 16-bit floating point representation of the number is the following. The 15thbit is the sign bit, bit 10 to bit 14 is the exponent bits and bit 0 to bit 9 is the fraction bits.

Representation diagram:

b)110= (000001.0000000000)2 (in 16-bit floating point form)

1010 = (001010.0000000000)2
(1/3)10 = (001010.0101010101)2

c) The student number is S3543535.

So, the last two digits are 35.
A= 5 and B = 3
Hence, x = A + B/10 = 5 + 0.3 = 5.3
And y = B + A/10 = 3 + 5/10 = 3.5

i) (5.3)10= (000101.0100110011)2

(3.5)10 = (000011.1000000000)2

ii) The number x and y can be added using the binary addition rule and the result is obtained and then converted into decimal.

(5.3)10 + (3.5)10 = (000101.0100110011)2 + (000011.1000000000)2 = (001000.1100110011)2 = (8.8)10

d) When adding two large number in floating point format the order that should be maintained is LSB to LSB addition and the carry will be forwarded to the next bit. Any, other addition method will have some errors in it. The operation in MSB should be performed at last excluding the Sign bit.

Reference list:
Al-Humairi, A., & Probst, A. (2016, June). Back-Off Time Calculation Algorithms in WSN. In Informatics (Vol. 3, No. 2, p. 9). Multidisciplinary Digital Publishing Institute.
Chakraborty, D., Islam, M. I., Azad, A. K., & Rahaman, A. S. M. M. (2016). Performance Analysis of CSMA/CA Network using Modified State Transition Chain. International Journal of Computer Science and Information Security, 14(12), 1064.
Lin, P., & Zhang, L. (2018, May). Full-Duplex RTS/CTS Aided CSMA/CA Mechanism for Visible Light Communication Network with Hidden Nodes under Saturated Traffic. In 2018 IEEE International Conference on Communications (ICC) (pp. 1-6). IEEE.

Free Membership to World’s Largest Sample Bank

To View this & another 50000+ free samples. Please put
your valid email id.

E-mail

Yes, alert me for offers and important updates

Submit 

Download Sample Now

Earn back the money you have spent on the downloaded sample by uploading a unique assignment/study material/research material you have. After we assess the authenticity of the uploaded content, you will get 100% money back in your wallet within 7 days.

UploadUnique Document

DocumentUnder Evaluation

Get Moneyinto Your Wallet

Total 5 pages

PAY 3 USD TO DOWNLOAD

*The content must not be available online or in our existing Database to qualify as
unique.

Cite This Work
To export a reference to this article please select a referencing stye below:

APA
MLA
Harvard
OSCOLA
Vancouver

My Assignment Help. (2021). Introduction To Computer Systems And Platform Technologies. Retrieved from https://myassignmenthelp.com/free-samples/cosc2473-introduction-to-computer-systems-and-platform-technologies/time-calculation-algorithms-in-wsn.html.

“Introduction To Computer Systems And Platform Technologies.” My Assignment Help, 2021, https://myassignmenthelp.com/free-samples/cosc2473-introduction-to-computer-systems-and-platform-technologies/time-calculation-algorithms-in-wsn.html.

My Assignment Help (2021) Introduction To Computer Systems And Platform Technologies [Online]. Available from: https://myassignmenthelp.com/free-samples/cosc2473-introduction-to-computer-systems-and-platform-technologies/time-calculation-algorithms-in-wsn.html[Accessed 18 December 2021].

My Assignment Help. ‘Introduction To Computer Systems And Platform Technologies’ (My Assignment Help, 2021) accessed 18 December 2021.

My Assignment Help. Introduction To Computer Systems And Platform Technologies [Internet]. My Assignment Help. 2021 [cited 18 December 2021]. Available from: https://myassignmenthelp.com/free-samples/cosc2473-introduction-to-computer-systems-and-platform-technologies/time-calculation-algorithms-in-wsn.html.

×
.close{position: absolute;right: 5px;z-index: 999;opacity: 1;color: #ff8b00;}

×

Thank you for your interest
The respective sample has been mail to your register email id

×

CONGRATS!
$20 Credited
successfully in your wallet.
* $5 to be used on order value more than $50. Valid for
only 1
month.

Account created successfully!
We have sent login details on your registered email.

User:

Password:

Coming up with interesting research topics is a challenging task. If you are looking to save money for authentic assistance, MyAssignmenthelp.com is the place where you will get answers for topics like Bill Gates Leadership style, Starbucks social responsibility and more. Another daunting aspect, where our experts shine, is providing accurate citations. If you have no idea how to cite a research paper, do not hesitate to avail our service. To provide swift service, our writers frequently use referencing tools to ensure accurate citations on the chosen citation style. Even if you need assistance in the 11th hour, you know where to find us.

Latest Management Samples

div#loaddata .card img {max-width: 100%;
}

MPM755 Building Success In Commerce
Download :
0 | Pages :
9

Course Code: MPM755
University: Deakin University

MyAssignmentHelp.com is not sponsored or endorsed by this college or university

Country: Australia

Answers:
Introduction
The process of developing a successful business entity requires a multidimensional analysis of several factors that relate to the internal and external environment in commerce. The areas covered in this current unit are essential in transforming the business perspective regarding the key commerce factors such as ethics, technology, culture, entrepreneurship, leadership, culture, and globalization (Nzelibe, 1996; Barza, 2…
Read
More

SNM660 Evidence Based Practice
Download :
0 | Pages :
8

Course Code: SNM660
University: The University Of Sheffield

MyAssignmentHelp.com is not sponsored or endorsed by this college or university

Country: United Kingdom

Answers:
Critical reflection on the objective, design, methodology and outcome of the research undertaken Assessment-I
Smoking and tobacco addiction is one of the few among the most basic general restorative issues, particularly to developed nations such as the UK. It has been represented that among all risk segments smoking is the fourth driving purpose behind infections and other several ailments like asthma, breathing and problems in the l…
Read
More
Tags:
Australia Maidstone Management Business management with marketing University of New South Wales Masters in Business Administration 

BSBHRM513 Manage Workforce Planning
Download :
0 | Pages :
20

Course Code: BSBHRM513
University: Tafe NSW

MyAssignmentHelp.com is not sponsored or endorsed by this college or university

Country: Australia

Answer:
Task 1
1.0 Data on staff turnover and demographics
That includes the staffing information of JKL industries for the fiscal year of 2014-15, it can be said that the company is having problems related to employee turnover. For the role of Senior Manager in Sydney, the organization needs 4 managers; however, one manager is exiting. It will make one empty position which might hurt the decision making process. On the other hand, In Brisba…
Read
More

MKT2031 Issues In Small Business And Entrepreneurship
Download :
0 | Pages :
5

Course Code: MKT2031
University: University Of Northampton

MyAssignmentHelp.com is not sponsored or endorsed by this college or university

Country: United Kingdom

Answer:
Entrepreneurial ventures
Entrepreneurship is the capacity and willingness to develop, manage, and put in order operations of any business venture with an intention to make profits despite the risks that may be involved in such venture. Small and large businesses have a vital role to play in the overall performance of the economy. It is, therefore, necessary to consider the difference between entrepreneurial ventures, individual, and c…
Read
More
Tags:
Turkey Istanbul Management University of Employee Masters in Business Administration 

MN506 System Management
Download :
0 | Pages :
7

Course Code: MN506
University: Melbourne Institute Of Technology

MyAssignmentHelp.com is not sponsored or endorsed by this college or university

Country: Australia

Answer:
Introduction
An operating system (OS) is defined as a system software that is installed in the systems for the management of the hardware along with the other software resources. Every computer system and mobile device requires an operating system for functioning and execution of operations. There is a great use of mobile devices such as tablets and Smartphones that has increased. One of the widely used and implemented operating syste…
Read
More
Tags:
Australia Cheltenham Computer Science Litigation and Dispute Management University of New South Wales Information Technology 

Next

Need an essay written specifically to meet your requirements?

Choose skilled experts on your subject and get an original paper within your deadline

156 experts online

Your time is important. Let us write you an essay from scratch

Tips and Tricks from our Blog

PROJ6016 Employer Based Project

Free Samples PROJ6016 Employer Based Project .cms-body-content table{width:100%!important;} #subhidecontent{ position: relative; overflow-x: auto; width: 100%;} PROJ6016 Employer

Read More »

PPMP20009 Marking Rubric

Free Samples PPMP20009 Marking Rubric .cms-body-content table{width:100%!important;} #subhidecontent{ position: relative; overflow-x: auto; width: 100%;} PPMP20009 Marking Rubric

Read More »