M4 Flashcards

1
Q

is a group of elements which are of

different type

A

structure

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

. Each of the elements is identified by its

own identifier and they are called

A

member

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

can be thought of as an object without any

member functions.

A

structure

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

can hold values just like any other

variable can

A

structure variable

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

is a collection of smaller values called

X

A

structure value

member values

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

X keyword defines a structure type followed by an

identifier (name of the structure).

A

struct

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

can be passed to a function in similar

way as normal argument

A

structure variable

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

These members are normal C++ variables. We can create a structure with variables of different data types in C++.

A

data members

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

These members are normal C++ functions. Along with variables, we can also include functions inside a structure declaration.

A

member functions

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