Arrays Flashcards

1
Q

How many inputs can a function have?

A

0 or more!

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

How many outputs can a function have? :)

A

One

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

What is STRCMP?

A

String compare—used rather than == to compare strings.

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

What does strcmp do?

A

It compares strings in place of == for other variables.

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

What is assembly language?

A

Assembly language is the human-readable symbolic representation of machine instructions.

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

What is assembly code?

A

Assembly code is the actual source code written in

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

Cryptography

A

The art of scrambling information so you can send a message securely through any medium.

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

What is a prototype?

A

Is is a function declaration before int main including the function header and semicolon

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

What is an array?

A

A group of variables accessed via an index

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

What is a struct and how is it used?

A

Self defined data type:

Typedef struct {

} name

Name[index].name =…;

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