Programing in C Flashcards

1
Q

Source-Preprocessor-___-Linkers-Execute

A

Compiler

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

___-Preprocessor-Compiler-Linkers-Execute

A

Source Code

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

Source Code-___-Compiler-Linkers-Execute

A

Preprocessor

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

Source Code -Preprocessor-Compiler-___-Execute

A

Linker

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

Source Code-Preprocessor-Compiler-Linkers-___

A

Execute

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

This provide supplementary information about the code or line statement/s

A

Comments

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

This provide instructions to the preprocessor

A

Preprocessor Directives

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

What is this called (//) and is within the line

A

Single-line comment

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

Can be at the end or embedded in a statement

A

Comments

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

This has an opening and closing, it has this (/* */)

A

Multi-line comment

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

This represent multiple characters enclosed with double quotation marks (“ “)

A

String Literals

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

This is collection of useful functions and symbols that mey be accessed by the program

A

Library

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

This always begin with #

A

Preprocessor Directives

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

This directive give a program access to library

A

include Directives

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

This always ends with (.h)

A

Library

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

Collection of useful functions and symbols that may be accessed by a program

A

Library

17
Q

<stdio.h>
</stdio.h>

A

Input and output

18
Q

This is case-sensitive

A

Identifiers

19
Q

Predefined indentifiers reserve for specific purpose

A

Keywords

20
Q

define ASCII

A

American standard code for information interchange

21
Q

These are backslash character constans that helps manage the output of the program

A

Escape sequence

22
Q

Give the two types of block

A

Function Block and Statement Block

23
Q

Numeric literal that represent a number

A

Integer Literal

24
Q

This use to show functions or exponents to the output

A

Float Literal

25
Q

Mapping of characters to the identifying code value

A

Character Set

26
Q

This doesn’t end with semicolon (;)

A

Compound Statement

27
Q

This ends with a semicolon (;)

A

Expression

28
Q

Teels the compiler the names of memory cells in a program. This is the existence of variable.

A

Declaration Statement

29
Q

This allow execution of statement/s based upon decisions

A

Control Statement

30
Q

This an override

A

Statement Block

31
Q

Series of variable, operations, method or function calls

A

Expression