Computing Flashcards

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/54

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 2:12 PM on 4/17/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

55 Terms

1
New cards

What is the definition of an information system?

A complete interconnected environment that turns raw data into useful information.

2
New cards

The five parts of an information system are people, hardware, software, _____, and data.

procedures

3
New cards

In planning an information system, what is the primary objective of analyzing the 'people' component?

To determine the requirements and what users need to accomplish.

4
New cards

What physical components are categorized as 'hardware' in an information system?

Circuit boards, silicon chips, transistors, and input/output devices.

5
New cards

What is the primary function of 'software' within a computer system?

To provide the programs and instructions that tell the hardware what to do.

6
New cards

In an information system, what are 'procedures'?

The specific steps people follow to interact with and run the software.

7
New cards

How does 'data' relate to computer programs in an information system?

Data is the raw material that computer programs operate upon, store, and recall.

8
New cards

What is the Basic Input Output System (BIOS)?

The most basic level of software that helps the computer start up and tests hardware.

9
New cards

Why is BIOS software stored on a read-only chip on the motherboard?

To prevent it from being accidentally changed or corrupted.

10
New cards

What is the role of the Operating System (OS) regarding computer activities?

It manages all computer activities and hardware communication after startup.

11
New cards

Which software type provides the interface humans use to communicate commands to the computer?

The Operating System (OS).

12
New cards

How does an Operating System manage files?

By controlling and managing the file storage system.

13
New cards

What is 'Utility' software?

Programs that perform useful services like optimizing storage, backing up files, or ensuring security.

14
New cards

Software designed for the interest of a human user, such as for productivity or entertainment, is called _____ software.

application

15
New cards

What is the specific purpose of 'Productivity' software?

To help humans perform business or personal enrichment tasks.

16
New cards

Microsoft Office is considered a productivity _____.

suite

17
New cards

What are the four steps of the Information Processing Cycle?

Input, Processing, Output, and Storage.

18
New cards

In the Information Processing Cycle, what is the function of 'Input'?

To help humans put data into the computer.

19
New cards

Which step of the Information Processing Cycle involves moving and calculating data using the motherboard and processor?

Processing

20
New cards

What is the purpose of 'Output' components in the processing cycle?

To provide the results of data processing to human users.

21
New cards

In the context of computer components, what is 'Storage'?

Electronic components that hold software and data until it is needed.

22
New cards

What is a 'bit' in computer science?

The smallest unit of data, represented as a single binary digit (0 or 1).

23
New cards

A grouping of 8 bits into a single unit is called a _____.

byte

24
New cards

In binary representation, what physical state does the digit 1 correspond to?

An 'ON' signal where current flows.

25
New cards

In binary representation, what physical state does the digit 0 correspond to?

An 'OFF' signal where no current flows.

26
New cards

The binary number system is a base-2 system where place values are based on _____.

powers of 2

27
New cards

How many bytes are contained in 1 KB?

1,024 bytes

28
New cards

What is the decimal equivalent of the binary byte 11111111_{2}?

255

29
New cards

What is the decimal value of the binary number 0101_{2}?

5

30
New cards

What is the decimal value of the binary number 1010_{2}?

10

31
New cards

What is the decimal value of the binary number 1111_{2}?

15

32
New cards

What is the decimal value of the binary number 10100_{2}?

20

33
New cards

What is the decimal value of the binary number 11001_{2}?

25

34
New cards

What does the acronym ASCII stand for?

American Standard Code for Information Interchange

35
New cards

How many unique characters does the standard ASCII encode?

128 characters

36
New cards

How many bits per character does standard ASCII use for its numerical mapping?

7 bits

37
New cards

What range of numerical values does ASCII assign to letters, numbers, and punctuation?

0 to 127

38
New cards

In ASCII, what is the decimal value for the uppercase character 'A'?

65

39
New cards

In ASCII, what is the decimal value for the lowercase character 'a'?

97

40
New cards

In ASCII, what is the decimal value for the digit '0'?

48

41
New cards

In ASCII, what decimal value represents a space (SPC)?

32

42
New cards

How many bits are required to store the 5-character word 'HELLO' in computer memory using standard byte storage?

40 bits

43
New cards

Which Python function is used to retrieve the ASCII value of a character?

ord()

44
New cards

ASCII plays an integral role in networking protocols such as HTTP and _____.

FTP

45
New cards

What is Boolean logic?

A mathematical system where variables have only two possible values: True (1) or False (0).

46
New cards

Who is the English mathematician credited with inventing Boolean algebra?

George Boole

47
New cards

What are the three basic Boolean logic operators?

AND, OR, and NOT.

48
New cards

Under what condition does an AND gate produce an output of 1?

Only when BOTH inputs are 1.

49
New cards

Under what condition does an OR gate produce an output of 1?

When at least ONE input is 1

50
New cards

What is the function of a NOT gate?

It inverts the input, flipping 0 to 1 and 1 to 0

51
New cards

What are logic gates in a physical sense?

Physical circuits that implement Boolean operations.

52
New cards

Combined gates like NAND, NOR, and _____ are created by combining basic Boolean operations.

XOR

53
New cards

If A = 1 and B = 0, what is the result of the expression A AND B?

0 (False)

54
New cards

If A = 1 and B = 0, what is the result of the expression A OR B?

1 (True)

55
New cards

Computer systems are often described as layers of hardware, OS, machine code, and applications to provide _____.

abstraction