0

Computer Basics

Description: Check your computer ability.
Number of Questions: 15
Created by:
Tags: Computer Fundamentals Computer Knowledge Computer Science & Information Technology - CS
Attempted 0/15 Correct 0 Score 0

Arrange the following characters in ascending order, according to their ASCII value. z, Z, a, 0, A.

  1. 0, a, z, A, Z

  2. a, z, A, Z, 0

  3. A, Z, a, z, 0

  4. 0, A, Z, a, z

  5. A, Z, 0, a, z


Correct Option: D
Explanation:

This is the correct ascending order of the given characters.

Which of the following is not a number system?

  1. Binary number system

  2. Hexadecimal number system

  3. Octal number system

  4. Decimal number system

  5. Numeric number system


Correct Option: E
Explanation:

This is not a number system.

Which of the following characters has the greatest ASCII value?

  1. a

  2. A

  3. 0

  4. 9

  5. Z


Correct Option: A
Explanation:

The ASCII value of a = 97.

Convert 192 into Hexadecimal number system.

  1. 11000000

  2. 00000011

  3. 03

  4. C0

  5. B0


Correct Option: D
Explanation:

192 can be written as 11000000 in binary form. 11000000 is divided into two strings with 4 bit size. So, it is 1100 and 0000, i.e,C0 in hexadecimal form..

What is MIDI?

  1. It is a format of video file.

  2. It is a format of audio file.

  3. It is a format of image file.

  4. It is a format of web page.

  5. It is a format of text file.


Correct Option: B
Explanation:

MIDI is a format of audio file, which has an extension, that is .mid.

Convert F0 into Decimal number system.

  1. 240

  2. 16

  3. 15

  4. 0

  5. None of these


Correct Option: A
Explanation:

F0 means 11110000, i.e 128+64+32+16+0+0+0+0=240.

What is the Octal number system of 10?

  1. 00001010

  2. A

  3. 012

  4. 210

  5. 10100000


Correct Option: C
Explanation:

This is the correct answer. To convert into Octal number system, the Binary number will split into three parts having 3 bits. So, it would be 000 , 001 and 010. So, it would be 012.

Convert 130 into Binary number system.

  1. 01000001

  2. 01000010

  3. 10000010

  4. 01000000

  5. 01000011


Correct Option: C
Explanation:

128 + 0 + 0 + 0 + 0 + 0 + 2 + 0 = 130. So, this answer is correct.

Convert F0 into Binary number system.

  1. 00001111

  2. 10000000

  3. 11000000

  4. 11100000

  5. 11110000


Correct Option: E
Explanation:

F has binary representation 1111 and 0 has 0000. So, this is the correct answer.

Which of the following characters has the smallest ASCII value?

  1. a

  2. z

  3. A

  4. 9

  5. Z


Correct Option: D
Explanation:

The ASCII value of 9 = 57.

Convert the octal number 200 into Hexadecimal number system.

  1. 10000000

  2. 80

  3. D0

  4. 00000001

  5. 04


Correct Option: B
Explanation:

200 octal number means 010 , 000 and 000,i.e. 010000000. So, its hexadecimal number will be 1000 , 0000,i.e. 80.

Which of the following characters has 0 ASCII value?

  1. Space

  2. 0

  3. Null

  4. @

  5. Esc


Correct Option: C
Explanation:

The ASCII value of Null is 0.

What would be the Decimal number system of octal number 030?

  1. 16

  2. 8

  3. 24

  4. 30

  5. 42


Correct Option: C
Explanation:

This is the correct answer because 030 can be written like 000, 011 and 000. So, it is 000011000, i.e. 24.

Which of the following number systems has a base 8?

  1. Hexadecimal number system

  2. Octal number system

  3. Binary number system

  4. Decimal number system

  5. None of these


Correct Option: B
Explanation:

Octal number system's base is 8.

What is the base of Binary number system?

  1. 2

  2. 8

  3. 16

  4. 10

  5. 3


Correct Option: A
Explanation:

2 is the base of Binary number system.

- Hide questions