PrepSure LogoHubPage 124/171
Normal Study1,706 questions

Computer Science

Scan verified MCQs with the answer highlighted, then open explanations when you want the reasoning.

Deep Study Mode
Showing 1231-1240 of 1706Use Deep Study when you want one-question focus.
1231

Read Mode

Larger Units Of Storage (Kb, Mb, Gb, Tb, Pb, Eb, Zb, Yb)

easy
Computer Science

1 Gigabyte is equal to ____?

A
1000 MB
B
1024 MB
C
100 MB
D
512 MB
Explanation and memory cue

1 Gigabyte (GB) is equal to 1024 Megabytes (MB) in the binary system commonly used in computer science. Therefore, option B is correct.

1232

Read Mode

Larger Units Of Storage (Kb, Mb, Gb, Tb, Pb, Eb, Zb, Yb)

easy
Computer Science

One kilobyte (KB) is equal to how many bytes?

A
100
B
1024
C
256
D
32
Explanation and memory cue

One kilobyte (KB) is defined as 1024 bytes in computer science, based on the binary system where 1 KB = 2^10 bytes. Therefore, option B (1024) is correct.

1233

Read Mode

Number Systems

medium
Computer Science

The accuracy of the floating-point numbers representable in two 16-bit words of a computer is approximately ____.

A
16 Digit
B
6 Digit
C
9 Digit
D
All of these
Explanation and memory cue

Two 16-bit words typically represent a 32-bit floating-point number, which provides about 6 to 9 decimal digits of precision. The closest standard approximation is about 6 digits of accuracy, making option B correct.

1234

Read Mode

Character Encoding

easy
Computer Science

How many bits does ASCII use?

A
8 bits
B
7 or 8 bits
C
6 bits
D
16 bits
Explanation and memory cue

ASCII originally uses 7 bits to represent characters, allowing for 128 unique symbols. However, it is often stored or transmitted using 8 bits, with the extra bit sometimes used for parity or extended characters, so both 7 or 8 bits are correct depending on context.

1235

Read Mode

Memory Basics

easy
Computer Science

A bit can be ____: 1 and 0, 1 or 0, 1 only, or Memory.

A
1 and 0
B
1 or 0
C
1 only
D
Memory
Explanation and memory cue

A bit is the basic unit of information in computing and can have one of two values: 0 or 1. The term '1 or 0' correctly reflects this binary nature, whereas '1 and 0' or '1 only' are incorrect. 'Memory' is unrelated to the definition of a bit.

1236

Read Mode

Character Encoding

easy
Computer Science

Unicode later expanded to a 21-bit code space. Approximately how many characters does this support?

A
65,536
B
524,288
C
1,114,112
D
2,097,152
Explanation and memory cue

Unicode expanded to a 21-bit code space means it can represent 2^21 code points. 2^21 equals 2,097,152, but Unicode only uses code points up to U+10FFFF, which is 1,114,112 code points, making option C correct.

1237

Read Mode

Number Systems

easy
Computer Science

A number system representing eight symbols is called ____.

A
Binary
B
Octal
C
Decimal
D
None of these
Explanation and memory cue

A number system with eight symbols (0 to 7) is called the Octal system. Binary uses two symbols, Decimal uses ten, so Octal is the correct answer.

1238

Read Mode

Larger Units Of Storage (Kb, Mb, Gb, Tb, Pb, Eb, Zb, Yb)

easy
Computer Science

Which of the following statements is valid? A) 1 MB = 1024 bytes B) 1 KB = 1024 bytes C) 1 KB = 8 bytes D) None of these

A
1 MB = 1024 bytes
B
1 KB = 1024 bytes
C
1 KB = 8 bytes
D
None of these
Explanation and memory cue

1 KB (kilobyte) is equal to 1024 bytes, which is the standard definition in computing. 1 MB (megabyte) equals 1024 KB, not 1024 bytes, and 1 KB is not equal to 8 bytes. Therefore, option B is the correct statement.

1239

Read Mode

Computer Fundamentals

easy
Computer Science

No computer can do anything without a ____:

A
Memory Chip
B
Program
C
Output
D
Processor
Explanation and memory cue

A computer requires a program to perform any task; the program provides instructions that the computer executes. While a memory chip stores data, it alone does not enable the computer to do anything without a program.

1240

Read Mode

Memory Basics

easy
Computer Science

In which of the following forms is data stored in a computer?

A
Decimal
B
Binary
C
Hexadecimal
D
Octal
Explanation and memory cue

Computers store data in binary form because they operate using two states (0 and 1), which correspond to electrical off and on states. Decimal, hexadecimal, and octal are number systems used for human readability or programming convenience, but the underlying storage is binary.