Fco 5

Download as pdf or txt
Download as pdf or txt
You are on page 1of 5

Computer Fundamentals (FCO)

Subject 01: Introduction to computers

PLAN 2024-2025

Exercises

1.1 – Theoretical questions ............................................................................................ 2


1.2 – Basic data representation systems ......................................................................... 2

1
FCO - Subject 1: Introduction to computers

1.1 – Theoretical questions

1.1.1. What technological advance does mark the beginning of the computer's third generation?

A) The electronic switch


B) The microprocessor
C) The transistor
D) The integrated circuits
E) None of the previous answers

ANSWER: D

1.1.2. Where do programs are stored in a computer based on Von Neumann's architecture?

A) In massive storage devices (Hard drive, DVDs, CDs, etcetera)


B) Input/Output devices
C) Inside the processor
D) In the ALU
E) None of the previous answers

ANSWER: E

1.2 – Basic data representation systems

1.2.1. What is the decimal value of the string 010000010011,0101BCD

ANSWER:

010000010011,0101BCD = 413,5 10

1.2.2. Write the number 503,610 on its corresponding BCD representation.

ANSWER:

503,610= 010100000011,0110 BCD

1.2.3. Write the binary value 101,12 in hexadecimal

ANSWER:

101,12 = 5,8 16

2
FCO - Subject 1: Introduction to computers

1.2.4. Convert the following binary string 11,012 into octal form.

ANSWER:

11,012= 3,2 8

1.2.5. Convert the following octal number 7118 into hex format.
ANSWER:

7118= 111001001 2 = 1C9 16

1.2.6. Convert the following octal number 101,18 into hex format.

ANSWER:

101,18 = 001000001,001 2 = 41,2 16

1.2.7. Convert the following hexadecimel number 54F7,1116 into octal format.
ANSWER:

54F7,1116= 0101010011110111,00010001 2 = 52367,042 8

1.2.8. What is the decimal value of the string 110011101,12 ?

ANSWER:

110011101,12= 413,5 10

1.2.9. Convert the following decimal number 635,410 into octal format.

ANSWER:

635,410 = 1001111011,0110 2 = 1173,3 8

3
FCO - Subject 1: Introduction to computers

1.2.10. What is the decimal value of the string 19D,816?

ANSWER:

19D,816= 110011101,1 2 = 413,5 10

1.2.11. Convert the following decimal number 635,410 into binary format.

ANSWER:

635,410 = 1001111011,0110 2

Period= 0110

1.2.12. Convert the following decimal number 2165310 into octal format.

ANSWER:

2165310= 101010010010101 2 = 52225 8

1.2.13. Convert the following decimal number 90060910 into hex format.
ANSWER:

90060910= 11011011111000000001 2 = DBE01 16

4
FCO - Subject 1: Introduction to computers

1.2.14. What is the octal format of the string 00111000BCD?

ANSWER:
First step: You MUST obtain the decimal value (There is no other way!):
Be careful each digit is a binary digit (You cannot expand it)

00111000BCD = 38 10 = 100110 2 = 46 8

These steps are similar when it is necessary to obtain the hex format of a string in bcd format.
The difference is in the third step.

You might also like