C programming Flashcards

1
Q

Declaritive paradigm

A

describe the properties of what you want

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

imperative paradigm

A

describe how to construct what you
want

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

variable properties

A

type, storage classes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

type

A

determines meaning of variable stored

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

storage class

A

determines scope and lifetime of value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

2 storage classes

A

automatic
static

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

automatic

A

local to block {}
destroyed on exit from block

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

static

A

local to block or external to all blocks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
  • Storage class determined by:
A
  • declaration context
  • keywords auto and static
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q
  • Automatic storage class:
A

declared inside block
* use keyword auto (optional)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q
  • Static storage class:
A
  • declared inside block with keyword static
  • declared outside all blocks
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

variable scope

A

determines which parts of a program can
access the variable i.e. where variable name is valid

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

local scope

A

accessible in a function only

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

global scope

A

accessible from anywhere in program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

variable lifetime

A

how long variable has valid memory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

automatic variables

A

only while execution in function

17
Q

static variables

A

entire duration of program execution

18
Q

operator arity

A

how many operands
unary-1
binary -2
ternary -3