Computer Science 15900 Purdue Chapters 1-2 Terminology

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

1/15

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 8:49 PM on 8/28/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

16 Terms

1
New cards

4 parts of a computer

CPU, memory, connections, I/O devices

2
New cards

4 parts of a CPU

Arithmetic logic unit, registers, control unit, inter connections

3
New cards

CPU executies instructions using a process known as the

instructional cycle

4
New cards

is secondary or primary slower/ w more capacity

secondary

5
New cards

preprocessor

reads the source code and prepares it for the translators

6
New cards

special instructions for preprocessor

directives

7
New cards

a.out

to execute or run the program

8
New cards

only preprocessor directive is ________ which requests that a standard library (stdio.h) be included in order to permit use of standard I/O functions like printf

#include<stdio.h>

9
New cards

there will never be _____ ____ _______ in your programs

global variable declarations

10
New cards

the _____ section and the. _____ sections must never overlap

declaration and execution sections

11
New cards

there is only one function for our current programs, called

main

12
New cards

______- establishes data needs for current function

local definition section

13
New cards

_________- logic to accomplish the task of the function

statement (execution statement) section

14
New cards

{ }

indicate the beginning and end of the main function

15
New cards

must comment every ______. in your program

variable

16
New cards